diff --git a/.github/workflows/build-map-renderer.yml b/.github/workflows/build-map-renderer.yml index d49537dba1..c1790feadb 100644 --- a/.github/workflows/build-map-renderer.yml +++ b/.github/workflows/build-map-renderer.yml @@ -1,7 +1,12 @@ name: Build & Test Map Renderer on: - workflow_dispatch: + push: + branches: [ master, staging, trying ] + merge_group: + pull_request: + types: [ opened, reopened, synchronize, ready_for_review ] + branches: [ master ] jobs: build: diff --git a/.github/workflows/build-test-debug.yml b/.github/workflows/build-test-debug.yml index 594899ec6d..bb0624e3ba 100644 --- a/.github/workflows/build-test-debug.yml +++ b/.github/workflows/build-test-debug.yml @@ -1,7 +1,12 @@ name: Build & Test Debug on: - workflow_dispatch: + push: + branches: [ master, staging, trying ] + merge_group: + pull_request: + types: [ opened, reopened, synchronize, ready_for_review ] + branches: [ master ] jobs: build: diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 69318fd977..58506eb11c 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -5,9 +5,10 @@ on: types: [closed] env: - GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} + BOT_TOKEN: ${{ secrets.BOT_TOKEN }} CHANGELOG_DIR: Resources/Changelog/ChangelogLPP.yml PR_NUMBER: ${{ github.event.number }} + CHANGELOG_DISCORD_WEBHOOK: ${{ secrets.CHANGELOG_DISCORD_WEBHOOK }} jobs: changelog: diff --git a/.github/workflows/close-master-pr.yml b/.github/workflows/close-master-pr.yml index c358f37834..63a618cfdf 100644 --- a/.github/workflows/close-master-pr.yml +++ b/.github/workflows/close-master-pr.yml @@ -1,8 +1,7 @@ name: Close PRs on master on: - pull_request_target: - types: [ opened, ready_for_review ] + workflow_dispatch: jobs: run: @@ -12,8 +11,8 @@ jobs: steps: - uses: superbrothers/close-pull-request@v3 with: - token: ${{ secrets.BOT_TOKEN }} - comment: "Благодарим вас за вклад в наш репозиторий. К сожалению, похоже, что вы отправили ПР из master ветки. Мы рекомендуем вам следовать [документации](https://docs.spacestation14.com/en/general-development/setup/git-for-the-ss14-developer.html). \n\n Вы можете перенести свою текущую работу из основной ветки в другую ветку с помощью [создав новый](https://git-scm.com/docs/git-branch) и [очистив](https://git-scm.com/docs/git-reset) master ветку." + github_token: ${{ secrets.BOT_TOKEN }} + comment: "Благодарим вас за вклад в наш репозиторий. К сожалению, похоже, что вы отправили ПР из master ветки. Мы рекомендуем вам следовать [документации](https://docs.spacestation14.com/en/general-development/setup/git-for-the-ss14-developer.html). \n\n Вы можете перенести свою текущую работу из основной ветки в другую ветку с помощью [создания новой](https://git-scm.com/docs/git-branch) и [очистки](https://git-scm.com/docs/git-reset) master ветки." # If you prefer to just comment on the pr and not close it, uncomment the bellow and comment the above diff --git a/.github/workflows/conflict-labeler.yml b/.github/workflows/conflict-labeler.yml index 674c454f46..7e79617b1c 100644 --- a/.github/workflows/conflict-labeler.yml +++ b/.github/workflows/conflict-labeler.yml @@ -8,7 +8,7 @@ on: jobs: Label: - if: github.actor != 'PJBot' && github.actor != 'DeltaV-Bot' && github.actor != 'SimpleStation14' != 'Lost-Paradise-Bot' + if: github.actor != 'PJBot' && github.actor != 'DeltaV-Bot' && github.actor != 'SimpleStation14' && github.actor != 'Lost-Paradise-Bot' runs-on: ubuntu-latest steps: - name: Check for Merge Conflicts diff --git a/.github/workflows/publish-lostparadise.yml b/.github/workflows/publish-lostparadise.yml index f40f369465..6dfc9df63f 100644 --- a/.github/workflows/publish-lostparadise.yml +++ b/.github/workflows/publish-lostparadise.yml @@ -18,15 +18,14 @@ jobs: - name: Download parts run: | git clone ${{ secrets.HUB_SEC_TOKEN }} - mv Secrets/_PrivateResources/* Resources/ + mv Secrets/_PrivateResources/_Private Resources/Prototypes/ + mv Secrets/_PrivateResources/PERSONAL Resources/Textures/ mv Secrets/_PrivateShared Content.Shared/_PrivateShared mv Secrets/_PrivateServer Content.Server/_PrivateServer mv Secrets/_PrivateClient Content.Client/_PrivateClient - name: Setup .NET Core uses: actions/setup-dotnet@v4.0.0 - with: - dotnet-version: 8.0.x - name: Get Engine Tag run: | @@ -40,29 +39,29 @@ jobs: run: dotnet build Content.Packaging --configuration Release --no-restore /m - name: Package server - run: dotnet run --project Content.Packaging server --platform linux-x64 --hybrid-acz + run: dotnet run --project Content.Packaging server --platform linux-x64 - - name: Shuffle files around - run: | - mkdir "release/${{ github.sha }}" - mv release/*.zip "release/${{ github.sha }}" + - name: Package client + run: dotnet run --project Content.Packaging client --no-wipe-release - - name: Upload files to centcomm - uses: appleboy/scp-action@master + - name: Upload build artifact + id: artifact-upload-step + uses: actions/upload-artifact@v4 with: - host: ${{ secrets.HOST }} - username: ${{ secrets.USERNAME }} - key: ${{ secrets.SSH }} - port: ${{ secrets.PORT }} - source: "release/${{ github.sha }}" - target: "/var/www/wiki/builds_dir/builds/" - strip_components: 1 + name: build + path: release/*.zip + compression-level: 0 + retention-days: 0 + + - name: Publish version + run: Tools/publish_github_artifact.py + env: + BOT_TOKEN: ${{ secrets.BOT_TOKEN }} + PUBLISH_TOKEN: ${{ secrets.PUBLISH_TOKEN }} + ARTIFACT_ID: ${{ steps.artifact-upload-step.outputs.artifact-id }} + GITHUB_REPOSITORY: ${{ vars.GITHUB_REPOSITORY }} - - name: Update manifest JSON - uses: appleboy/ssh-action@master + - uses: geekyeggo/delete-artifact@v5 + if: always() with: - host: ${{ secrets.HOST }} - username: ${{ secrets.USERNAME }} - key: ${{ secrets.SSH }} - port: ${{ secrets.PORT }} - script: pwsh /var/www/wiki/push.ps1 ${{ github.sha }} + name: build diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c387b83559..e369a05dca 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -39,33 +39,22 @@ jobs: - name: Package client run: dotnet run --project Content.Packaging client --no-wipe-release - - name: Update Build Info - run: Tools/gen_build_info.py - - - name: Shuffle files around - run: | - mkdir "release/${{ github.sha }}" - mv release/*.zip "release/${{ github.sha }}" - - - name: Upload files to centcomm - uses: appleboy/scp-action@master + - name: Upload build artifact + id: artifact-upload-step + uses: actions/upload-artifact@v4 with: - host: ${{ secrets.PUBLISH_HOST }} - username: ${{ secrets.PUBLISH_USER }} - key: ${{ secrets.PUBLISH_KEY }} - port: ${{ secrets.PUBLISH_PORT }} - source: "release/${{ github.sha }}" - target: "/var/www/builds.delta-v.org/delta-v/builds/" - strip_components: 1 + name: build + path: release/*.zip + compression-level: 0 + retention-days: 0 - - name: Update manifest JSON - uses: appleboy/ssh-action@master - with: - host: ${{ secrets.PUBLISH_HOST }} - username: ${{ secrets.PUBLISH_USER }} - key: ${{ secrets.PUBLISH_KEY }} - port: ${{ secrets.PUBLISH_PORT }} - script: /home/deltav/publish/push.ps1 ${{ github.sha }} + - name: Publish version + run: Tools/publish_github_artifact.py + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + PUBLISH_TOKEN: ${{ secrets.PUBLISH_TOKEN }} + ARTIFACT_ID: ${{ steps.artifact-upload-step.outputs.artifact-id }} + GITHUB_REPOSITORY: ${{ vars.GITHUB_REPOSITORY }} - name: Publish changelog (Discord) run: Tools/actions_changelogs_since_last_run.py @@ -77,3 +66,8 @@ jobs: run: Tools/actions_changelog_rss.py env: CHANGELOG_RSS_KEY: ${{ secrets.CHANGELOG_RSS_KEY }} + + - uses: geekyeggo/delete-artifact@v5 + if: always() + with: + name: build diff --git a/.github/workflows/rsi-diff.yml b/.github/workflows/rsi-diff.yml index c618d86bb1..2b65b3b439 100644 --- a/.github/workflows/rsi-diff.yml +++ b/.github/workflows/rsi-diff.yml @@ -1,7 +1,9 @@ name: Diff RSIs on: - workflow_dispatch: + pull_request_target: + paths: + - '**.rsi/**.png' jobs: diff: @@ -42,6 +44,7 @@ jobs: uses: peter-evans/create-or-update-comment@v1 with: issue-number: ${{ github.event.number }} + token: ${{ secrets.BOT_TOKEN }} body: | ${{ steps.diff.outputs.summary-details }} @@ -50,6 +53,7 @@ jobs: uses: peter-evans/create-or-update-comment@v1 with: comment-id: ${{ steps.fc.outputs.comment-id }} + token: ${{ secrets.BOT_TOKEN }} edit-mode: replace body: | ${{ steps.diff.outputs.summary-details }} @@ -59,6 +63,7 @@ jobs: uses: peter-evans/create-or-update-comment@v1 with: comment-id: ${{ steps.fc.outputs.comment-id }} + token: ${{ secrets.BOT_TOKEN }} edit-mode: append body: | Edit: diff updated after ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/test-packaging.yml b/.github/workflows/test-packaging.yml index 1700ef1ace..5a560391ec 100644 --- a/.github/workflows/test-packaging.yml +++ b/.github/workflows/test-packaging.yml @@ -1,51 +1,66 @@ name: Test Packaging on: - workflow_dispatch: + push: + branches: [ master, staging, trying ] + paths: + - '**.cs' + - '**.csproj' + - '**.sln' + - '**.git**' + - '**.yml' + # no docs on which one of these is supposed to work, so + # why not just do both + - 'RobustToolbox' + - 'RobustToolbox/**' + merge_group: + pull_request: + types: [ opened, reopened, synchronize, ready_for_review ] + branches: [ master ] + paths: + - '**.cs' + - '**.csproj' + - '**.sln' + - '**.git**' + - '**.yml' + - 'RobustToolbox' + - 'RobustToolbox/**' jobs: build: name: Test Packaging - if: github.actor != 'PJBot' && github.event.pull_request.draft == false && github.actor != 'DeltaV-Bot' && github.actor != 'SimpleStation14' + if: github.actor != 'PJBot' && github.actor != 'PJBot' && github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - name: Checkout Master - uses: actions/checkout@v3.6.0 + - name: Checkout Master + uses: actions/checkout@v3.6.0 - - name: Setup Submodule - run: | - git submodule update --init --recursive + - name: Setup Submodule + run: | + git submodule update --init --recursive - - name: Pull engine updates - uses: space-wizards/submodule-dependency@v0.1.5 + - name: Pull engine updates + uses: space-wizards/submodule-dependency@v0.1.5 - - name: Update Engine Submodules - run: | - cd RobustToolbox/ - git submodule update --init --recursive + - name: Update Engine Submodules + run: | + cd RobustToolbox/ + git submodule update --init --recursive - - name: Setup .NET Core - uses: actions/setup-dotnet@v3.2.0 - with: - dotnet-version: 8.0.100 + - name: Setup .NET Core + uses: actions/setup-dotnet@v3.2.0 + with: + dotnet-version: 8.0.100 - - name: Install dependencies - run: dotnet restore + - name: Install dependencies + run: dotnet restore - - name: Build Packaging - run: dotnet build Content.Packaging --configuration Release --no-restore /m + - name: Build Packaging + run: dotnet build Content.Packaging --configuration Release --no-restore /m - - name: Package server - run: dotnet run --project Content.Packaging server --platform win-x64 --platform linux-x64 --platform osx-x64 --platform linux-arm64 + - name: Package server + run: dotnet run --project Content.Packaging server --platform win-x64 --platform linux-x64 --platform osx-x64 --platform linux-arm64 - - name: Package client - run: dotnet run --project Content.Packaging client --no-wipe-release - - - name: Update Build Info - run: Tools/gen_build_info.py - - - name: Shuffle files around - run: | - mkdir "release/${{ github.sha }}" - mv release/*.zip "release/${{ github.sha }}" + - name: Package client + run: dotnet run --project Content.Packaging client --no-wipe-release diff --git a/.github/workflows/validate-rgas.yml b/.github/workflows/validate-rgas.yml index 5ba499f158..72ce39ceff 100644 --- a/.github/workflows/validate-rgas.yml +++ b/.github/workflows/validate-rgas.yml @@ -1,6 +1,10 @@ name: RGA schema validator on: - workflow_dispatch: + push: + branches: [ master, staging, trying ] + merge_group: + pull_request: + types: [ opened, reopened, synchronize, ready_for_review ] jobs: yaml-schema-validation: diff --git a/.github/workflows/validate-rsis.yml b/.github/workflows/validate-rsis.yml index f3d76295a8..19c19f439a 100644 --- a/.github/workflows/validate-rsis.yml +++ b/.github/workflows/validate-rsis.yml @@ -1,7 +1,12 @@ name: RSI Validator on: - workflow_dispatch: + push: + branches: [ staging, trying ] + merge_group: + pull_request: + paths: + - '**.rsi/**' jobs: validate_rsis: diff --git a/.github/workflows/validate_mapfiles.yml b/.github/workflows/validate_mapfiles.yml index d2ab891f5e..190ee97d8f 100644 --- a/.github/workflows/validate_mapfiles.yml +++ b/.github/workflows/validate_mapfiles.yml @@ -1,6 +1,10 @@ name: Map file schema validator on: - workflow_dispatch: + push: + branches: [ master, staging, trying ] + merge_group: + pull_request: + types: [ opened, reopened, synchronize, ready_for_review ] jobs: yaml-schema-validation: diff --git a/.github/workflows/yaml-linter.yml b/.github/workflows/yaml-linter.yml index b3857814dd..8660ccc040 100644 --- a/.github/workflows/yaml-linter.yml +++ b/.github/workflows/yaml-linter.yml @@ -1,7 +1,11 @@ name: YAML Linter on: - workflow_dispatch: + push: + branches: [ master, staging, trying ] + merge_group: + pull_request: + types: [ opened, reopened, synchronize, ready_for_review ] jobs: build: diff --git a/.gitignore b/.gitignore index bd4ae002c3..08daddd47a 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,12 @@ # User-specific files (MonoDevelop/Xamarin Studio) *.userprefs +# Secret +Secrets +_Private* +Resources/Prototypes/_Private +Resources/Textures/PERSONAL + # Build results [Dd]ebug/ [Dd]ebugPublic/ @@ -43,7 +49,7 @@ dlldata.c # DNX project.lock.json project.fragment.lock.json -# artifacts/ +artifacts/ *_i.c *_p.c @@ -307,5 +313,5 @@ Resources/MapImages # Direnv stuff .direnv/ -# Changelog package lock -package-lock.json +# locale fix +!/Resources/Locale/* diff --git a/Content.Benchmarks/Content.Benchmarks.csproj b/Content.Benchmarks/Content.Benchmarks.csproj index c3b60a1c69..28e83881d4 100644 --- a/Content.Benchmarks/Content.Benchmarks.csproj +++ b/Content.Benchmarks/Content.Benchmarks.csproj @@ -1,4 +1,4 @@ - + @@ -10,6 +10,7 @@ true 12 + diff --git a/Content.Client/.filenesting.json b/Content.Client/.filenesting.json new file mode 100644 index 0000000000..0b71966277 --- /dev/null +++ b/Content.Client/.filenesting.json @@ -0,0 +1,3 @@ +{ + "help":"https://go.microsoft.com/fwlink/?linkid=866610" +} \ No newline at end of file diff --git a/Content.Client/Content.Client.csproj b/Content.Client/Content.Client.csproj index c1958acba7..0a629a4d1d 100644 --- a/Content.Client/Content.Client.csproj +++ b/Content.Client/Content.Client.csproj @@ -12,6 +12,7 @@ Debug;Release;Tools;DebugOpt AnyCPU + diff --git a/Content.Client/Corvax/TTS/TTSSystem.cs b/Content.Client/Corvax/TTS/TTSSystem.cs index bff5000674..d8bad0acb6 100644 --- a/Content.Client/Corvax/TTS/TTSSystem.cs +++ b/Content.Client/Corvax/TTS/TTSSystem.cs @@ -75,6 +75,12 @@ private void OnTtsVolumeChanged(float volume) private void OnPlayTTS(PlayTTSEvent ev) { + var canPlay = false; +#if LPP_TTS_play //это предназначено для того, чтобы в случае отсутствия ссылки на ТТС, игра не пыталась выполнить обработку звука + canPlay = true; +#endif + if (!canPlay) + return; _sawmill.Debug($"Play TTS audio {ev.Data.Length} bytes from {ev.SourceUid} entity"); var volume = AdjustVolume(ev.IsWhisper); diff --git a/Content.Client/Entry/EntryPoint.cs b/Content.Client/Entry/EntryPoint.cs index 7f921fc1a6..22d7b986f7 100644 --- a/Content.Client/Entry/EntryPoint.cs +++ b/Content.Client/Entry/EntryPoint.cs @@ -37,6 +37,9 @@ using Robust.Shared.ContentPack; using Robust.Shared.Prototypes; using Robust.Shared.Replays; +#if LPP_Sponsors // _LostParadise-Sponsors +using Content.Client._LostParadise.Sponsors; +#endif namespace Content.Client.Entry { @@ -74,6 +77,9 @@ public sealed class EntryPoint : GameClient [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly JoinQueueManager _joinQueue = default!; [Dependency] private readonly DiscordAuthManager _discordAuth = default!; +#if LPP_Sponsors // _LostParadise-Sponsors + [Dependency] private readonly SponsorsManager _sponsorsManager = default!; +#endif public override void Init() { @@ -165,6 +171,11 @@ public override void PostInit() _voteManager.Initialize(); _userInterfaceManager.SetDefaultTheme("SS14DefaultTheme"); _userInterfaceManager.SetActiveTheme(_configManager.GetCVar(CVars.InterfaceTheme)); + +#if LPP_Sponsors + _sponsorsManager.Initialize(); // _LostParadise-Sponsors +#endif + _documentParsingManager.Initialize(); _joinQueue.Initialize(); _discordAuth.Initialize(); diff --git a/Content.Client/Humanoid/MarkingPicker.xaml.cs b/Content.Client/Humanoid/MarkingPicker.xaml.cs index 0e0b9dd384..c3862ef847 100644 --- a/Content.Client/Humanoid/MarkingPicker.xaml.cs +++ b/Content.Client/Humanoid/MarkingPicker.xaml.cs @@ -10,6 +10,9 @@ using Robust.Shared.Prototypes; using Robust.Shared.Utility; using static Robust.Client.UserInterface.Controls.BoxContainer; +#if LPP_Sponsors // _LostParadise-Sponsors +using Content.Client._LostParadise.Sponsors; +#endif namespace Content.Client.Humanoid; @@ -18,6 +21,9 @@ public sealed partial class MarkingPicker : Control { [Dependency] private readonly MarkingManager _markingManager = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; +#if LPP_Sponsors // _LostParadise-Sponsors + [Dependency] private readonly SponsorsManager _sponsorsManager = default!; +#endif public Action? OnMarkingAdded; public Action? OnMarkingRemoved; @@ -224,6 +230,19 @@ public void Populate(string filter) var item = CMarkingsUnused.AddItem($"{GetMarkingName(marking)}", marking.Sprites[0].Frame0()); item.Metadata = marking; + +#if LPP_Sponsors // _LostParadise-Sponsors + if (marking.SponsorOnly) + { + item.Disabled = true; + if (_sponsorsManager.TryGetInfo(out var sponsor)) + { + var tier = sponsor.Tier > 5 ? 5 : sponsor.Tier; //если уровень выше максимального, ставится максимальный + var marks = Loc.GetString($"sponsor-markings-tier-{tier}").Split(";", StringSplitOptions.RemoveEmptyEntries); + item.Disabled = !(sponsor.AllowedMarkings.Contains(marking.ID) || sponsor.AllowedMarkings.Contains("ALL") || marks.Contains(marking.ID)); + } + } +#endif } CMarkingPoints.Visible = _currentMarkings.PointsLeft(_selectedMarkingCategory) != -1; diff --git a/Content.Client/Humanoid/SingleMarkingPicker.xaml.cs b/Content.Client/Humanoid/SingleMarkingPicker.xaml.cs index be3130a58b..a26e06e84f 100644 --- a/Content.Client/Humanoid/SingleMarkingPicker.xaml.cs +++ b/Content.Client/Humanoid/SingleMarkingPicker.xaml.cs @@ -4,6 +4,9 @@ using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; using Robust.Client.Utility; +#if LPP_Sponsors // _LostParadise-Sponsors +using Content.Client._LostParadise.Sponsors; +#endif namespace Content.Client.Humanoid; @@ -11,6 +14,9 @@ namespace Content.Client.Humanoid; public sealed partial class SingleMarkingPicker : BoxContainer { [Dependency] private readonly MarkingManager _markingManager = default!; +#if LPP_Sponsors // _LostParadise-Sponsors + [Dependency] private readonly SponsorsManager _sponsorsManager = default!; +#endif /// /// What happens if a marking is selected. @@ -191,6 +197,19 @@ public void PopulateList(string filter) var item = MarkingList.AddItem(Loc.GetString($"marking-{id}"), marking.Sprites[0].Frame0()); item.Metadata = marking.ID; +#if LPP_Sponsors // _LostParadise-Sponsors + if (marking.SponsorOnly) + { + item.Disabled = true; + if (_sponsorsManager.TryGetInfo(out var sponsor)) + { + var tier = sponsor.Tier > 5 ? 5 : sponsor.Tier; //если уровень выше максимального, ставится максимальный + var marks = Loc.GetString($"sponsor-markings-tier-{tier}").Split(";", StringSplitOptions.RemoveEmptyEntries); + item.Disabled = !(sponsor.AllowedMarkings.Contains(marking.ID) || sponsor.AllowedMarkings.Contains("ALL") || marks.Contains(marking.ID)); + } + } +#endif + if (_markings[Slot].MarkingId == id) { _ignoreItemSelected = true; diff --git a/Content.Client/IoC/ClientContentIoC.cs b/Content.Client/IoC/ClientContentIoC.cs index 01c8f38281..bcca9485da 100644 --- a/Content.Client/IoC/ClientContentIoC.cs +++ b/Content.Client/IoC/ClientContentIoC.cs @@ -24,6 +24,9 @@ using Content.Client.Replay; using Content.Shared.Administration.Managers; using Content.Shared.Players.PlayTimeTracking; +#if LPP_Sponsors // _LostParadise-Sponsors +using Content.Client._LostParadise.Sponsors; +#endif namespace Content.Client.IoC @@ -57,6 +60,9 @@ public static void Register() collection.Register(); IoCManager.Register(); IoCManager.Register(); +#if LPP_Sponsors // _LostParadise-Sponsors + collection.Register(); +#endif } } } diff --git a/Content.Client/PDA/PdaMenu.xaml.cs b/Content.Client/PDA/PdaMenu.xaml.cs index 630861d084..510b54acd0 100644 --- a/Content.Client/PDA/PdaMenu.xaml.cs +++ b/Content.Client/PDA/PdaMenu.xaml.cs @@ -32,7 +32,6 @@ public sealed partial class PdaMenu : PdaWindow private string _stationName = Loc.GetString("comp-pda-ui-unknown"); private string _alertLevel = Loc.GetString("comp-pda-ui-unknown"); private string _instructions = Loc.GetString("comp-pda-ui-unknown"); - private int _currentView; @@ -160,12 +159,13 @@ public void UpdateState(PdaUpdateState state) _stationName = state.StationName ?? Loc.GetString("comp-pda-ui-unknown"); StationNameLabel.SetMarkup(Loc.GetString("comp-pda-ui-station", ("station", _stationName))); - var stationTime = _gameTiming.CurTime.Subtract(_gameTicker.RoundStartTimeSpan); StationTimeLabel.SetMarkup(Loc.GetString("comp-pda-ui-station-time", - ("time", stationTime.ToString("hh\\:mm\\:ss")))); + ("time", stationTime.ToString("hh\\:mm\\:ss")), + ("date", DateTime.Now.AddYears(544).ToString("dd MMMM yyyy")) + )); var alertLevel = state.PdaOwnerInfo.StationAlertLevel; var alertColor = state.PdaOwnerInfo.StationAlertColor; @@ -339,7 +339,9 @@ protected override void Draw(DrawingHandleScreen handle) var stationTime = _gameTiming.CurTime.Subtract(_gameTicker.RoundStartTimeSpan); StationTimeLabel.SetMarkup(Loc.GetString("comp-pda-ui-station-time", - ("time", stationTime.ToString("hh\\:mm\\:ss")))); + ("time", stationTime.ToString("hh\\:mm\\:ss")), + ("date", DateTime.Now.AddYears(544).ToString("dd MMMM yyyy")) + )); } } } diff --git a/Content.Client/Preferences/ClientPreferencesManager.cs b/Content.Client/Preferences/ClientPreferencesManager.cs index aca7159504..7534b568f4 100644 --- a/Content.Client/Preferences/ClientPreferencesManager.cs +++ b/Content.Client/Preferences/ClientPreferencesManager.cs @@ -9,6 +9,9 @@ using Robust.Shared.Network; using Robust.Shared.Prototypes; using Robust.Shared.Utility; +#if LPP_Sponsors // _LostParadise-Sponsors +using Content.Client._LostParadise.Sponsors; +#endif namespace Content.Client.Preferences { @@ -24,6 +27,9 @@ public sealed class ClientPreferencesManager : IClientPreferencesManager [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IPrototypeManager _prototypes = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; +#if LPP_Sponsors // _LostParadise-Sponsors + [Dependency] private readonly SponsorsManager _sponsorsManager = default!; +#endif public event Action? OnServerDataLoaded; @@ -67,7 +73,14 @@ public void SelectCharacter(int slot) public void UpdateCharacter(ICharacterProfile profile, int slot) { var collection = IoCManager.Instance!; + +#if LPP_Sponsors // _LostParadise-Sponsors + var allowedMarkings = _sponsorsManager.TryGetInfo(out var sponsor) ? sponsor.AllowedMarkings : []; + var session = _playerManager.LocalSession!; + profile.EnsureValid(session, collection, allowedMarkings); +#else profile.EnsureValid(_playerManager.LocalSession!, collection); +#endif var characters = new Dictionary(Preferences.Characters) {[slot] = profile}; Preferences = new PlayerPreferences(characters, Preferences.SelectedCharacterIndex, Preferences.AdminOOCColor); var msg = new MsgUpdateCharacter diff --git a/Content.Client/Preferences/UI/CharacterSetupGui.xaml.cs b/Content.Client/Preferences/UI/CharacterSetupGui.xaml.cs index 5165db5479..359dfbb7d9 100644 --- a/Content.Client/Preferences/UI/CharacterSetupGui.xaml.cs +++ b/Content.Client/Preferences/UI/CharacterSetupGui.xaml.cs @@ -111,8 +111,22 @@ private void UpdateUI() Loc.GetString("character-setup-gui-create-new-character-button-tooltip", ("maxCharacters", _preferencesManager.Settings!.MaxCharacterSlots)); +#if LPP_Sponsors + var isDisplayedMaxSlots = false; // _LostParadise-Sponsors возможно использование дополнительных слотов +#endif + foreach (var (slot, character) in _preferencesManager.Preferences!.Characters) { + if (character is null) + { + continue; + } + + #if LPP_Sponsors // _LostParadise-Sponsors + isDisplayedMaxSlots = numberOfFullSlots >= _preferencesManager.Settings.MaxCharacterSlots; + if (isDisplayedMaxSlots) break; +#endif + numberOfFullSlots++; var characterPickerButton = new CharacterPickerButton(_entityManager, _preferencesManager, @@ -133,8 +147,12 @@ private void UpdateUI() }; } +#if LPP_Sponsors // _LostParadise-Sponsors + _createNewCharacterButton.Disabled = isDisplayedMaxSlots; +#else _createNewCharacterButton.Disabled = numberOfFullSlots >= _preferencesManager.Settings.MaxCharacterSlots; +#endif Characters.AddChild(_createNewCharacterButton); // TODO: Move this shit to the Lobby UI controller } diff --git a/Content.Client/Preferences/UI/HumanoidProfileEditor.xaml b/Content.Client/Preferences/UI/HumanoidProfileEditor.xaml index 814b1c95f2..173e44a797 100644 --- a/Content.Client/Preferences/UI/HumanoidProfileEditor.xaml +++ b/Content.Client/Preferences/UI/HumanoidProfileEditor.xaml @@ -191,6 +191,14 @@ + + + + + + + + diff --git a/Content.Client/Preferences/UI/HumanoidProfileEditor.xaml.cs b/Content.Client/Preferences/UI/HumanoidProfileEditor.xaml.cs index 352952e65c..a45ba0a3b9 100644 --- a/Content.Client/Preferences/UI/HumanoidProfileEditor.xaml.cs +++ b/Content.Client/Preferences/UI/HumanoidProfileEditor.xaml.cs @@ -83,6 +83,11 @@ public sealed partial class HumanoidProfileEditor : BoxContainer private Button _loadoutsShowUnusableButton => LoadoutsShowUnusableButton; private BoxContainer _loadoutsTab => CLoadoutsTab; private TabContainer _loadoutsTabs => CLoadoutsTabs; + + private BoxContainer _donateList => DonateList; // Lost Paradise Donate Preferences +#if LPP_Sponsors + private List<_LostParadise.Donate.DonatePreferenceSelector> _donatePreferences; // Lost Paradise Donate Preferences +#endif private readonly List _jobPriorities; private OptionButton _preferenceUnavailableButton => CPreferenceUnavailableButton; private readonly Dictionary _jobCategories; @@ -550,7 +555,7 @@ public HumanoidProfileEditor(IClientPreferencesManager preferencesManager, IProt #endregion Save #region Markings - _tabContainer.SetTabTitle(5, Loc.GetString("humanoid-profile-editor-markings-tab")); + _tabContainer.SetTabTitle(6, Loc.GetString("humanoid-profile-editor-markings-tab")); CMarkings.OnMarkingAdded += OnMarkingChange; CMarkings.OnMarkingRemoved += OnMarkingChange; @@ -588,6 +593,43 @@ public HumanoidProfileEditor(IClientPreferencesManager preferencesManager, IProt #endregion Dummy +#if LPP_Sponsors // Lost Paradise Donate Preferences + #region Donate + + var donate = prototypeManager.EnumeratePrototypes().OrderBy(t => Loc.GetString(t.Name)).ToList(); + _donatePreferences = new List<_LostParadise.Donate.DonatePreferenceSelector>(); + _tabContainer.SetTabTitle(5, Loc.GetString("lost-donate-editor")); + var granted = false; + if (donate.Count > 0) + { + foreach (var donatet in donate) + { + var selector = new _LostParadise.Donate.DonatePreferenceSelector(donatet); + _donateList.AddChild(selector); + _donatePreferences.Add(selector); + + selector.PreferenceChanged += preference => + { + Profile = Profile?.WithDonatePreference(donatet.ID, preference); + }; + if (selector.Gave) + granted = true; + } + } + if (!granted) + { + _donateList.AddChild(new Label + { + Text = Loc.GetString("lost-nodonate"), + FontColorOverride = Color.Gray, + }); + } + // Lost Paradise Donate Preferences End + #endregion + +#else + LPPDonate.Dispose(); +#endif #endregion Left if (preferencesManager.ServerDataLoaded) @@ -627,12 +669,14 @@ private void OnSpeciesInfoButtonPressed(BaseButton.ButtonEventArgs args) private void ToggleClothes(BaseButton.ButtonEventArgs _) { + _controller.UpdateClothes = true; _controller.ShowClothes = ShowClothes.Pressed; _controller.UpdateCharacterUI(); } private void ToggleLoadouts(BaseButton.ButtonEventArgs _) { + _controller.UpdateClothes = true; _controller.ShowLoadouts = ShowLoadouts.Pressed; _controller.UpdateCharacterUI(); } diff --git a/Content.IntegrationTests/Content.IntegrationTests.csproj b/Content.IntegrationTests/Content.IntegrationTests.csproj index 2e922d2509..013c7e4847 100644 --- a/Content.IntegrationTests/Content.IntegrationTests.csproj +++ b/Content.IntegrationTests/Content.IntegrationTests.csproj @@ -1,4 +1,4 @@ - + $(TargetFramework) @@ -7,6 +7,7 @@ false 12 + diff --git a/Content.IntegrationTests/Tests/Minds/MindTest.DeleteAllThenGhost.cs b/Content.IntegrationTests/Tests/Minds/MindTest.DeleteAllThenGhost.cs index 7bc62dfe2b..ab9e96ab91 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTest.DeleteAllThenGhost.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTest.DeleteAllThenGhost.cs @@ -34,7 +34,7 @@ public async Task DeleteAllThenGhost() Console.WriteLine(pair.Client.EntMan.ToPrettyString(ent)); } - Assert.That(pair.Client.EntMan.EntityCount, Is.EqualTo(0)); + Assert.That(pair.Client.EntMan.EntityCount, Is.AtMost(1)); // Tolerate at most one client entity // Create a new map. int mapId = 1; diff --git a/Content.IntegrationTests/Tests/Nyanotrasen/Metempsychosis/MetempsychosisTest.cs b/Content.IntegrationTests/Tests/Nyanotrasen/Metempsychosis/MetempsychosisTest.cs deleted file mode 100644 index cd6a4b4c2b..0000000000 --- a/Content.IntegrationTests/Tests/Nyanotrasen/Metempsychosis/MetempsychosisTest.cs +++ /dev/null @@ -1,53 +0,0 @@ -using Content.Server.Nyanotrasen.Cloning; -using Content.Shared.Humanoid.Prototypes; -using Content.Shared.Random; -using Robust.Shared.Prototypes; - -namespace Content.IntegrationTests.Tests.DeltaV; - -[TestFixture] -[TestOf(typeof(MetempsychoticMachineSystem))] -public sealed class MetempsychosisTest -{ - [Test] - public async Task AllHumanoidPoolSpeciesExist() - { - await using var pair = await PoolManager.GetServerClient(); - var server = pair.Server; - // Per RobustIntegrationTest.cs, wait until state is settled to access it. - await server.WaitIdleAsync(); - - var prototypeManager = server.ResolveDependency(); - - var metemComponent = new MetempsychoticMachineComponent(); - - await server.WaitAssertion(() => - { - prototypeManager.TryIndex(metemComponent.MetempsychoticHumanoidPool, - out var humanoidPool); - prototypeManager.TryIndex(metemComponent.MetempsychoticNonHumanoidPool, - out var nonHumanoidPool); - - Assert.That(humanoidPool, Is.Not.Null, "MetempsychoticHumanoidPool is null!"); - Assert.That(nonHumanoidPool, Is.Not.Null, "MetempsychoticNonHumanoidPool is null!"); - - Assert.That(humanoidPool.Weights, Is.Not.Empty, - "MetempsychoticHumanoidPool has no valid prototypes!"); - Assert.That(nonHumanoidPool.Weights, Is.Not.Empty, - "MetempsychoticNonHumanoidPool has no valid prototypes!"); - - foreach (var key in humanoidPool.Weights.Keys) - { - Assert.That(prototypeManager.TryIndex(key, out _), - $"MetempsychoticHumanoidPool has invalid prototype {key}!"); - } - - foreach (var key in nonHumanoidPool.Weights.Keys) - { - Assert.That(prototypeManager.TryIndex(key, out _), - $"MetempsychoticNonHumanoidPool has invalid prototype {key}!"); - } - }); - await pair.CleanReturnAsync(); - } -} diff --git a/Content.IntegrationTests/Tests/Preferences/ServerDbSqliteTests.cs b/Content.IntegrationTests/Tests/Preferences/ServerDbSqliteTests.cs index a396658f59..bfa6d79384 100644 --- a/Content.IntegrationTests/Tests/Preferences/ServerDbSqliteTests.cs +++ b/Content.IntegrationTests/Tests/Preferences/ServerDbSqliteTests.cs @@ -67,6 +67,9 @@ private static HumanoidCharacterProfile CharlieCharlieson() antagPreferences: new List(), traitPreferences: new List(), loadoutPreferences: new List() +#if LPP_Sponsors + , new List() // Lost Paradise Donate Preferences +#endif ); } diff --git a/Content.MapRenderer/Content.MapRenderer.csproj b/Content.MapRenderer/Content.MapRenderer.csproj index 4320717732..33e8f9449a 100644 --- a/Content.MapRenderer/Content.MapRenderer.csproj +++ b/Content.MapRenderer/Content.MapRenderer.csproj @@ -6,6 +6,7 @@ enable true + diff --git a/Content.Packaging/Content.Packaging.csproj b/Content.Packaging/Content.Packaging.csproj index 9823e40b8e..479dd5df42 100644 --- a/Content.Packaging/Content.Packaging.csproj +++ b/Content.Packaging/Content.Packaging.csproj @@ -5,6 +5,7 @@ enable True + diff --git a/Content.Server.Database/Content.Server.Database.csproj b/Content.Server.Database/Content.Server.Database.csproj index d98d0642db..87b86f8b5e 100644 --- a/Content.Server.Database/Content.Server.Database.csproj +++ b/Content.Server.Database/Content.Server.Database.csproj @@ -11,6 +11,8 @@ RA0003 + + runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/Content.Server.Database/Migrations/Postgres/20221128142328_Sponsors.Designer.cs b/Content.Server.Database/Migrations/Postgres/20221128142328_Sponsors.Designer.cs new file mode 100644 index 0000000000..6ef871db30 --- /dev/null +++ b/Content.Server.Database/Migrations/Postgres/20221128142328_Sponsors.Designer.cs @@ -0,0 +1,1384 @@ +// +#if LPP_Sponsors +using System; +using System.Net; +using System.Text.Json; +using Content.Server.Database; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; + +#nullable disable + +namespace Content.Server.Database.Migrations.Postgres // _LostParadise-Sponsors +{ + [DbContext(typeof(PostgresServerDbContext))] + [Migration("20221128142328_Sponsors")] + partial class Sponsors + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "6.0.5") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("AdminRankId") + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + b.Property("Title") + .HasColumnType("text") + .HasColumnName("title"); + + b.HasKey("UserId") + .HasName("PK_admin"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_admin_rank_id"); + + b.ToTable("admin", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_flag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminId") + .HasColumnType("uuid") + .HasColumnName("admin_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flag"); + + b.Property("Negative") + .HasColumnType("boolean") + .HasColumnName("negative"); + + b.HasKey("Id") + .HasName("PK_admin_flag"); + + b.HasIndex("AdminId") + .HasDatabaseName("IX_admin_flag_admin_id"); + + b.HasIndex("Flag", "AdminId") + .IsUnique(); + + b.ToTable("admin_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_log_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Date") + .HasColumnType("timestamp with time zone") + .HasColumnName("date"); + + b.Property("Impact") + .HasColumnType("smallint") + .HasColumnName("impact"); + + b.Property("Json") + .IsRequired() + .HasColumnType("jsonb") + .HasColumnName("json"); + + b.Property("Message") + .IsRequired() + .HasColumnType("text") + .HasColumnName("message"); + + b.Property("Type") + .HasColumnType("integer") + .HasColumnName("type"); + + b.HasKey("Id", "RoundId") + .HasName("PK_admin_log"); + + b.HasIndex("Date"); + + b.HasIndex("Message") + .HasAnnotation("Npgsql:TsVectorConfig", "english"); + + NpgsqlIndexBuilderExtensions.HasMethod(b.HasIndex("Message"), "GIN"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_log_round_id"); + + b.HasIndex("Type") + .HasDatabaseName("IX_admin_log_type"); + + b.ToTable("admin_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogEntity", b => + { + b.Property("Uid") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("uid"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Uid")); + + b.Property("AdminLogId") + .HasColumnType("integer") + .HasColumnName("admin_log_id"); + + b.Property("AdminLogRoundId") + .HasColumnType("integer") + .HasColumnName("admin_log_round_id"); + + b.Property("Name") + .HasColumnType("text") + .HasColumnName("name"); + + b.HasKey("Uid") + .HasName("PK_admin_log_entity"); + + b.HasIndex("AdminLogId", "AdminLogRoundId") + .HasDatabaseName("IX_admin_log_entity_admin_log_id_admin_log_round_id"); + + b.ToTable("admin_log_entity", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("LogId") + .HasColumnType("integer") + .HasColumnName("log_id"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.HasKey("PlayerUserId", "LogId", "RoundId") + .HasName("PK_admin_log_player"); + + b.HasIndex("LogId", "RoundId"); + + b.ToTable("admin_log_player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_notes_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("uuid") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("boolean") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("uuid") + .HasColumnName("deleted_by_id"); + + b.Property("LastEditedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("character varying(4096)") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("ShownToPlayer") + .HasColumnType("boolean") + .HasColumnName("shown_to_player"); + + b.HasKey("Id") + .HasName("PK_admin_notes"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_notes_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_notes_round_id"); + + b.ToTable("admin_notes", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_admin_rank"); + + b.ToTable("admin_rank", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_rank_flag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminRankId") + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flag"); + + b.HasKey("Id") + .HasName("PK_admin_rank_flag"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_rank_flag_admin_rank_id"); + + b.HasIndex("Flag", "AdminRankId") + .IsUnique(); + + b.ToTable("admin_rank_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("antag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AntagName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("antag_name"); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_antag"); + + b.HasIndex("ProfileId", "AntagName") + .IsUnique(); + + b.ToTable("antag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AssignedUserId", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("assigned_user_id_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_assigned_user_id"); + + b.HasIndex("UserId") + .IsUnique(); + + b.HasIndex("UserName") + .IsUnique(); + + b.ToTable("assigned_user_id", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("connection_log_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Address") + .IsRequired() + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("Denied") + .HasColumnType("smallint") + .HasColumnName("denied"); + + b.Property("HWId") + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b.Property("Time") + .HasColumnType("timestamp with time zone") + .HasColumnName("time"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_connection_log"); + + b.HasIndex("UserId"); + + b.ToTable("connection_log", (string)null); + + b.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("job_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("JobName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("job_name"); + + b.Property("Priority") + .HasColumnType("integer") + .HasColumnName("priority"); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_job"); + + b.HasIndex("ProfileId") + .HasDatabaseName("IX_job_profile_id"); + + b.HasIndex("ProfileId", "JobName") + .IsUnique(); + + b.HasIndex(new[] { "ProfileId" }, "IX_job_one_high_priority") + .IsUnique() + .HasFilter("priority = 3"); + + b.ToTable("job", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("player_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("FirstSeenTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("first_seen_time"); + + b.Property("LastReadRules") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_read_rules"); + + b.Property("LastSeenAddress") + .IsRequired() + .HasColumnType("inet") + .HasColumnName("last_seen_address"); + + b.Property("LastSeenHWId") + .HasColumnType("bytea") + .HasColumnName("last_seen_hwid"); + + b.Property("LastSeenTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_seen_time"); + + b.Property("LastSeenUserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("last_seen_user_name"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_player"); + + b.HasAlternateKey("UserId") + .HasName("ak_player_user_id"); + + b.HasIndex("LastSeenUserName"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("player", (string)null); + + b.HasCheckConstraint("LastSeenAddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= last_seen_address"); + }); + + modelBuilder.Entity("Content.Server.Database.PlayTime", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("play_time_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("PlayerId") + .HasColumnType("uuid") + .HasColumnName("player_id"); + + b.Property("TimeSpent") + .HasColumnType("interval") + .HasColumnName("time_spent"); + + b.Property("Tracker") + .IsRequired() + .HasColumnType("text") + .HasColumnName("tracker"); + + b.HasKey("Id") + .HasName("PK_play_time"); + + b.HasIndex("PlayerId", "Tracker") + .IsUnique(); + + b.ToTable("play_time", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("preference_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminOOCColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("admin_ooc_color"); + + b.Property("SelectedCharacterSlot") + .HasColumnType("integer") + .HasColumnName("selected_character_slot"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_preference"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("preference", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("profile_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Age") + .HasColumnType("integer") + .HasColumnName("age"); + + b.Property("Backpack") + .IsRequired() + .HasColumnType("text") + .HasColumnName("backpack"); + + b.Property("CharacterName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("char_name"); + + b.Property("Clothing") + .IsRequired() + .HasColumnType("text") + .HasColumnName("clothing"); + + b.Property("EyeColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("eye_color"); + + b.Property("FacialHairColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("facial_hair_color"); + + b.Property("FacialHairName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("facial_hair_name"); + + b.Property("FlavorText") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flavor_text"); + + b.Property("Gender") + .IsRequired() + .HasColumnType("text") + .HasColumnName("gender"); + + b.Property("HairColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("hair_color"); + + b.Property("HairName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("hair_name"); + + b.Property("Markings") + .HasColumnType("jsonb") + .HasColumnName("markings"); + + b.Property("PreferenceId") + .HasColumnType("integer") + .HasColumnName("preference_id"); + + b.Property("PreferenceUnavailable") + .HasColumnType("integer") + .HasColumnName("pref_unavailable"); + + b.Property("Sex") + .IsRequired() + .HasColumnType("text") + .HasColumnName("sex"); + + b.Property("SkinColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("skin_color"); + + b.Property("Slot") + .HasColumnType("integer") + .HasColumnName("slot"); + + b.Property("Species") + .IsRequired() + .HasColumnType("text") + .HasColumnName("species"); + + // Corvax-TTS-Start + b.Property("Voice") + .IsRequired() + .HasColumnType("text") + .HasColumnName("voice"); + // Corvax-TTS-End + + b.HasKey("Id") + .HasName("PK_profile"); + + b.HasIndex("PreferenceId") + .HasDatabaseName("IX_profile_preference_id"); + + b.HasIndex("Slot", "PreferenceId") + .IsUnique(); + + b.ToTable("profile", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("round_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ServerId") + .HasColumnType("integer") + .HasColumnName("server_id"); + + b.HasKey("Id") + .HasName("PK_round"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_round_server_id"); + + b.ToTable("round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_server"); + + b.ToTable("server", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_ban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property?>("Address") + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("uuid") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("text") + .HasColumnName("reason"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_server_ban"); + + b.HasIndex("Address"); + + b.HasIndex("UserId"); + + b.ToTable("server_ban", (string)null); + + b.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + + b.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_ban_hit_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("ConnectionId") + .HasColumnType("integer") + .HasColumnName("connection_id"); + + b.HasKey("Id") + .HasName("PK_server_ban_hit"); + + b.HasIndex("BanId") + .HasDatabaseName("IX_server_ban_hit_ban_id"); + + b.HasIndex("ConnectionId") + .HasDatabaseName("IX_server_ban_hit_connection_id"); + + b.ToTable("server_ban_hit", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_role_ban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property?>("Address") + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("uuid") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("text") + .HasColumnName("reason"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("text") + .HasColumnName("role_id"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_server_role_ban"); + + b.HasIndex("Address"); + + b.HasIndex("UserId"); + + b.ToTable("server_role_ban", (string)null); + + b.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + + b.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("role_unban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("uuid") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_role_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_role_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("unban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("uuid") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Sponsor", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("AllowedMarkings") + .IsRequired() + .HasColumnType("text") + .HasColumnName("allowed_markings"); + + b.Property("ExpireDate") + .HasColumnType("TEXT") + .HasColumnName("expire_date"); + + b.Property("ExtraSlots") + .HasColumnType("integer") + .HasColumnName("extra_slots"); + + b.Property("HavePriorityJoin") + .HasColumnType("boolean") + .HasColumnName("have_priority_join"); + + b.Property("OOCColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ooccolor"); + + b.Property("Tier") + .HasColumnType("integer") + .HasColumnName("tier"); + + b.HasKey("UserId") + .HasName("PK_sponsors"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("sponsors", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("trait_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.Property("TraitName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("trait_name"); + + b.HasKey("Id") + .HasName("PK_trait"); + + b.HasIndex("ProfileId", "TraitName") + .IsUnique(); + + b.ToTable("trait", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.UploadedResourceLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("uploaded_resource_log_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Data") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("data"); + + b.Property("Date") + .HasColumnType("timestamp with time zone") + .HasColumnName("date"); + + b.Property("Path") + .IsRequired() + .HasColumnType("text") + .HasColumnName("path"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_uploaded_resource_log"); + + b.ToTable("uploaded_resource_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Whitelist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_whitelist"); + + b.ToTable("whitelist", (string)null); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.Property("PlayersId") + .HasColumnType("integer") + .HasColumnName("players_id"); + + b.Property("RoundsId") + .HasColumnType("integer") + .HasColumnName("rounds_id"); + + b.HasKey("PlayersId", "RoundsId") + .HasName("PK_player_round"); + + b.HasIndex("RoundsId") + .HasDatabaseName("IX_player_round_rounds_id"); + + b.ToTable("player_round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.HasOne("Content.Server.Database.AdminRank", "AdminRank") + .WithMany("Admins") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_admin_rank_admin_rank_id"); + + b.Navigation("AdminRank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.HasOne("Content.Server.Database.Admin", "Admin") + .WithMany("Flags") + .HasForeignKey("AdminId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_flag_admin_admin_id"); + + b.Navigation("Admin"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany("AdminLogs") + .HasForeignKey("RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_round_round_id"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogEntity", b => + { + b.HasOne("Content.Server.Database.AdminLog", null) + .WithMany("Entities") + .HasForeignKey("AdminLogId", "AdminLogRoundId") + .HasConstraintName("FK_admin_log_entity_admin_log_admin_log_id_admin_log_round_id"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminLogs") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_player_player_user_id"); + + b.HasOne("Content.Server.Database.AdminLog", "Log") + .WithMany("Players") + .HasForeignKey("LogId", "RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_admin_log_log_id_round_id"); + + b.Navigation("Log"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminNotesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_notes_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminNotesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .HasConstraintName("FK_admin_notes_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminNotesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_notes_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminNotesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_notes_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_notes_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.HasOne("Content.Server.Database.AdminRank", "Rank") + .WithMany("Flags") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_rank_flag_admin_rank_admin_rank_id"); + + b.Navigation("Rank"); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Antags") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_antag_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Jobs") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_job_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.HasOne("Content.Server.Database.Preference", "Preference") + .WithMany("Profiles") + .HasForeignKey("PreferenceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_preference_preference_id"); + + b.Navigation("Preference"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("Rounds") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_round_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithMany("BanHits") + .HasForeignKey("BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_server_ban_ban_id"); + + b.HasOne("Content.Server.Database.ConnectionLog", "Connection") + .WithMany("BanHits") + .HasForeignKey("ConnectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_connection_log_connection_id"); + + b.Navigation("Ban"); + + b.Navigation("Connection"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.HasOne("Content.Server.Database.ServerRoleBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerRoleUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_role_unban_server_role_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_unban_server_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Traits") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_trait_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.HasOne("Content.Server.Database.Player", null) + .WithMany() + .HasForeignKey("PlayersId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_player_players_id"); + + b.HasOne("Content.Server.Database.Round", null) + .WithMany() + .HasForeignKey("RoundsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_round_rounds_id"); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Navigation("Entities"); + + b.Navigation("Players"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Navigation("Admins"); + + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Navigation("BanHits"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Navigation("AdminLogs"); + + b.Navigation("AdminNotesCreated"); + + b.Navigation("AdminNotesDeleted"); + + b.Navigation("AdminNotesLastEdited"); + + b.Navigation("AdminNotesReceived"); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Navigation("Profiles"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Navigation("Antags"); + + b.Navigation("Jobs"); + + b.Navigation("Traits"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Navigation("AdminLogs"); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Navigation("Rounds"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Navigation("BanHits"); + + b.Navigation("Unban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Navigation("Unban"); + }); +#pragma warning restore 612, 618 + } + } +} +#endif diff --git a/Content.Server.Database/Migrations/Postgres/20221128142328_Sponsors.cs b/Content.Server.Database/Migrations/Postgres/20221128142328_Sponsors.cs new file mode 100644 index 0000000000..ccbfd06bbd --- /dev/null +++ b/Content.Server.Database/Migrations/Postgres/20221128142328_Sponsors.cs @@ -0,0 +1,46 @@ +#if LPP_Sponsors +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Content.Server.Database.Migrations.Postgres // _LostParadise-Sponsors +{ + public partial class Sponsors : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "sponsors", + columns: table => new + { + user_id = table.Column(type: "uuid", nullable: false), + tier = table.Column(type: "integer", nullable: false), + ooccolor = table.Column(type: "text", nullable: false), + have_priority_join = table.Column(type: "boolean", nullable: false), + allowed_markings = table.Column(type: "text", nullable: false), + expire_date = table.Column(type: "TEXT", nullable: false), + extra_slots = table.Column(type: "integer", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_sponsors", x => x.user_id); + }); + + + migrationBuilder.CreateIndex( + name: "IX_sponsors_user_id", + table: "sponsors", + column: "user_id", + unique: true); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "sponsors"); + + } + } +} +#endif diff --git a/Content.Server.Database/Migrations/Postgres/20221202112609_Sponsor-AllowJob.Designer.cs b/Content.Server.Database/Migrations/Postgres/20221202112609_Sponsor-AllowJob.Designer.cs new file mode 100644 index 0000000000..4905cf21a1 --- /dev/null +++ b/Content.Server.Database/Migrations/Postgres/20221202112609_Sponsor-AllowJob.Designer.cs @@ -0,0 +1,1388 @@ +// +#if LPP_Sponsors +using System; +using System.Net; +using System.Text.Json; +using Content.Server.Database; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; + +#nullable disable + +namespace Content.Server.Database.Migrations.Postgres // _LostParadise-Sponsors +{ + [DbContext(typeof(PostgresServerDbContext))] + [Migration("20221202112609_Sponsor-AllowJob")] + partial class SponsorAllowJob + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "6.0.5") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("AdminRankId") + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + b.Property("Title") + .HasColumnType("text") + .HasColumnName("title"); + + b.HasKey("UserId") + .HasName("PK_admin"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_admin_rank_id"); + + b.ToTable("admin", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_flag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminId") + .HasColumnType("uuid") + .HasColumnName("admin_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flag"); + + b.Property("Negative") + .HasColumnType("boolean") + .HasColumnName("negative"); + + b.HasKey("Id") + .HasName("PK_admin_flag"); + + b.HasIndex("AdminId") + .HasDatabaseName("IX_admin_flag_admin_id"); + + b.HasIndex("Flag", "AdminId") + .IsUnique(); + + b.ToTable("admin_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_log_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Date") + .HasColumnType("timestamp with time zone") + .HasColumnName("date"); + + b.Property("Impact") + .HasColumnType("smallint") + .HasColumnName("impact"); + + b.Property("Json") + .IsRequired() + .HasColumnType("jsonb") + .HasColumnName("json"); + + b.Property("Message") + .IsRequired() + .HasColumnType("text") + .HasColumnName("message"); + + b.Property("Type") + .HasColumnType("integer") + .HasColumnName("type"); + + b.HasKey("Id", "RoundId") + .HasName("PK_admin_log"); + + b.HasIndex("Date"); + + b.HasIndex("Message") + .HasAnnotation("Npgsql:TsVectorConfig", "english"); + + NpgsqlIndexBuilderExtensions.HasMethod(b.HasIndex("Message"), "GIN"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_log_round_id"); + + b.HasIndex("Type") + .HasDatabaseName("IX_admin_log_type"); + + b.ToTable("admin_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogEntity", b => + { + b.Property("Uid") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("uid"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Uid")); + + b.Property("AdminLogId") + .HasColumnType("integer") + .HasColumnName("admin_log_id"); + + b.Property("AdminLogRoundId") + .HasColumnType("integer") + .HasColumnName("admin_log_round_id"); + + b.Property("Name") + .HasColumnType("text") + .HasColumnName("name"); + + b.HasKey("Uid") + .HasName("PK_admin_log_entity"); + + b.HasIndex("AdminLogId", "AdminLogRoundId") + .HasDatabaseName("IX_admin_log_entity_admin_log_id_admin_log_round_id"); + + b.ToTable("admin_log_entity", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("LogId") + .HasColumnType("integer") + .HasColumnName("log_id"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.HasKey("PlayerUserId", "LogId", "RoundId") + .HasName("PK_admin_log_player"); + + b.HasIndex("LogId", "RoundId"); + + b.ToTable("admin_log_player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_notes_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("uuid") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("boolean") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("uuid") + .HasColumnName("deleted_by_id"); + + b.Property("LastEditedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("character varying(4096)") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("ShownToPlayer") + .HasColumnType("boolean") + .HasColumnName("shown_to_player"); + + b.HasKey("Id") + .HasName("PK_admin_notes"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_notes_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_notes_round_id"); + + b.ToTable("admin_notes", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_admin_rank"); + + b.ToTable("admin_rank", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_rank_flag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminRankId") + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flag"); + + b.HasKey("Id") + .HasName("PK_admin_rank_flag"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_rank_flag_admin_rank_id"); + + b.HasIndex("Flag", "AdminRankId") + .IsUnique(); + + b.ToTable("admin_rank_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("antag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AntagName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("antag_name"); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_antag"); + + b.HasIndex("ProfileId", "AntagName") + .IsUnique(); + + b.ToTable("antag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AssignedUserId", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("assigned_user_id_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_assigned_user_id"); + + b.HasIndex("UserId") + .IsUnique(); + + b.HasIndex("UserName") + .IsUnique(); + + b.ToTable("assigned_user_id", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("connection_log_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Address") + .IsRequired() + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("Denied") + .HasColumnType("smallint") + .HasColumnName("denied"); + + b.Property("HWId") + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b.Property("Time") + .HasColumnType("timestamp with time zone") + .HasColumnName("time"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_connection_log"); + + b.HasIndex("UserId"); + + b.ToTable("connection_log", (string)null); + + b.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("job_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("JobName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("job_name"); + + b.Property("Priority") + .HasColumnType("integer") + .HasColumnName("priority"); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_job"); + + b.HasIndex("ProfileId") + .HasDatabaseName("IX_job_profile_id"); + + b.HasIndex("ProfileId", "JobName") + .IsUnique(); + + b.HasIndex(new[] { "ProfileId" }, "IX_job_one_high_priority") + .IsUnique() + .HasFilter("priority = 3"); + + b.ToTable("job", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("player_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("FirstSeenTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("first_seen_time"); + + b.Property("LastReadRules") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_read_rules"); + + b.Property("LastSeenAddress") + .IsRequired() + .HasColumnType("inet") + .HasColumnName("last_seen_address"); + + b.Property("LastSeenHWId") + .HasColumnType("bytea") + .HasColumnName("last_seen_hwid"); + + b.Property("LastSeenTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_seen_time"); + + b.Property("LastSeenUserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("last_seen_user_name"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_player"); + + b.HasAlternateKey("UserId") + .HasName("ak_player_user_id"); + + b.HasIndex("LastSeenUserName"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("player", (string)null); + + b.HasCheckConstraint("LastSeenAddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= last_seen_address"); + }); + + modelBuilder.Entity("Content.Server.Database.PlayTime", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("play_time_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("PlayerId") + .HasColumnType("uuid") + .HasColumnName("player_id"); + + b.Property("TimeSpent") + .HasColumnType("interval") + .HasColumnName("time_spent"); + + b.Property("Tracker") + .IsRequired() + .HasColumnType("text") + .HasColumnName("tracker"); + + b.HasKey("Id") + .HasName("PK_play_time"); + + b.HasIndex("PlayerId", "Tracker") + .IsUnique(); + + b.ToTable("play_time", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("preference_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminOOCColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("admin_ooc_color"); + + b.Property("SelectedCharacterSlot") + .HasColumnType("integer") + .HasColumnName("selected_character_slot"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_preference"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("preference", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("profile_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Age") + .HasColumnType("integer") + .HasColumnName("age"); + + b.Property("Backpack") + .IsRequired() + .HasColumnType("text") + .HasColumnName("backpack"); + + b.Property("CharacterName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("char_name"); + + b.Property("Clothing") + .IsRequired() + .HasColumnType("text") + .HasColumnName("clothing"); + + b.Property("EyeColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("eye_color"); + + b.Property("FacialHairColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("facial_hair_color"); + + b.Property("FacialHairName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("facial_hair_name"); + + b.Property("FlavorText") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flavor_text"); + + b.Property("Gender") + .IsRequired() + .HasColumnType("text") + .HasColumnName("gender"); + + b.Property("HairColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("hair_color"); + + b.Property("HairName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("hair_name"); + + b.Property("Markings") + .HasColumnType("jsonb") + .HasColumnName("markings"); + + b.Property("PreferenceId") + .HasColumnType("integer") + .HasColumnName("preference_id"); + + b.Property("PreferenceUnavailable") + .HasColumnType("integer") + .HasColumnName("pref_unavailable"); + + b.Property("Sex") + .IsRequired() + .HasColumnType("text") + .HasColumnName("sex"); + + b.Property("SkinColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("skin_color"); + + b.Property("Slot") + .HasColumnType("integer") + .HasColumnName("slot"); + + b.Property("Species") + .IsRequired() + .HasColumnType("text") + .HasColumnName("species"); + + // Corvax-TTS-Start + b.Property("Voice") + .IsRequired() + .HasColumnType("text") + .HasColumnName("voice"); + // Corvax-TTS-End + + b.HasKey("Id") + .HasName("PK_profile"); + + b.HasIndex("PreferenceId") + .HasDatabaseName("IX_profile_preference_id"); + + b.HasIndex("Slot", "PreferenceId") + .IsUnique(); + + b.ToTable("profile", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("round_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ServerId") + .HasColumnType("integer") + .HasColumnName("server_id"); + + b.HasKey("Id") + .HasName("PK_round"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_round_server_id"); + + b.ToTable("round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_server"); + + b.ToTable("server", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_ban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property?>("Address") + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("uuid") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("text") + .HasColumnName("reason"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_server_ban"); + + b.HasIndex("Address"); + + b.HasIndex("UserId"); + + b.ToTable("server_ban", (string)null); + + b.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + + b.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_ban_hit_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("ConnectionId") + .HasColumnType("integer") + .HasColumnName("connection_id"); + + b.HasKey("Id") + .HasName("PK_server_ban_hit"); + + b.HasIndex("BanId") + .HasDatabaseName("IX_server_ban_hit_ban_id"); + + b.HasIndex("ConnectionId") + .HasDatabaseName("IX_server_ban_hit_connection_id"); + + b.ToTable("server_ban_hit", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_role_ban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property?>("Address") + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("uuid") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("text") + .HasColumnName("reason"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("text") + .HasColumnName("role_id"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_server_role_ban"); + + b.HasIndex("Address"); + + b.HasIndex("UserId"); + + b.ToTable("server_role_ban", (string)null); + + b.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + + b.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("role_unban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("uuid") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_role_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_role_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("unban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("uuid") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Sponsor", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("AllowJob") + .HasColumnType("boolean") + .HasColumnName("allow_job"); + + b.Property("AllowedMarkings") + .IsRequired() + .HasColumnType("text") + .HasColumnName("allowed_markings"); + + b.Property("ExpireDate") + .HasColumnType("timestamp with time zone") + .HasColumnName("expire_date"); + + b.Property("ExtraSlots") + .HasColumnType("integer") + .HasColumnName("extra_slots"); + + b.Property("HavePriorityJoin") + .HasColumnType("boolean") + .HasColumnName("have_priority_join"); + + b.Property("OOCColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ooccolor"); + + b.Property("Tier") + .HasColumnType("integer") + .HasColumnName("tier"); + + b.HasKey("UserId") + .HasName("PK_sponsors"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("sponsors", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("trait_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.Property("TraitName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("trait_name"); + + b.HasKey("Id") + .HasName("PK_trait"); + + b.HasIndex("ProfileId", "TraitName") + .IsUnique(); + + b.ToTable("trait", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.UploadedResourceLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("uploaded_resource_log_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Data") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("data"); + + b.Property("Date") + .HasColumnType("timestamp with time zone") + .HasColumnName("date"); + + b.Property("Path") + .IsRequired() + .HasColumnType("text") + .HasColumnName("path"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_uploaded_resource_log"); + + b.ToTable("uploaded_resource_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Whitelist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_whitelist"); + + b.ToTable("whitelist", (string)null); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.Property("PlayersId") + .HasColumnType("integer") + .HasColumnName("players_id"); + + b.Property("RoundsId") + .HasColumnType("integer") + .HasColumnName("rounds_id"); + + b.HasKey("PlayersId", "RoundsId") + .HasName("PK_player_round"); + + b.HasIndex("RoundsId") + .HasDatabaseName("IX_player_round_rounds_id"); + + b.ToTable("player_round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.HasOne("Content.Server.Database.AdminRank", "AdminRank") + .WithMany("Admins") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_admin_rank_admin_rank_id"); + + b.Navigation("AdminRank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.HasOne("Content.Server.Database.Admin", "Admin") + .WithMany("Flags") + .HasForeignKey("AdminId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_flag_admin_admin_id"); + + b.Navigation("Admin"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany("AdminLogs") + .HasForeignKey("RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_round_round_id"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogEntity", b => + { + b.HasOne("Content.Server.Database.AdminLog", null) + .WithMany("Entities") + .HasForeignKey("AdminLogId", "AdminLogRoundId") + .HasConstraintName("FK_admin_log_entity_admin_log_admin_log_id_admin_log_round_id"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminLogs") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_player_player_user_id"); + + b.HasOne("Content.Server.Database.AdminLog", "Log") + .WithMany("Players") + .HasForeignKey("LogId", "RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_admin_log_log_id_round_id"); + + b.Navigation("Log"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminNotesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_notes_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminNotesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .HasConstraintName("FK_admin_notes_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminNotesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_notes_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminNotesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_notes_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_notes_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.HasOne("Content.Server.Database.AdminRank", "Rank") + .WithMany("Flags") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_rank_flag_admin_rank_admin_rank_id"); + + b.Navigation("Rank"); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Antags") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_antag_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Jobs") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_job_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.HasOne("Content.Server.Database.Preference", "Preference") + .WithMany("Profiles") + .HasForeignKey("PreferenceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_preference_preference_id"); + + b.Navigation("Preference"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("Rounds") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_round_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithMany("BanHits") + .HasForeignKey("BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_server_ban_ban_id"); + + b.HasOne("Content.Server.Database.ConnectionLog", "Connection") + .WithMany("BanHits") + .HasForeignKey("ConnectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_connection_log_connection_id"); + + b.Navigation("Ban"); + + b.Navigation("Connection"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.HasOne("Content.Server.Database.ServerRoleBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerRoleUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_role_unban_server_role_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_unban_server_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Traits") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_trait_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.HasOne("Content.Server.Database.Player", null) + .WithMany() + .HasForeignKey("PlayersId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_player_players_id"); + + b.HasOne("Content.Server.Database.Round", null) + .WithMany() + .HasForeignKey("RoundsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_round_rounds_id"); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Navigation("Entities"); + + b.Navigation("Players"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Navigation("Admins"); + + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Navigation("BanHits"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Navigation("AdminLogs"); + + b.Navigation("AdminNotesCreated"); + + b.Navigation("AdminNotesDeleted"); + + b.Navigation("AdminNotesLastEdited"); + + b.Navigation("AdminNotesReceived"); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Navigation("Profiles"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Navigation("Antags"); + + b.Navigation("Jobs"); + + b.Navigation("Traits"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Navigation("AdminLogs"); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Navigation("Rounds"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Navigation("BanHits"); + + b.Navigation("Unban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Navigation("Unban"); + }); +#pragma warning restore 612, 618 + } + } +} +#endif diff --git a/Content.Server.Database/Migrations/Postgres/20221202112609_Sponsor-AllowJob.cs b/Content.Server.Database/Migrations/Postgres/20221202112609_Sponsor-AllowJob.cs new file mode 100644 index 0000000000..ebb4967a31 --- /dev/null +++ b/Content.Server.Database/Migrations/Postgres/20221202112609_Sponsor-AllowJob.cs @@ -0,0 +1,28 @@ +#if LPP_Sponsors +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Content.Server.Database.Migrations.Postgres // _LostParadise-Sponsors +{ + public partial class SponsorAllowJob : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "allow_job", + table: "sponsors", + type: "boolean", + nullable: false, + defaultValue: false); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "allow_job", + table: "sponsors"); + } + } +} +#endif diff --git a/Content.Server.Database/Migrations/Postgres/20240422101522_Donate.Designer.cs b/Content.Server.Database/Migrations/Postgres/20240422101522_Donate.Designer.cs new file mode 100644 index 0000000000..f571b08cb5 --- /dev/null +++ b/Content.Server.Database/Migrations/Postgres/20240422101522_Donate.Designer.cs @@ -0,0 +1,1814 @@ +// +#if LPP_Sponsors +using System; +using System.Net; +using System.Text.Json; +using Content.Server.Database; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using NpgsqlTypes; + +#nullable disable + +namespace Content.Server.Database.Migrations.Postgres +{ + [DbContext(typeof(PostgresServerDbContext))] + [Migration("20240422101522_Donate")] + partial class Donate + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("AdminRankId") + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + b.Property("Title") + .HasColumnType("text") + .HasColumnName("title"); + + b.HasKey("UserId") + .HasName("PK_admin"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_admin_rank_id"); + + b.ToTable("admin", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_flag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminId") + .HasColumnType("uuid") + .HasColumnName("admin_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flag"); + + b.Property("Negative") + .HasColumnType("boolean") + .HasColumnName("negative"); + + b.HasKey("Id") + .HasName("PK_admin_flag"); + + b.HasIndex("AdminId") + .HasDatabaseName("IX_admin_flag_admin_id"); + + b.HasIndex("Flag", "AdminId") + .IsUnique(); + + b.ToTable("admin_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Id") + .HasColumnType("integer") + .HasColumnName("admin_log_id"); + + b.Property("Date") + .HasColumnType("timestamp with time zone") + .HasColumnName("date"); + + b.Property("Impact") + .HasColumnType("smallint") + .HasColumnName("impact"); + + b.Property("Json") + .IsRequired() + .HasColumnType("jsonb") + .HasColumnName("json"); + + b.Property("Message") + .IsRequired() + .HasColumnType("text") + .HasColumnName("message"); + + b.Property("Type") + .HasColumnType("integer") + .HasColumnName("type"); + + b.HasKey("RoundId", "Id") + .HasName("PK_admin_log"); + + b.HasIndex("Date"); + + b.HasIndex("Message") + .HasAnnotation("Npgsql:TsVectorConfig", "english"); + + NpgsqlIndexBuilderExtensions.HasMethod(b.HasIndex("Message"), "GIN"); + + b.HasIndex("Type") + .HasDatabaseName("IX_admin_log_type"); + + b.ToTable("admin_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("LogId") + .HasColumnType("integer") + .HasColumnName("log_id"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.HasKey("RoundId", "LogId", "PlayerUserId") + .HasName("PK_admin_log_player"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_log_player_player_user_id"); + + b.ToTable("admin_log_player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_messages_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("uuid") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("boolean") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("uuid") + .HasColumnName("deleted_by_id"); + + b.Property("Dismissed") + .HasColumnType("boolean") + .HasColumnName("dismissed"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("character varying(4096)") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Seen") + .HasColumnType("boolean") + .HasColumnName("seen"); + + b.HasKey("Id") + .HasName("PK_admin_messages"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_messages_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_messages_round_id"); + + b.ToTable("admin_messages", null, t => + { + t.HasCheckConstraint("NotDismissedAndSeen", "NOT dismissed OR seen"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_notes_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("uuid") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("boolean") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("uuid") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("character varying(4096)") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Secret") + .HasColumnType("boolean") + .HasColumnName("secret"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_admin_notes"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_notes_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_notes_round_id"); + + b.ToTable("admin_notes", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_admin_rank"); + + b.ToTable("admin_rank", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_rank_flag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminRankId") + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flag"); + + b.HasKey("Id") + .HasName("PK_admin_rank_flag"); + + b.HasIndex("AdminRankId"); + + b.HasIndex("Flag", "AdminRankId") + .IsUnique(); + + b.ToTable("admin_rank_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_watchlists_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("uuid") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("boolean") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("uuid") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("character varying(4096)") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.HasKey("Id") + .HasName("PK_admin_watchlists"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_watchlists_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_watchlists_round_id"); + + b.ToTable("admin_watchlists", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("antag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AntagName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("antag_name"); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_antag"); + + b.HasIndex("ProfileId", "AntagName") + .IsUnique(); + + b.ToTable("antag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AssignedUserId", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("assigned_user_id_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_assigned_user_id"); + + b.HasIndex("UserId") + .IsUnique(); + + b.HasIndex("UserName") + .IsUnique(); + + b.ToTable("assigned_user_id", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("connection_log_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Address") + .IsRequired() + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("Denied") + .HasColumnType("smallint") + .HasColumnName("denied"); + + b.Property("HWId") + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b.Property("ServerId") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasDefaultValue(0) + .HasColumnName("server_id"); + + b.Property("Time") + .HasColumnType("timestamp with time zone") + .HasColumnName("time"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_connection_log"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_connection_log_server_id"); + + b.HasIndex("UserId"); + + b.ToTable("connection_log", null, t => + { + t.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.Donate", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("donate_id"); + + b.Property("DonateName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("donate_name"); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_donate"); + + b.HasIndex("ProfileId", "DonateName") + .IsUnique(); + + b.ToTable("donate", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("job_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("JobName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("job_name"); + + b.Property("Priority") + .HasColumnType("integer") + .HasColumnName("priority"); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_job"); + + b.HasIndex("ProfileId"); + + b.HasIndex("ProfileId", "JobName") + .IsUnique(); + + b.HasIndex(new[] { "ProfileId" }, "IX_job_one_high_priority") + .IsUnique() + .HasFilter("priority = 3"); + + b.ToTable("job", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.PlayTime", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("play_time_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("PlayerId") + .HasColumnType("uuid") + .HasColumnName("player_id"); + + b.Property("TimeSpent") + .HasColumnType("interval") + .HasColumnName("time_spent"); + + b.Property("Tracker") + .IsRequired() + .HasColumnType("text") + .HasColumnName("tracker"); + + b.HasKey("Id") + .HasName("PK_play_time"); + + b.HasIndex("PlayerId", "Tracker") + .IsUnique(); + + b.ToTable("play_time", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("player_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("FirstSeenTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("first_seen_time"); + + b.Property("LastReadRules") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_read_rules"); + + b.Property("LastSeenAddress") + .IsRequired() + .HasColumnType("inet") + .HasColumnName("last_seen_address"); + + b.Property("LastSeenHWId") + .HasColumnType("bytea") + .HasColumnName("last_seen_hwid"); + + b.Property("LastSeenTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_seen_time"); + + b.Property("LastSeenUserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("last_seen_user_name"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_player"); + + b.HasAlternateKey("UserId") + .HasName("ak_player_user_id"); + + b.HasIndex("LastSeenUserName"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("player", null, t => + { + t.HasCheckConstraint("LastSeenAddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= last_seen_address"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("preference_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminOOCColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("admin_ooc_color"); + + b.Property("SelectedCharacterSlot") + .HasColumnType("integer") + .HasColumnName("selected_character_slot"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_preference"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("preference", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("profile_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Age") + .HasColumnType("integer") + .HasColumnName("age"); + + b.Property("Backpack") + .IsRequired() + .HasColumnType("text") + .HasColumnName("backpack"); + + b.Property("CharacterName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("char_name"); + + b.Property("Clothing") + .IsRequired() + .HasColumnType("text") + .HasColumnName("clothing"); + + b.Property("EyeColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("eye_color"); + + b.Property("FacialHairColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("facial_hair_color"); + + b.Property("FacialHairName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("facial_hair_name"); + + b.Property("FlavorText") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flavor_text"); + + b.Property("Gender") + .IsRequired() + .HasColumnType("text") + .HasColumnName("gender"); + + b.Property("HairColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("hair_color"); + + b.Property("HairName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("hair_name"); + + b.Property("Markings") + .HasColumnType("jsonb") + .HasColumnName("markings"); + + b.Property("PreferenceId") + .HasColumnType("integer") + .HasColumnName("preference_id"); + + b.Property("PreferenceUnavailable") + .HasColumnType("integer") + .HasColumnName("pref_unavailable"); + + b.Property("Sex") + .IsRequired() + .HasColumnType("text") + .HasColumnName("sex"); + + b.Property("SkinColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("skin_color"); + + b.Property("Slot") + .HasColumnType("integer") + .HasColumnName("slot"); + + b.Property("SpawnPriority") + .HasColumnType("integer") + .HasColumnName("spawn_priority"); + + b.Property("Species") + .IsRequired() + .HasColumnType("text") + .HasColumnName("species"); + + // Corvax-TTS-Start + b.Property("Voice") + .IsRequired() + .HasColumnType("text") + .HasColumnName("voice"); + // Corvax-TTS-End + + b.HasKey("Id") + .HasName("PK_profile"); + + b.HasIndex("PreferenceId") + .HasDatabaseName("IX_profile_preference_id"); + + b.HasIndex("Slot", "PreferenceId") + .IsUnique(); + + b.ToTable("profile", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("round_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ServerId") + .HasColumnType("integer") + .HasColumnName("server_id"); + + b.Property("StartDate") + .HasColumnType("timestamp with time zone") + .HasColumnName("start_date"); + + b.HasKey("Id") + .HasName("PK_round"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_round_server_id"); + + b.HasIndex("StartDate"); + + b.ToTable("round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_server"); + + b.ToTable("server", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_ban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Address") + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("AutoDelete") + .HasColumnType("boolean") + .HasColumnName("auto_delete"); + + b.Property("BanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("uuid") + .HasColumnName("banning_admin"); + + b.Property("ExemptFlags") + .HasColumnType("integer") + .HasColumnName("exempt_flags"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b.Property("Hidden") + .HasColumnType("boolean") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("text") + .HasColumnName("reason"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_ban_round_id"); + + b.ToTable("server_ban", null, t => + { + t.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanExemption", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("Flags") + .HasColumnType("integer") + .HasColumnName("flags"); + + b.HasKey("UserId") + .HasName("PK_server_ban_exemption"); + + b.ToTable("server_ban_exemption", null, t => + { + t.HasCheckConstraint("FlagsNotZero", "flags != 0"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_ban_hit_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("ConnectionId") + .HasColumnType("integer") + .HasColumnName("connection_id"); + + b.HasKey("Id") + .HasName("PK_server_ban_hit"); + + b.HasIndex("BanId") + .HasDatabaseName("IX_server_ban_hit_ban_id"); + + b.HasIndex("ConnectionId") + .HasDatabaseName("IX_server_ban_hit_connection_id"); + + b.ToTable("server_ban_hit", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_role_ban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Address") + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("uuid") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b.Property("Hidden") + .HasColumnType("boolean") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("text") + .HasColumnName("reason"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("text") + .HasColumnName("role_id"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_role_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_role_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_role_ban_round_id"); + + b.ToTable("server_role_ban", null, t => + { + t.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("role_unban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("uuid") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_role_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_role_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("unban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("uuid") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("trait_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.Property("TraitName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("trait_name"); + + b.HasKey("Id") + .HasName("PK_trait"); + + b.HasIndex("ProfileId", "TraitName") + .IsUnique(); + + b.ToTable("trait", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.UploadedResourceLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("uploaded_resource_log_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Data") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("data"); + + b.Property("Date") + .HasColumnType("timestamp with time zone") + .HasColumnName("date"); + + b.Property("Path") + .IsRequired() + .HasColumnType("text") + .HasColumnName("path"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_uploaded_resource_log"); + + b.ToTable("uploaded_resource_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Whitelist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_whitelist"); + + b.ToTable("whitelist", (string)null); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.Property("PlayersId") + .HasColumnType("integer") + .HasColumnName("players_id"); + + b.Property("RoundsId") + .HasColumnType("integer") + .HasColumnName("rounds_id"); + + b.HasKey("PlayersId", "RoundsId") + .HasName("PK_player_round"); + + b.HasIndex("RoundsId") + .HasDatabaseName("IX_player_round_rounds_id"); + + b.ToTable("player_round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.HasOne("Content.Server.Database.AdminRank", "AdminRank") + .WithMany("Admins") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_admin_rank_admin_rank_id"); + + b.Navigation("AdminRank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.HasOne("Content.Server.Database.Admin", "Admin") + .WithMany("Flags") + .HasForeignKey("AdminId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_flag_admin_admin_id"); + + b.Navigation("Admin"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany("AdminLogs") + .HasForeignKey("RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_round_round_id"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminLogs") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_player_player_user_id"); + + b.HasOne("Content.Server.Database.AdminLog", "Log") + .WithMany("Players") + .HasForeignKey("RoundId", "LogId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_admin_log_round_id_log_id"); + + b.Navigation("Log"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminMessagesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminMessagesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminMessagesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminMessagesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_messages_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_messages_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminNotesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminNotesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminNotesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminNotesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_notes_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_notes_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.HasOne("Content.Server.Database.AdminRank", "Rank") + .WithMany("Flags") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_rank_flag_admin_rank_admin_rank_id"); + + b.Navigation("Rank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminWatchlistsCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminWatchlistsDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminWatchlistsLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminWatchlistsReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_watchlists_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_watchlists_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Antags") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_antag_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("ConnectionLogs") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.SetNull) + .IsRequired() + .HasConstraintName("FK_connection_log_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.Donate", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Donate") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_donate_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Jobs") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_job_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.HasOne("Content.Server.Database.Preference", "Preference") + .WithMany("Profiles") + .HasForeignKey("PreferenceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_preference_preference_id"); + + b.Navigation("Preference"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("Rounds") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_round_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_ban_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithMany("BanHits") + .HasForeignKey("BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_server_ban_ban_id"); + + b.HasOne("Content.Server.Database.ConnectionLog", "Connection") + .WithMany("BanHits") + .HasForeignKey("ConnectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_connection_log_connection_id"); + + b.Navigation("Ban"); + + b.Navigation("Connection"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerRoleBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerRoleBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_role_ban_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.HasOne("Content.Server.Database.ServerRoleBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerRoleUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_role_unban_server_role_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_unban_server_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Traits") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_trait_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.HasOne("Content.Server.Database.Player", null) + .WithMany() + .HasForeignKey("PlayersId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_player_players_id"); + + b.HasOne("Content.Server.Database.Round", null) + .WithMany() + .HasForeignKey("RoundsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_round_rounds_id"); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Navigation("Players"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Navigation("Admins"); + + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Navigation("BanHits"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Navigation("AdminLogs"); + + b.Navigation("AdminMessagesCreated"); + + b.Navigation("AdminMessagesDeleted"); + + b.Navigation("AdminMessagesLastEdited"); + + b.Navigation("AdminMessagesReceived"); + + b.Navigation("AdminNotesCreated"); + + b.Navigation("AdminNotesDeleted"); + + b.Navigation("AdminNotesLastEdited"); + + b.Navigation("AdminNotesReceived"); + + b.Navigation("AdminServerBansCreated"); + + b.Navigation("AdminServerBansLastEdited"); + + b.Navigation("AdminServerRoleBansCreated"); + + b.Navigation("AdminServerRoleBansLastEdited"); + + b.Navigation("AdminWatchlistsCreated"); + + b.Navigation("AdminWatchlistsDeleted"); + + b.Navigation("AdminWatchlistsLastEdited"); + + b.Navigation("AdminWatchlistsReceived"); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Navigation("Profiles"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Navigation("Antags"); + + b.Navigation("Donate"); + + b.Navigation("Jobs"); + + b.Navigation("Traits"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Navigation("AdminLogs"); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Navigation("ConnectionLogs"); + + b.Navigation("Rounds"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Navigation("BanHits"); + + b.Navigation("Unban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Navigation("Unban"); + }); +#pragma warning restore 612, 618 + } + } +} +#endif diff --git a/Content.Server.Database/Migrations/Postgres/20240422101522_Donate.cs b/Content.Server.Database/Migrations/Postgres/20240422101522_Donate.cs new file mode 100644 index 0000000000..ed572f7007 --- /dev/null +++ b/Content.Server.Database/Migrations/Postgres/20240422101522_Donate.cs @@ -0,0 +1,48 @@ +#if LPP_Sponsors +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Content.Server.Database.Migrations.Postgres +{ + /// + public partial class Donate : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "donate", + columns: table => new + { + donate_id = table.Column(type: "integer", nullable: false), + profile_id = table.Column(type: "integer", nullable: false), + donate_name = table.Column(type: "text", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_donate", x => x.donate_id); + table.ForeignKey( + name: "FK_donate_profile_profile_id", + column: x => x.profile_id, + principalTable: "profile", + principalColumn: "profile_id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateIndex( + name: "IX_donate_profile_id_donate_name", + table: "donate", + columns: new[] { "profile_id", "donate_name" }, + unique: true); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "donate"); + } + } +} +#endif diff --git a/Content.Server.Database/Migrations/Sqlite/20221128142316_Sponsors.Designer.cs b/Content.Server.Database/Migrations/Sqlite/20221128142316_Sponsors.Designer.cs new file mode 100644 index 0000000000..d567850484 --- /dev/null +++ b/Content.Server.Database/Migrations/Sqlite/20221128142316_Sponsors.Designer.cs @@ -0,0 +1,1316 @@ +// +#if LPP_Sponsors +using System; +using Content.Server.Database; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace Content.Server.Database.Migrations.Sqlite // _LostParadise-Sponsors +{ + [DbContext(typeof(SqliteServerDbContext))] + [Migration("20221128142316_Sponsors")] + partial class Sponsors + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "6.0.5"); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("AdminRankId") + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Title") + .HasColumnType("TEXT") + .HasColumnName("title"); + + b.HasKey("UserId") + .HasName("PK_admin"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_admin_rank_id"); + + b.ToTable("admin", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_flag_id"); + + b.Property("AdminId") + .HasColumnType("TEXT") + .HasColumnName("admin_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flag"); + + b.Property("Negative") + .HasColumnType("INTEGER") + .HasColumnName("negative"); + + b.HasKey("Id") + .HasName("PK_admin_flag"); + + b.HasIndex("AdminId") + .HasDatabaseName("IX_admin_flag_admin_id"); + + b.HasIndex("Flag", "AdminId") + .IsUnique(); + + b.ToTable("admin_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_log_id"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Date") + .HasColumnType("TEXT") + .HasColumnName("date"); + + b.Property("Impact") + .HasColumnType("INTEGER") + .HasColumnName("impact"); + + b.Property("Json") + .IsRequired() + .HasColumnType("jsonb") + .HasColumnName("json"); + + b.Property("Message") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("Type") + .HasColumnType("INTEGER") + .HasColumnName("type"); + + b.HasKey("Id", "RoundId") + .HasName("PK_admin_log"); + + b.HasIndex("Date"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_log_round_id"); + + b.HasIndex("Type") + .HasDatabaseName("IX_admin_log_type"); + + b.ToTable("admin_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogEntity", b => + { + b.Property("Uid") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("uid"); + + b.Property("AdminLogId") + .HasColumnType("INTEGER") + .HasColumnName("admin_log_id"); + + b.Property("AdminLogRoundId") + .HasColumnType("INTEGER") + .HasColumnName("admin_log_round_id"); + + b.Property("Name") + .HasColumnType("TEXT") + .HasColumnName("name"); + + b.HasKey("Uid") + .HasName("PK_admin_log_entity"); + + b.HasIndex("AdminLogId", "AdminLogRoundId") + .HasDatabaseName("IX_admin_log_entity_admin_log_id_admin_log_round_id"); + + b.ToTable("admin_log_entity", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("LogId") + .HasColumnType("INTEGER") + .HasColumnName("log_id"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.HasKey("PlayerUserId", "LogId", "RoundId") + .HasName("PK_admin_log_player"); + + b.HasIndex("LogId", "RoundId"); + + b.ToTable("admin_log_player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_notes_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("ShownToPlayer") + .HasColumnType("INTEGER") + .HasColumnName("shown_to_player"); + + b.HasKey("Id") + .HasName("PK_admin_notes"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_notes_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_notes_round_id"); + + b.ToTable("admin_notes", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_admin_rank"); + + b.ToTable("admin_rank", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_flag_id"); + + b.Property("AdminRankId") + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flag"); + + b.HasKey("Id") + .HasName("PK_admin_rank_flag"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_rank_flag_admin_rank_id"); + + b.HasIndex("Flag", "AdminRankId") + .IsUnique(); + + b.ToTable("admin_rank_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("antag_id"); + + b.Property("AntagName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("antag_name"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_antag"); + + b.HasIndex("ProfileId", "AntagName") + .IsUnique(); + + b.ToTable("antag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AssignedUserId", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("assigned_user_id_id"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_assigned_user_id"); + + b.HasIndex("UserId") + .IsUnique(); + + b.HasIndex("UserName") + .IsUnique(); + + b.ToTable("assigned_user_id", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("connection_log_id"); + + b.Property("Address") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("Denied") + .HasColumnType("INTEGER") + .HasColumnName("denied"); + + b.Property("HWId") + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b.Property("Time") + .HasColumnType("TEXT") + .HasColumnName("time"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_connection_log"); + + b.HasIndex("UserId"); + + b.ToTable("connection_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("job_id"); + + b.Property("JobName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("job_name"); + + b.Property("Priority") + .HasColumnType("INTEGER") + .HasColumnName("priority"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_job"); + + b.HasIndex("ProfileId") + .HasDatabaseName("IX_job_profile_id"); + + b.HasIndex("ProfileId", "JobName") + .IsUnique(); + + b.HasIndex(new[] { "ProfileId" }, "IX_job_one_high_priority") + .IsUnique() + .HasFilter("priority = 3"); + + b.ToTable("job", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("player_id"); + + b.Property("FirstSeenTime") + .HasColumnType("TEXT") + .HasColumnName("first_seen_time"); + + b.Property("LastReadRules") + .HasColumnType("TEXT") + .HasColumnName("last_read_rules"); + + b.Property("LastSeenAddress") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_seen_address"); + + b.Property("LastSeenHWId") + .HasColumnType("BLOB") + .HasColumnName("last_seen_hwid"); + + b.Property("LastSeenTime") + .HasColumnType("TEXT") + .HasColumnName("last_seen_time"); + + b.Property("LastSeenUserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_seen_user_name"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_player"); + + b.HasAlternateKey("UserId") + .HasName("ak_player_user_id"); + + b.HasIndex("LastSeenUserName"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.PlayTime", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("play_time_id"); + + b.Property("PlayerId") + .HasColumnType("TEXT") + .HasColumnName("player_id"); + + b.Property("TimeSpent") + .HasColumnType("TEXT") + .HasColumnName("time_spent"); + + b.Property("Tracker") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("tracker"); + + b.HasKey("Id") + .HasName("PK_play_time"); + + b.HasIndex("PlayerId", "Tracker") + .IsUnique(); + + b.ToTable("play_time", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("preference_id"); + + b.Property("AdminOOCColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("admin_ooc_color"); + + b.Property("SelectedCharacterSlot") + .HasColumnType("INTEGER") + .HasColumnName("selected_character_slot"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_preference"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("preference", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("Age") + .HasColumnType("INTEGER") + .HasColumnName("age"); + + b.Property("Backpack") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("backpack"); + + b.Property("CharacterName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("char_name"); + + b.Property("Clothing") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("clothing"); + + b.Property("EyeColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("eye_color"); + + b.Property("FacialHairColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("facial_hair_color"); + + b.Property("FacialHairName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("facial_hair_name"); + + b.Property("FlavorText") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flavor_text"); + + b.Property("Gender") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("gender"); + + b.Property("HairColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("hair_color"); + + b.Property("HairName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("hair_name"); + + b.Property("Markings") + .HasColumnType("jsonb") + .HasColumnName("markings"); + + b.Property("PreferenceId") + .HasColumnType("INTEGER") + .HasColumnName("preference_id"); + + b.Property("PreferenceUnavailable") + .HasColumnType("INTEGER") + .HasColumnName("pref_unavailable"); + + b.Property("Sex") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("sex"); + + b.Property("SkinColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("skin_color"); + + b.Property("Slot") + .HasColumnType("INTEGER") + .HasColumnName("slot"); + + b.Property("Species") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("species"); + + b.Property("Voice") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("voice"); + + b.HasKey("Id") + .HasName("PK_profile"); + + b.HasIndex("PreferenceId") + .HasDatabaseName("IX_profile_preference_id"); + + b.HasIndex("Slot", "PreferenceId") + .IsUnique(); + + b.ToTable("profile", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("ServerId") + .HasColumnType("INTEGER") + .HasColumnName("server_id"); + + b.HasKey("Id") + .HasName("PK_round"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_round_server_id"); + + b.ToTable("round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_id"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_server"); + + b.ToTable("server", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_ban_id"); + + b.Property("Address") + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("TEXT") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_server_ban"); + + b.HasIndex("Address"); + + b.HasIndex("UserId"); + + b.ToTable("server_ban", (string)null); + + b.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_ban_hit_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("ConnectionId") + .HasColumnType("INTEGER") + .HasColumnName("connection_id"); + + b.HasKey("Id") + .HasName("PK_server_ban_hit"); + + b.HasIndex("BanId") + .HasDatabaseName("IX_server_ban_hit_ban_id"); + + b.HasIndex("ConnectionId") + .HasDatabaseName("IX_server_ban_hit_connection_id"); + + b.ToTable("server_ban_hit", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_role_ban_id"); + + b.Property("Address") + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("TEXT") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("role_id"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_server_role_ban"); + + b.HasIndex("Address"); + + b.HasIndex("UserId"); + + b.ToTable("server_role_ban", (string)null); + + b.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("role_unban_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("TEXT") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_role_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_role_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("unban_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("TEXT") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Sponsor", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("AllowedMarkings") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("allowed_markings"); + + b.Property("ExpireDate") + .HasColumnType("TEXT") + .HasColumnName("expire_date"); + + b.Property("ExtraSlots") + .HasColumnType("INTEGER") + .HasColumnName("extra_slots"); + + b.Property("HavePriorityJoin") + .HasColumnType("INTEGER") + .HasColumnName("have_priority_join"); + + b.Property("OOCColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("ooccolor"); + + b.Property("Tier") + .HasColumnType("INTEGER") + .HasColumnName("tier"); + + b.HasKey("UserId") + .HasName("PK_sponsors"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("sponsors", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("trait_id"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("TraitName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("trait_name"); + + b.HasKey("Id") + .HasName("PK_trait"); + + b.HasIndex("ProfileId", "TraitName") + .IsUnique(); + + b.ToTable("trait", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.UploadedResourceLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("uploaded_resource_log_id"); + + b.Property("Data") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("data"); + + b.Property("Date") + .HasColumnType("TEXT") + .HasColumnName("date"); + + b.Property("Path") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("path"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_uploaded_resource_log"); + + b.ToTable("uploaded_resource_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Whitelist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_whitelist"); + + b.ToTable("whitelist", (string)null); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.Property("PlayersId") + .HasColumnType("INTEGER") + .HasColumnName("players_id"); + + b.Property("RoundsId") + .HasColumnType("INTEGER") + .HasColumnName("rounds_id"); + + b.HasKey("PlayersId", "RoundsId") + .HasName("PK_player_round"); + + b.HasIndex("RoundsId") + .HasDatabaseName("IX_player_round_rounds_id"); + + b.ToTable("player_round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.HasOne("Content.Server.Database.AdminRank", "AdminRank") + .WithMany("Admins") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_admin_rank_admin_rank_id"); + + b.Navigation("AdminRank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.HasOne("Content.Server.Database.Admin", "Admin") + .WithMany("Flags") + .HasForeignKey("AdminId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_flag_admin_admin_id"); + + b.Navigation("Admin"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany("AdminLogs") + .HasForeignKey("RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_round_round_id"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogEntity", b => + { + b.HasOne("Content.Server.Database.AdminLog", null) + .WithMany("Entities") + .HasForeignKey("AdminLogId", "AdminLogRoundId") + .HasConstraintName("FK_admin_log_entity_admin_log_admin_log_id_admin_log_round_id"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminLogs") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_player_player_user_id"); + + b.HasOne("Content.Server.Database.AdminLog", "Log") + .WithMany("Players") + .HasForeignKey("LogId", "RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_admin_log_log_id_round_id"); + + b.Navigation("Log"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminNotesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_notes_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminNotesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .HasConstraintName("FK_admin_notes_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminNotesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_notes_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminNotesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_notes_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_notes_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.HasOne("Content.Server.Database.AdminRank", "Rank") + .WithMany("Flags") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_rank_flag_admin_rank_admin_rank_id"); + + b.Navigation("Rank"); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Antags") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_antag_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Jobs") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_job_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.HasOne("Content.Server.Database.Preference", "Preference") + .WithMany("Profiles") + .HasForeignKey("PreferenceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_preference_preference_id"); + + b.Navigation("Preference"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("Rounds") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_round_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithMany("BanHits") + .HasForeignKey("BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_server_ban_ban_id"); + + b.HasOne("Content.Server.Database.ConnectionLog", "Connection") + .WithMany("BanHits") + .HasForeignKey("ConnectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_connection_log_connection_id"); + + b.Navigation("Ban"); + + b.Navigation("Connection"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.HasOne("Content.Server.Database.ServerRoleBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerRoleUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_role_unban_server_role_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_unban_server_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Traits") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_trait_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.HasOne("Content.Server.Database.Player", null) + .WithMany() + .HasForeignKey("PlayersId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_player_players_id"); + + b.HasOne("Content.Server.Database.Round", null) + .WithMany() + .HasForeignKey("RoundsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_round_rounds_id"); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Navigation("Entities"); + + b.Navigation("Players"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Navigation("Admins"); + + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Navigation("BanHits"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Navigation("AdminLogs"); + + b.Navigation("AdminNotesCreated"); + + b.Navigation("AdminNotesDeleted"); + + b.Navigation("AdminNotesLastEdited"); + + b.Navigation("AdminNotesReceived"); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Navigation("Profiles"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Navigation("Antags"); + + b.Navigation("Jobs"); + + b.Navigation("Traits"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Navigation("AdminLogs"); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Navigation("Rounds"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Navigation("BanHits"); + + b.Navigation("Unban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Navigation("Unban"); + }); +#pragma warning restore 612, 618 + } + } +} +#endif diff --git a/Content.Server.Database/Migrations/Sqlite/20221128142316_Sponsors.cs b/Content.Server.Database/Migrations/Sqlite/20221128142316_Sponsors.cs new file mode 100644 index 0000000000..7617105f64 --- /dev/null +++ b/Content.Server.Database/Migrations/Sqlite/20221128142316_Sponsors.cs @@ -0,0 +1,45 @@ +#if LPP_Sponsors +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Content.Server.Database.Migrations.Sqlite // _LostParadise-Sponsors +{ + public partial class Sponsors : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "sponsors", + columns: table => new + { + user_id = table.Column(type: "TEXT", nullable: false), + tier = table.Column(type: "INTEGER", nullable: false), + ooccolor = table.Column(type: "TEXT", nullable: false), + have_priority_join = table.Column(type: "INTEGER", nullable: false), + allowed_markings = table.Column(type: "TEXT", nullable: false), + expire_date = table.Column(type: "TEXT", nullable: false), + extra_slots = table.Column(type: "INTEGER", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_sponsors", x => x.user_id); + }); + + migrationBuilder.CreateIndex( + name: "IX_sponsors_user_id", + table: "sponsors", + column: "user_id", + unique: true); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "sponsors"); + + } + } +} +#endif diff --git a/Content.Server.Database/Migrations/Sqlite/20221202112556_Sponsor-AllowJob.Designer.cs b/Content.Server.Database/Migrations/Sqlite/20221202112556_Sponsor-AllowJob.Designer.cs new file mode 100644 index 0000000000..43165c75be --- /dev/null +++ b/Content.Server.Database/Migrations/Sqlite/20221202112556_Sponsor-AllowJob.Designer.cs @@ -0,0 +1,1320 @@ +// +#if LPP_Sponsors +using System; +using Content.Server.Database; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace Content.Server.Database.Migrations.Sqlite // _LostParadise-Sponsors +{ + [DbContext(typeof(SqliteServerDbContext))] + [Migration("20221202112556_Sponsor-AllowJob")] + partial class SponsorAllowJob + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "6.0.5"); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("AdminRankId") + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Title") + .HasColumnType("TEXT") + .HasColumnName("title"); + + b.HasKey("UserId") + .HasName("PK_admin"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_admin_rank_id"); + + b.ToTable("admin", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_flag_id"); + + b.Property("AdminId") + .HasColumnType("TEXT") + .HasColumnName("admin_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flag"); + + b.Property("Negative") + .HasColumnType("INTEGER") + .HasColumnName("negative"); + + b.HasKey("Id") + .HasName("PK_admin_flag"); + + b.HasIndex("AdminId") + .HasDatabaseName("IX_admin_flag_admin_id"); + + b.HasIndex("Flag", "AdminId") + .IsUnique(); + + b.ToTable("admin_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_log_id"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Date") + .HasColumnType("TEXT") + .HasColumnName("date"); + + b.Property("Impact") + .HasColumnType("INTEGER") + .HasColumnName("impact"); + + b.Property("Json") + .IsRequired() + .HasColumnType("jsonb") + .HasColumnName("json"); + + b.Property("Message") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("Type") + .HasColumnType("INTEGER") + .HasColumnName("type"); + + b.HasKey("Id", "RoundId") + .HasName("PK_admin_log"); + + b.HasIndex("Date"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_log_round_id"); + + b.HasIndex("Type") + .HasDatabaseName("IX_admin_log_type"); + + b.ToTable("admin_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogEntity", b => + { + b.Property("Uid") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("uid"); + + b.Property("AdminLogId") + .HasColumnType("INTEGER") + .HasColumnName("admin_log_id"); + + b.Property("AdminLogRoundId") + .HasColumnType("INTEGER") + .HasColumnName("admin_log_round_id"); + + b.Property("Name") + .HasColumnType("TEXT") + .HasColumnName("name"); + + b.HasKey("Uid") + .HasName("PK_admin_log_entity"); + + b.HasIndex("AdminLogId", "AdminLogRoundId") + .HasDatabaseName("IX_admin_log_entity_admin_log_id_admin_log_round_id"); + + b.ToTable("admin_log_entity", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("LogId") + .HasColumnType("INTEGER") + .HasColumnName("log_id"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.HasKey("PlayerUserId", "LogId", "RoundId") + .HasName("PK_admin_log_player"); + + b.HasIndex("LogId", "RoundId"); + + b.ToTable("admin_log_player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_notes_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("ShownToPlayer") + .HasColumnType("INTEGER") + .HasColumnName("shown_to_player"); + + b.HasKey("Id") + .HasName("PK_admin_notes"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_notes_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_notes_round_id"); + + b.ToTable("admin_notes", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_admin_rank"); + + b.ToTable("admin_rank", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_flag_id"); + + b.Property("AdminRankId") + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flag"); + + b.HasKey("Id") + .HasName("PK_admin_rank_flag"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_rank_flag_admin_rank_id"); + + b.HasIndex("Flag", "AdminRankId") + .IsUnique(); + + b.ToTable("admin_rank_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("antag_id"); + + b.Property("AntagName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("antag_name"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_antag"); + + b.HasIndex("ProfileId", "AntagName") + .IsUnique(); + + b.ToTable("antag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AssignedUserId", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("assigned_user_id_id"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_assigned_user_id"); + + b.HasIndex("UserId") + .IsUnique(); + + b.HasIndex("UserName") + .IsUnique(); + + b.ToTable("assigned_user_id", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("connection_log_id"); + + b.Property("Address") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("Denied") + .HasColumnType("INTEGER") + .HasColumnName("denied"); + + b.Property("HWId") + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b.Property("Time") + .HasColumnType("TEXT") + .HasColumnName("time"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_connection_log"); + + b.HasIndex("UserId"); + + b.ToTable("connection_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("job_id"); + + b.Property("JobName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("job_name"); + + b.Property("Priority") + .HasColumnType("INTEGER") + .HasColumnName("priority"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_job"); + + b.HasIndex("ProfileId") + .HasDatabaseName("IX_job_profile_id"); + + b.HasIndex("ProfileId", "JobName") + .IsUnique(); + + b.HasIndex(new[] { "ProfileId" }, "IX_job_one_high_priority") + .IsUnique() + .HasFilter("priority = 3"); + + b.ToTable("job", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("player_id"); + + b.Property("FirstSeenTime") + .HasColumnType("TEXT") + .HasColumnName("first_seen_time"); + + b.Property("LastReadRules") + .HasColumnType("TEXT") + .HasColumnName("last_read_rules"); + + b.Property("LastSeenAddress") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_seen_address"); + + b.Property("LastSeenHWId") + .HasColumnType("BLOB") + .HasColumnName("last_seen_hwid"); + + b.Property("LastSeenTime") + .HasColumnType("TEXT") + .HasColumnName("last_seen_time"); + + b.Property("LastSeenUserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_seen_user_name"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_player"); + + b.HasAlternateKey("UserId") + .HasName("ak_player_user_id"); + + b.HasIndex("LastSeenUserName"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.PlayTime", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("play_time_id"); + + b.Property("PlayerId") + .HasColumnType("TEXT") + .HasColumnName("player_id"); + + b.Property("TimeSpent") + .HasColumnType("TEXT") + .HasColumnName("time_spent"); + + b.Property("Tracker") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("tracker"); + + b.HasKey("Id") + .HasName("PK_play_time"); + + b.HasIndex("PlayerId", "Tracker") + .IsUnique(); + + b.ToTable("play_time", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("preference_id"); + + b.Property("AdminOOCColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("admin_ooc_color"); + + b.Property("SelectedCharacterSlot") + .HasColumnType("INTEGER") + .HasColumnName("selected_character_slot"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_preference"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("preference", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("Age") + .HasColumnType("INTEGER") + .HasColumnName("age"); + + b.Property("Backpack") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("backpack"); + + b.Property("CharacterName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("char_name"); + + b.Property("Clothing") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("clothing"); + + b.Property("EyeColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("eye_color"); + + b.Property("FacialHairColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("facial_hair_color"); + + b.Property("FacialHairName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("facial_hair_name"); + + b.Property("FlavorText") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flavor_text"); + + b.Property("Gender") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("gender"); + + b.Property("HairColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("hair_color"); + + b.Property("HairName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("hair_name"); + + b.Property("Markings") + .HasColumnType("jsonb") + .HasColumnName("markings"); + + b.Property("PreferenceId") + .HasColumnType("INTEGER") + .HasColumnName("preference_id"); + + b.Property("PreferenceUnavailable") + .HasColumnType("INTEGER") + .HasColumnName("pref_unavailable"); + + b.Property("Sex") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("sex"); + + b.Property("SkinColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("skin_color"); + + b.Property("Slot") + .HasColumnType("INTEGER") + .HasColumnName("slot"); + + b.Property("Species") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("species"); + + b.Property("Voice") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("voice"); + + b.HasKey("Id") + .HasName("PK_profile"); + + b.HasIndex("PreferenceId") + .HasDatabaseName("IX_profile_preference_id"); + + b.HasIndex("Slot", "PreferenceId") + .IsUnique(); + + b.ToTable("profile", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("ServerId") + .HasColumnType("INTEGER") + .HasColumnName("server_id"); + + b.HasKey("Id") + .HasName("PK_round"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_round_server_id"); + + b.ToTable("round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_id"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_server"); + + b.ToTable("server", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_ban_id"); + + b.Property("Address") + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("TEXT") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_server_ban"); + + b.HasIndex("Address"); + + b.HasIndex("UserId"); + + b.ToTable("server_ban", (string)null); + + b.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_ban_hit_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("ConnectionId") + .HasColumnType("INTEGER") + .HasColumnName("connection_id"); + + b.HasKey("Id") + .HasName("PK_server_ban_hit"); + + b.HasIndex("BanId") + .HasDatabaseName("IX_server_ban_hit_ban_id"); + + b.HasIndex("ConnectionId") + .HasDatabaseName("IX_server_ban_hit_connection_id"); + + b.ToTable("server_ban_hit", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_role_ban_id"); + + b.Property("Address") + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("TEXT") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("role_id"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_server_role_ban"); + + b.HasIndex("Address"); + + b.HasIndex("UserId"); + + b.ToTable("server_role_ban", (string)null); + + b.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("role_unban_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("TEXT") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_role_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_role_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("unban_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("TEXT") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Sponsor", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("AllowJob") + .HasColumnType("INTEGER") + .HasColumnName("allow_job"); + + b.Property("AllowedMarkings") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("allowed_markings"); + + b.Property("ExpireDate") + .HasColumnType("TEXT") + .HasColumnName("expire_date"); + + b.Property("ExtraSlots") + .HasColumnType("INTEGER") + .HasColumnName("extra_slots"); + + b.Property("HavePriorityJoin") + .HasColumnType("INTEGER") + .HasColumnName("have_priority_join"); + + b.Property("OOCColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("ooccolor"); + + b.Property("Tier") + .HasColumnType("INTEGER") + .HasColumnName("tier"); + + b.HasKey("UserId") + .HasName("PK_sponsors"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("sponsors", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("trait_id"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("TraitName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("trait_name"); + + b.HasKey("Id") + .HasName("PK_trait"); + + b.HasIndex("ProfileId", "TraitName") + .IsUnique(); + + b.ToTable("trait", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.UploadedResourceLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("uploaded_resource_log_id"); + + b.Property("Data") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("data"); + + b.Property("Date") + .HasColumnType("TEXT") + .HasColumnName("date"); + + b.Property("Path") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("path"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_uploaded_resource_log"); + + b.ToTable("uploaded_resource_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Whitelist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_whitelist"); + + b.ToTable("whitelist", (string)null); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.Property("PlayersId") + .HasColumnType("INTEGER") + .HasColumnName("players_id"); + + b.Property("RoundsId") + .HasColumnType("INTEGER") + .HasColumnName("rounds_id"); + + b.HasKey("PlayersId", "RoundsId") + .HasName("PK_player_round"); + + b.HasIndex("RoundsId") + .HasDatabaseName("IX_player_round_rounds_id"); + + b.ToTable("player_round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.HasOne("Content.Server.Database.AdminRank", "AdminRank") + .WithMany("Admins") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_admin_rank_admin_rank_id"); + + b.Navigation("AdminRank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.HasOne("Content.Server.Database.Admin", "Admin") + .WithMany("Flags") + .HasForeignKey("AdminId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_flag_admin_admin_id"); + + b.Navigation("Admin"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany("AdminLogs") + .HasForeignKey("RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_round_round_id"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogEntity", b => + { + b.HasOne("Content.Server.Database.AdminLog", null) + .WithMany("Entities") + .HasForeignKey("AdminLogId", "AdminLogRoundId") + .HasConstraintName("FK_admin_log_entity_admin_log_admin_log_id_admin_log_round_id"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminLogs") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_player_player_user_id"); + + b.HasOne("Content.Server.Database.AdminLog", "Log") + .WithMany("Players") + .HasForeignKey("LogId", "RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_admin_log_log_id_round_id"); + + b.Navigation("Log"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminNotesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_notes_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminNotesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .HasConstraintName("FK_admin_notes_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminNotesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_notes_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminNotesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_notes_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_notes_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.HasOne("Content.Server.Database.AdminRank", "Rank") + .WithMany("Flags") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_rank_flag_admin_rank_admin_rank_id"); + + b.Navigation("Rank"); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Antags") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_antag_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Jobs") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_job_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.HasOne("Content.Server.Database.Preference", "Preference") + .WithMany("Profiles") + .HasForeignKey("PreferenceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_preference_preference_id"); + + b.Navigation("Preference"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("Rounds") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_round_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithMany("BanHits") + .HasForeignKey("BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_server_ban_ban_id"); + + b.HasOne("Content.Server.Database.ConnectionLog", "Connection") + .WithMany("BanHits") + .HasForeignKey("ConnectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_connection_log_connection_id"); + + b.Navigation("Ban"); + + b.Navigation("Connection"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.HasOne("Content.Server.Database.ServerRoleBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerRoleUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_role_unban_server_role_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_unban_server_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Traits") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_trait_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.HasOne("Content.Server.Database.Player", null) + .WithMany() + .HasForeignKey("PlayersId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_player_players_id"); + + b.HasOne("Content.Server.Database.Round", null) + .WithMany() + .HasForeignKey("RoundsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_round_rounds_id"); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Navigation("Entities"); + + b.Navigation("Players"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Navigation("Admins"); + + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Navigation("BanHits"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Navigation("AdminLogs"); + + b.Navigation("AdminNotesCreated"); + + b.Navigation("AdminNotesDeleted"); + + b.Navigation("AdminNotesLastEdited"); + + b.Navigation("AdminNotesReceived"); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Navigation("Profiles"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Navigation("Antags"); + + b.Navigation("Jobs"); + + b.Navigation("Traits"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Navigation("AdminLogs"); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Navigation("Rounds"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Navigation("BanHits"); + + b.Navigation("Unban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Navigation("Unban"); + }); +#pragma warning restore 612, 618 + } + } +} +#endif diff --git a/Content.Server.Database/Migrations/Sqlite/20221202112556_Sponsor-AllowJob.cs b/Content.Server.Database/Migrations/Sqlite/20221202112556_Sponsor-AllowJob.cs new file mode 100644 index 0000000000..1d4bd3702d --- /dev/null +++ b/Content.Server.Database/Migrations/Sqlite/20221202112556_Sponsor-AllowJob.cs @@ -0,0 +1,28 @@ +#if LPP_Sponsors +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Content.Server.Database.Migrations.Sqlite // _LostParadise-Sponsors +{ + public partial class SponsorAllowJob : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "allow_job", + table: "sponsors", + type: "INTEGER", + nullable: false, + defaultValue: false); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "allow_job", + table: "sponsors"); + } + } +} +#endif diff --git a/Content.Server.Database/Migrations/Sqlite/20240422101522_Donate.Designer.cs b/Content.Server.Database/Migrations/Sqlite/20240422101522_Donate.Designer.cs new file mode 100644 index 0000000000..72252d114f --- /dev/null +++ b/Content.Server.Database/Migrations/Sqlite/20240422101522_Donate.Designer.cs @@ -0,0 +1,1848 @@ +// +#if LPP_Sponsors +using System; +using Content.Server.Database; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace Content.Server.Database.Migrations.Sqlite +{ + [DbContext(typeof(SqliteServerDbContext))] + [Migration("20240422101522_Donate")] + partial class Donate + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "8.0.0"); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("AdminRankId") + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Title") + .HasColumnType("TEXT") + .HasColumnName("title"); + + b.HasKey("UserId") + .HasName("PK_admin"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_admin_rank_id"); + + b.ToTable("admin", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_flag_id"); + + b.Property("AdminId") + .HasColumnType("TEXT") + .HasColumnName("admin_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flag"); + + b.Property("Negative") + .HasColumnType("INTEGER") + .HasColumnName("negative"); + + b.HasKey("Id") + .HasName("PK_admin_flag"); + + b.HasIndex("AdminId") + .HasDatabaseName("IX_admin_flag_admin_id"); + + b.HasIndex("Flag", "AdminId") + .IsUnique(); + + b.ToTable("admin_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Id") + .HasColumnType("INTEGER") + .HasColumnName("admin_log_id"); + + b.Property("Date") + .HasColumnType("TEXT") + .HasColumnName("date"); + + b.Property("Impact") + .HasColumnType("INTEGER") + .HasColumnName("impact"); + + b.Property("Json") + .IsRequired() + .HasColumnType("jsonb") + .HasColumnName("json"); + + b.Property("Message") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("Type") + .HasColumnType("INTEGER") + .HasColumnName("type"); + + b.HasKey("RoundId", "Id") + .HasName("PK_admin_log"); + + b.HasIndex("Date"); + + b.HasIndex("Type") + .HasDatabaseName("IX_admin_log_type"); + + b.ToTable("admin_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("LogId") + .HasColumnType("INTEGER") + .HasColumnName("log_id"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.HasKey("RoundId", "LogId", "PlayerUserId") + .HasName("PK_admin_log_player"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_log_player_player_user_id"); + + b.ToTable("admin_log_player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_messages_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("Dismissed") + .HasColumnType("INTEGER") + .HasColumnName("dismissed"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Seen") + .HasColumnType("INTEGER") + .HasColumnName("seen"); + + b.HasKey("Id") + .HasName("PK_admin_messages"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_messages_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_messages_round_id"); + + b.ToTable("admin_messages", null, t => + { + t.HasCheckConstraint("NotDismissedAndSeen", "NOT dismissed OR seen"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_notes_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Secret") + .HasColumnType("INTEGER") + .HasColumnName("secret"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_admin_notes"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_notes_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_notes_round_id"); + + b.ToTable("admin_notes", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_admin_rank"); + + b.ToTable("admin_rank", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_flag_id"); + + b.Property("AdminRankId") + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flag"); + + b.HasKey("Id") + .HasName("PK_admin_rank_flag"); + + b.HasIndex("AdminRankId"); + + b.HasIndex("Flag", "AdminRankId") + .IsUnique(); + + b.ToTable("admin_rank_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_watchlists_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.HasKey("Id") + .HasName("PK_admin_watchlists"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_watchlists_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_watchlists_round_id"); + + b.ToTable("admin_watchlists", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("antag_id"); + + b.Property("AntagName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("antag_name"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_antag"); + + b.HasIndex("ProfileId", "AntagName") + .IsUnique(); + + b.ToTable("antag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AssignedUserId", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("assigned_user_id_id"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_assigned_user_id"); + + b.HasIndex("UserId") + .IsUnique(); + + b.HasIndex("UserName") + .IsUnique(); + + b.ToTable("assigned_user_id", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("connection_log_id"); + + b.Property("Address") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("Denied") + .HasColumnType("INTEGER") + .HasColumnName("denied"); + + b.Property("HWId") + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b.Property("ServerId") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0) + .HasColumnName("server_id"); + + b.Property("Time") + .HasColumnType("TEXT") + .HasColumnName("time"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_connection_log"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_connection_log_server_id"); + + b.HasIndex("UserId"); + + b.ToTable("connection_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Donate", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("donate_id"); + + b.Property("DonateName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("donate_name"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_donate"); + + b.HasIndex("ProfileId", "DonateName") + .IsUnique(); + + b.ToTable("donate", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("job_id"); + + b.Property("JobName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("job_name"); + + b.Property("Priority") + .HasColumnType("INTEGER") + .HasColumnName("priority"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_job"); + + b.HasIndex("ProfileId"); + + b.HasIndex("ProfileId", "JobName") + .IsUnique(); + + b.HasIndex(new[] { "ProfileId" }, "IX_job_one_high_priority") + .IsUnique() + .HasFilter("priority = 3"); + + b.ToTable("job", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.PlayTime", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("play_time_id"); + + b.Property("PlayerId") + .HasColumnType("TEXT") + .HasColumnName("player_id"); + + b.Property("TimeSpent") + .HasColumnType("TEXT") + .HasColumnName("time_spent"); + + b.Property("Tracker") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("tracker"); + + b.HasKey("Id") + .HasName("PK_play_time"); + + b.HasIndex("PlayerId", "Tracker") + .IsUnique(); + + b.ToTable("play_time", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("player_id"); + + b.Property("FirstSeenTime") + .HasColumnType("TEXT") + .HasColumnName("first_seen_time"); + + b.Property("LastReadRules") + .HasColumnType("TEXT") + .HasColumnName("last_read_rules"); + + b.Property("LastSeenAddress") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_seen_address"); + + b.Property("LastSeenHWId") + .HasColumnType("BLOB") + .HasColumnName("last_seen_hwid"); + + b.Property("LastSeenTime") + .HasColumnType("TEXT") + .HasColumnName("last_seen_time"); + + b.Property("LastSeenUserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_seen_user_name"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_player"); + + b.HasAlternateKey("UserId") + .HasName("ak_player_user_id"); + + b.HasIndex("LastSeenUserName"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("preference_id"); + + b.Property("AdminOOCColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("admin_ooc_color"); + + b.Property("SelectedCharacterSlot") + .HasColumnType("INTEGER") + .HasColumnName("selected_character_slot"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_preference"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("preference", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("Age") + .HasColumnType("INTEGER") + .HasColumnName("age"); + + b.Property("CharacterName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("char_name"); + + b.Property("EyeColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("eye_color"); + + b.Property("FacialHairColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("facial_hair_color"); + + b.Property("FacialHairName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("facial_hair_name"); + + b.Property("FlavorText") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flavor_text"); + + b.Property("Gender") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("gender"); + + b.Property("HairColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("hair_color"); + + b.Property("HairName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("hair_name"); + + b.Property("Markings") + .HasColumnType("jsonb") + .HasColumnName("markings"); + + b.Property("PreferenceId") + .HasColumnType("INTEGER") + .HasColumnName("preference_id"); + + b.Property("PreferenceUnavailable") + .HasColumnType("INTEGER") + .HasColumnName("pref_unavailable"); + + b.Property("Sex") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("sex"); + + b.Property("SkinColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("skin_color"); + + b.Property("Slot") + .HasColumnType("INTEGER") + .HasColumnName("slot"); + + b.Property("SpawnPriority") + .HasColumnType("INTEGER") + .HasColumnName("spawn_priority"); + + b.Property("Species") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("species"); + + b.HasKey("Id") + .HasName("PK_profile"); + + b.HasIndex("PreferenceId") + .HasDatabaseName("IX_profile_preference_id"); + + b.HasIndex("Slot", "PreferenceId") + .IsUnique(); + + b.ToTable("profile", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadout", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_loadout_id"); + + b.Property("LoadoutName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("loadout_name"); + + b.Property("ProfileLoadoutGroupId") + .HasColumnType("INTEGER") + .HasColumnName("profile_loadout_group_id"); + + b.HasKey("Id") + .HasName("PK_profile_loadout"); + + b.HasIndex("ProfileLoadoutGroupId"); + + b.ToTable("profile_loadout", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_loadout_group_id"); + + b.Property("GroupName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("group_name"); + + b.Property("ProfileRoleLoadoutId") + .HasColumnType("INTEGER") + .HasColumnName("profile_role_loadout_id"); + + b.HasKey("Id") + .HasName("PK_profile_loadout_group"); + + b.HasIndex("ProfileRoleLoadoutId"); + + b.ToTable("profile_loadout_group", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_role_loadout_id"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("RoleName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("role_name"); + + b.HasKey("Id") + .HasName("PK_profile_role_loadout"); + + b.HasIndex("ProfileId"); + + b.ToTable("profile_role_loadout", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("ServerId") + .HasColumnType("INTEGER") + .HasColumnName("server_id"); + + b.Property("StartDate") + .HasColumnType("TEXT") + .HasColumnName("start_date"); + + b.HasKey("Id") + .HasName("PK_round"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_round_server_id"); + + b.HasIndex("StartDate"); + + b.ToTable("round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_id"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_server"); + + b.ToTable("server", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_ban_id"); + + b.Property("Address") + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("AutoDelete") + .HasColumnType("INTEGER") + .HasColumnName("auto_delete"); + + b.Property("BanTime") + .HasColumnType("TEXT") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("banning_admin"); + + b.Property("ExemptFlags") + .HasColumnType("INTEGER") + .HasColumnName("exempt_flags"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b.Property("Hidden") + .HasColumnType("INTEGER") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_ban_round_id"); + + b.ToTable("server_ban", null, t => + { + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanExemption", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("Flags") + .HasColumnType("INTEGER") + .HasColumnName("flags"); + + b.HasKey("UserId") + .HasName("PK_server_ban_exemption"); + + b.ToTable("server_ban_exemption", null, t => + { + t.HasCheckConstraint("FlagsNotZero", "flags != 0"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_ban_hit_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("ConnectionId") + .HasColumnType("INTEGER") + .HasColumnName("connection_id"); + + b.HasKey("Id") + .HasName("PK_server_ban_hit"); + + b.HasIndex("BanId") + .HasDatabaseName("IX_server_ban_hit_ban_id"); + + b.HasIndex("ConnectionId") + .HasDatabaseName("IX_server_ban_hit_connection_id"); + + b.ToTable("server_ban_hit", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_role_ban_id"); + + b.Property("Address") + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("TEXT") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b.Property("Hidden") + .HasColumnType("INTEGER") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("role_id"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_role_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_role_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_role_ban_round_id"); + + b.ToTable("server_role_ban", null, t => + { + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("role_unban_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("TEXT") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_role_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_role_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("unban_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("TEXT") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("trait_id"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("TraitName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("trait_name"); + + b.HasKey("Id") + .HasName("PK_trait"); + + b.HasIndex("ProfileId", "TraitName") + .IsUnique(); + + b.ToTable("trait", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.UploadedResourceLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("uploaded_resource_log_id"); + + b.Property("Data") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("data"); + + b.Property("Date") + .HasColumnType("TEXT") + .HasColumnName("date"); + + b.Property("Path") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("path"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_uploaded_resource_log"); + + b.ToTable("uploaded_resource_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Whitelist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_whitelist"); + + b.ToTable("whitelist", (string)null); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.Property("PlayersId") + .HasColumnType("INTEGER") + .HasColumnName("players_id"); + + b.Property("RoundsId") + .HasColumnType("INTEGER") + .HasColumnName("rounds_id"); + + b.HasKey("PlayersId", "RoundsId") + .HasName("PK_player_round"); + + b.HasIndex("RoundsId") + .HasDatabaseName("IX_player_round_rounds_id"); + + b.ToTable("player_round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.HasOne("Content.Server.Database.AdminRank", "AdminRank") + .WithMany("Admins") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_admin_rank_admin_rank_id"); + + b.Navigation("AdminRank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.HasOne("Content.Server.Database.Admin", "Admin") + .WithMany("Flags") + .HasForeignKey("AdminId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_flag_admin_admin_id"); + + b.Navigation("Admin"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany("AdminLogs") + .HasForeignKey("RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_round_round_id"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminLogs") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_player_player_user_id"); + + b.HasOne("Content.Server.Database.AdminLog", "Log") + .WithMany("Players") + .HasForeignKey("RoundId", "LogId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_admin_log_round_id_log_id"); + + b.Navigation("Log"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminMessagesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminMessagesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminMessagesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminMessagesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_messages_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_messages_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminNotesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminNotesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminNotesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminNotesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_notes_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_notes_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.HasOne("Content.Server.Database.AdminRank", "Rank") + .WithMany("Flags") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_rank_flag_admin_rank_admin_rank_id"); + + b.Navigation("Rank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminWatchlistsCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminWatchlistsDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminWatchlistsLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminWatchlistsReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_watchlists_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_watchlists_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Antags") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_antag_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("ConnectionLogs") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.SetNull) + .IsRequired() + .HasConstraintName("FK_connection_log_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.Donate", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Donate") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_donate_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Jobs") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_job_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.HasOne("Content.Server.Database.Preference", "Preference") + .WithMany("Profiles") + .HasForeignKey("PreferenceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_preference_preference_id"); + + b.Navigation("Preference"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadout", b => + { + b.HasOne("Content.Server.Database.ProfileLoadoutGroup", "ProfileLoadoutGroup") + .WithMany("Loadouts") + .HasForeignKey("ProfileLoadoutGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_loadout_profile_loadout_group_profile_loadout_group_id"); + + b.Navigation("ProfileLoadoutGroup"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.HasOne("Content.Server.Database.ProfileRoleLoadout", "ProfileRoleLoadout") + .WithMany("Groups") + .HasForeignKey("ProfileRoleLoadoutId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_loadout_group_profile_role_loadout_profile_role_loadout_id"); + + b.Navigation("ProfileRoleLoadout"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Loadouts") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_role_loadout_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("Rounds") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_round_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_ban_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithMany("BanHits") + .HasForeignKey("BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_server_ban_ban_id"); + + b.HasOne("Content.Server.Database.ConnectionLog", "Connection") + .WithMany("BanHits") + .HasForeignKey("ConnectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_connection_log_connection_id"); + + b.Navigation("Ban"); + + b.Navigation("Connection"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerRoleBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerRoleBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_role_ban_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.HasOne("Content.Server.Database.ServerRoleBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerRoleUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_role_unban_server_role_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_unban_server_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Traits") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_trait_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.HasOne("Content.Server.Database.Player", null) + .WithMany() + .HasForeignKey("PlayersId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_player_players_id"); + + b.HasOne("Content.Server.Database.Round", null) + .WithMany() + .HasForeignKey("RoundsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_round_rounds_id"); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Navigation("Players"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Navigation("Admins"); + + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Navigation("BanHits"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Navigation("AdminLogs"); + + b.Navigation("AdminMessagesCreated"); + + b.Navigation("AdminMessagesDeleted"); + + b.Navigation("AdminMessagesLastEdited"); + + b.Navigation("AdminMessagesReceived"); + + b.Navigation("AdminNotesCreated"); + + b.Navigation("AdminNotesDeleted"); + + b.Navigation("AdminNotesLastEdited"); + + b.Navigation("AdminNotesReceived"); + + b.Navigation("AdminServerBansCreated"); + + b.Navigation("AdminServerBansLastEdited"); + + b.Navigation("AdminServerRoleBansCreated"); + + b.Navigation("AdminServerRoleBansLastEdited"); + + b.Navigation("AdminWatchlistsCreated"); + + b.Navigation("AdminWatchlistsDeleted"); + + b.Navigation("AdminWatchlistsLastEdited"); + + b.Navigation("AdminWatchlistsReceived"); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Navigation("Profiles"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Navigation("Antags"); + + b.Navigation("Donate"); + + b.Navigation("Jobs"); + + b.Navigation("Loadouts"); + + b.Navigation("Traits"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.Navigation("Loadouts"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.Navigation("Groups"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Navigation("AdminLogs"); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Navigation("ConnectionLogs"); + + b.Navigation("Rounds"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Navigation("BanHits"); + + b.Navigation("Unban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Navigation("Unban"); + }); +#pragma warning restore 612, 618 + } + } +} +#endif diff --git a/Content.Server.Database/Migrations/Sqlite/20240422101522_Donate.cs b/Content.Server.Database/Migrations/Sqlite/20240422101522_Donate.cs new file mode 100644 index 0000000000..d06eee2403 --- /dev/null +++ b/Content.Server.Database/Migrations/Sqlite/20240422101522_Donate.cs @@ -0,0 +1,49 @@ +#if LPP_Sponsors +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Content.Server.Database.Migrations.Sqlite +{ + /// + public partial class Donate : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "donate", + columns: table => new + { + donate_id = table.Column(type: "INTEGER", nullable: false) + .Annotation("Sqlite:Autoincrement", true), + profile_id = table.Column(type: "INTEGER", nullable: false), + donate_name = table.Column(type: "TEXT", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_donate", x => x.donate_id); + table.ForeignKey( + name: "FK_donate_profile_profile_id", + column: x => x.profile_id, + principalTable: "profile", + principalColumn: "profile_id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateIndex( + name: "IX_donate_profile_id_donate_name", + table: "donate", + columns: new[] { "profile_id", "donate_name" }, + unique: true); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "donate"); + } + } +} +#endif diff --git a/Content.Server.Database/Model.cs b/Content.Server.Database/Model.cs index d34bb489c9..c8e1862f26 100644 --- a/Content.Server.Database/Model.cs +++ b/Content.Server.Database/Model.cs @@ -40,6 +40,9 @@ protected ServerDbContext(DbContextOptions options) : base(options) public DbSet AdminNotes { get; set; } = null!; public DbSet AdminWatchlists { get; set; } = null!; public DbSet AdminMessages { get; set; } = null!; +#if LPP_Sponsors // _LostParadise-Sponsors + public DbSet Sponsors { get; set; } = null!; +#endif protected override void OnModelCreating(ModelBuilder modelBuilder) { @@ -62,6 +65,15 @@ protected override void OnModelCreating(ModelBuilder modelBuilder) modelBuilder.Entity() .HasIndex(p => new {HumanoidProfileId = p.ProfileId, p.LoadoutName}) .IsUnique(); +#if LPP_Sponsors + modelBuilder.Entity() // _LostParadise-Sponsors + .HasIndex(p => p.UserId) + .IsUnique(); + + modelBuilder.Entity() + .HasIndex(p => new { HumanoidProfileId = p.ProfileId, p.DonateName }) + .IsUnique(); +#endif modelBuilder.Entity() .HasIndex(j => j.ProfileId); @@ -350,6 +362,9 @@ public class Profile public List Jobs { get; } = new(); public List Antags { get; } = new(); public List Traits { get; } = new(); +#if LPP_Sponsors // _LostParadise-Sponsors + public List Donate { get; } = new(); +#endif public List Loadouts { get; } = new(); [Column("pref_unavailable")] public DbPreferenceUnavailableMode PreferenceUnavailable { get; set; } @@ -395,6 +410,16 @@ public class Trait public string TraitName { get; set; } = null!; } +#if LPP_Sponsors // _LostParadise-Sponsors + public class Donate + { + public int Id { get; set; } + public Profile Profile { get; set; } = null!; + public int ProfileId { get; set; } + public string DonateName { get; set; } = null!; + } +#endif + public class Loadout { public int Id { get; set; } @@ -1025,4 +1050,19 @@ public class AdminMessage : IAdminRemarksCommon /// public bool Dismissed { get; set; } } + +#if LPP_Sponsors // _LostParadise-Sponsors + [Table("sponsors")] + public class Sponsor + { + [Required, Key] public Guid UserId { get; set; } + public int Tier { get; set; } + public string OOCColor { get; set; } = "#00FF00"; + public bool HavePriorityJoin { get; set; } + public string AllowedMarkings { get; set; } = null!; + public int ExtraSlots { get; set; } + public DateTime ExpireDate {get;set;} + public bool AllowJob { get; set; } = false; + } +#endif } diff --git a/Content.Server/Atmos/Components/AirFilterComponent.cs b/Content.Server/Atmos/Components/AirFilterComponent.cs index 6b65a646f2..a66df65557 100644 --- a/Content.Server/Atmos/Components/AirFilterComponent.cs +++ b/Content.Server/Atmos/Components/AirFilterComponent.cs @@ -1,5 +1,5 @@ using Content.Server.Atmos.EntitySystems; -using Content.Shared.Atmos; +using Content.Shared.Atmos; namespace Content.Server.Atmos.Components; diff --git a/Content.Server/Atmos/Components/AirIntakeComponent.cs b/Content.Server/Atmos/Components/AirIntakeComponent.cs index dafaed93a5..9aca3e126f 100644 --- a/Content.Server/Atmos/Components/AirIntakeComponent.cs +++ b/Content.Server/Atmos/Components/AirIntakeComponent.cs @@ -1,5 +1,5 @@ using Content.Server.Atmos.EntitySystems; -using Content.Shared.Atmos; +using Content.Shared.Atmos; namespace Content.Server.Atmos.Components; diff --git a/Content.Server/Chat/Managers/ChatManager.cs b/Content.Server/Chat/Managers/ChatManager.cs index 812aed80bd..1c097bd134 100644 --- a/Content.Server/Chat/Managers/ChatManager.cs +++ b/Content.Server/Chat/Managers/ChatManager.cs @@ -18,6 +18,9 @@ using Robust.Shared.Replays; using Robust.Shared.Timing; using Robust.Shared.Utility; +#if LPP_Sponsors // _LostParadise-Sponsors +using Content.Server._LostParadise.Sponsors; +#endif namespace Content.Server.Chat.Managers { @@ -45,6 +48,9 @@ internal sealed partial class ChatManager : IChatManager [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; +#if LPP_Sponsors // _LostParadise-Sponsors + [Dependency] private readonly SponsorsManager _sponsorsManager = default!; +#endif /// /// The maximum length a player-sent message can be sent @@ -244,11 +250,18 @@ private void SendOOC(ICommonSession player, string message) var prefs = _preferencesManager.GetPreferences(player.UserId); colorOverride = prefs.AdminOOCColor; } - if ( _netConfigManager.GetClientCVar(player.Channel, CCVars.ShowOocPatronColor) && player.Channel.UserData.PatronTier is { } patron && PatronOocColors.TryGetValue(patron, out var patronColor)) + if (_netConfigManager.GetClientCVar(player.Channel, CCVars.ShowOocPatronColor) && player.Channel.UserData.PatronTier is { } patron && PatronOocColors.TryGetValue(patron, out var patronColor)) { wrappedMessage = Loc.GetString("chat-manager-send-ooc-patron-wrap-message", ("patronColor", patronColor),("playerName", player.Name), ("message", FormattedMessage.EscapeText(message))); } +#if LPP_Sponsors // _LostParadise-Sponsors + if (_sponsorsManager.TryGetInfo(player.UserId, out var sponsorData) && sponsorData.OOCColor != null) + { + wrappedMessage = Loc.GetString("chat-manager-send-ooc-patron-wrap-message", ("patronColor", sponsorData.OOCColor),("playerName", player.Name), ("message", FormattedMessage.EscapeText(message))); + } +#endif + //TODO: player.Name color, this will need to change the structure of the MsgChatMessage ChatMessageToAll(ChatChannel.OOC, message, wrappedMessage, EntityUid.Invalid, hideChat: false, recordReplay: true, colorOverride: colorOverride, author: player.UserId); _mommiLink.SendOOCMessage(player.Name, message); diff --git a/Content.Server/Chat/Managers/ChatSanitizationManager.cs b/Content.Server/Chat/Managers/ChatSanitizationManager.cs index 57e759c6ac..eb53d0b03a 100644 --- a/Content.Server/Chat/Managers/ChatSanitizationManager.cs +++ b/Content.Server/Chat/Managers/ChatSanitizationManager.cs @@ -12,6 +12,41 @@ public sealed class ChatSanitizationManager : IChatSanitizationManager private static readonly Dictionary SmileyToEmote = new() { // I could've done this with regex, but felt it wasn't the right idea. + { "хд", "chatsan-laughs" }, + { "о-о", "chatsan-wide-eyed" }, // cyrillic о + { "о.о", "chatsan-wide-eyed" }, // cyrillic о + { "0_о", "chatsan-wide-eyed" }, // cyrillic о + { "о/", "chatsan-waves" }, // cyrillic о + { "о7", "chatsan-salutes" }, // cyrillic о + { "0_o", "chatsan-wide-eyed" }, + { "лмао", "chatsan-laughs" }, + { "рофл", "chatsan-laughs" }, + { "яхз", "chatsan-shrugs" }, + { ":0", "chatsan-surprised" }, + { ":р", "chatsan-stick-out-tongue" }, // cyrillic р + { "кек", "chatsan-laughs" }, + { "T_T", "chatsan-cries" }, + { "Т_Т", "chatsan-cries" }, // cyrillic T + { "=_(", "chatsan-cries" }, + { "!с", "chatsan-laughs" }, + { "!в", "chatsan-sighs" }, + { "!х", "chatsan-claps" }, + { "!щ", "chatsan-snaps" }, + { "))", "chatsan-smiles-widely" }, + { ")", "chatsan-smiles" }, + { "((", "chatsan-frowns-deeply" }, + { "(", "chatsan-frowns" }, + // Corvax-Localization-End + // Lost-Paradise-Localization-Start + { "орууу", "chatsan-laughs" }, + { "хз", "chatsan-shrugs" }, + { "хсс", "chatsan-shrugs" }, + { "хссс", "chatsan-shrugs" }, + { "шшш", "chatsan-hiss" }, + { "авууу", "chatsan-awoo" }, + { "няяя", "chatsan-nyaaa" }, + // Lost-Paradise-Localization-End + // I could've done this with regex, but felt it wasn't the right idea. { ":)", "chatsan-smiles" }, { ":]", "chatsan-smiles" }, { "=)", "chatsan-smiles" }, @@ -68,19 +103,19 @@ public sealed class ChatSanitizationManager : IChatSanitizationManager { "^^/", "chatsan-waves" }, { ":/", "chatsan-uncertain" }, { ":\\", "chatsan-uncertain" }, - { "лмао", "chatsan-laughs" }, - { "лмао.", "chatsan-laughs" }, - { "лол", "chatsan-laughs" }, - { "лол.", "chatsan-laughs" }, - { "хД", "chatsan-laughs" }, - { "хД.", "chatsan-laughs" }, - { "кек", "chatsan-laughs" }, - { "кек.", "chatsan-laughs" }, - { "рофл", "chatsan-laughs" }, - { "о7", "chatsan-salutes" }, + { "lmao", "chatsan-laughs" }, + { "lmao.", "chatsan-laughs" }, + { "lol", "chatsan-laughs" }, + { "lol.", "chatsan-laughs" }, + { "lel", "chatsan-laughs" }, + { "lel.", "chatsan-laughs" }, + { "kek", "chatsan-laughs" }, + { "kek.", "chatsan-laughs" }, + { "rofl", "chatsan-laughs" }, + { "o7", "chatsan-salutes" }, { ";_;7", "chatsan-tearfully-salutes"}, - { "хз", "chatsan-shrugs" }, - { "хз.", "chatsan-shrugs" }, + { "idk", "chatsan-shrugs" }, + { "idk.", "chatsan-shrugs" }, { ";)", "chatsan-winks" }, { ";]", "chatsan-winks" }, { "(;", "chatsan-winks" }, diff --git a/Content.Server/Chat/TelepathicChatSystem.Psychognomy.cs b/Content.Server/Chat/TelepathicChatSystem.Psychognomy.cs new file mode 100644 index 0000000000..4ba990466c --- /dev/null +++ b/Content.Server/Chat/TelepathicChatSystem.Psychognomy.cs @@ -0,0 +1,171 @@ +using Content.Shared.Humanoid; +using Content.Shared.Damage; +using Content.Shared.Mobs.Components; +using Content.Shared.Physics; +using Content.Shared.Speech; +using Content.Shared.Speech.Muting; +using Content.Shared.CombatMode.Pacification; +using Content.Shared.CombatMode; +using Content.Shared.Nutrition.Components; +using Content.Server.Vampiric; +using Content.Shared.Abilities.Psionics; +using Content.Server.Abilities.Psionics; +using Content.Server.Cloning.Components; +using Content.Server.Psionics.Glimmer; +using Robust.Shared.GameObjects.Components.Localization; +using Robust.Shared.Enums; +using Robust.Shared.Physics; +using Robust.Shared.Physics.Components; +using Robust.Shared.Random; + +namespace Content.Server.Chat; +public sealed partial class TelepathicChatSystem +{ + public string SourceToDescriptor(EntityUid source) + { + var ev = new GetPsychognomicDescriptorEvent(); + RaiseLocalEvent(source, ev); + + ev.Descriptors.Add(Loc.GetString("p-descriptor-ignorant")); + + return _random.Pick(ev.Descriptors); + } + private void InitializePsychognomy() + { + SubscribeLocalEvent(DescribeHumanoid); + SubscribeLocalEvent(DescribeGrammar); + SubscribeLocalEvent(DescribeDamage); + SubscribeLocalEvent(DescribeMobState); + SubscribeLocalEvent(DescribeHunger); + SubscribeLocalEvent(DescribePhysics); + SubscribeLocalEvent(DescribeFixtures); + SubscribeLocalEvent(DescribeKarma); + SubscribeLocalEvent(DescribeGlimmerSource); + SubscribeLocalEvent(DescribePsion); + SubscribeLocalEvent(DescribeInnatePsionics); + SubscribeLocalEvent(DescribeBloodsucker); + } + + private void DescribeHumanoid(EntityUid uid, HumanoidAppearanceComponent component, GetPsychognomicDescriptorEvent ev) + { + if (component.Sex != Sex.Unsexed) + ev.Descriptors.Add(component.Sex == Sex.Male ? Loc.GetString("p-descriptor-male") : Loc.GetString("p-descriptor-female")); + + // Deliberately obfuscating a bit; psionic signatures use different standards + ev.Descriptors.Add(component.Age >= 100 ? Loc.GetString("p-descriptor-old") : Loc.GetString("p-descriptor-young")); + } + + private void DescribeGrammar(EntityUid uid, GrammarComponent component, GetPsychognomicDescriptorEvent ev) + { + if (component.Gender == Gender.Male || component.Gender == Gender.Female) + ev.Descriptors.Add(component.Gender == Gender.Male ? Loc.GetString("p-descriptor-masculine") : Loc.GetString("p-descriptor-feminine")); + } + + private void DescribeDamage(EntityUid uid, DamageableComponent component, GetPsychognomicDescriptorEvent ev) + { + if (component.DamageContainerID == "CorporealSpirit") + { + ev.Descriptors.Add(Loc.GetString("p-descriptor-liminal")); + if (!HasComp(uid)) + ev.Descriptors.Add(Loc.GetString("p-descriptor-old")); + return; + } + + ev.Descriptors.Add(Loc.GetString("p-descriptor-hylic")); + } + + private void DescribeMobState(EntityUid uid, MobStateComponent component, GetPsychognomicDescriptorEvent ev) + { + if (component.CurrentState != Shared.Mobs.MobState.Critical) + return; + + ev.Descriptors.Add(Loc.GetString("p-descriptor-liminal")); + } + + private void DescribeHunger(EntityUid uid, HungerComponent component, GetPsychognomicDescriptorEvent ev) + { + if (component.CurrentThreshold > HungerThreshold.Peckish) + return; + + ev.Descriptors.Add(Loc.GetString("p-descriptor-hungry")); + } + + private void DescribeFixtures(EntityUid uid, FixturesComponent component, GetPsychognomicDescriptorEvent ev) + { + foreach (var fixture in component.Fixtures.Values) + if (fixture.CollisionMask == (int) CollisionGroup.GhostImpassable) + { + ev.Descriptors.Add(Loc.GetString("p-descriptor-pneumatic")); + return; + } + } + + private void DescribePhysics(EntityUid uid, PhysicsComponent component, GetPsychognomicDescriptorEvent ev) + { + if (component.FixturesMass < 45) + ev.Descriptors.Add(Loc.GetString("p-descriptor-light")); + else if (component.FixturesMass > 70) + ev.Descriptors.Add(Loc.GetString("p-descriptor-heavy")); + } + + private void DescribeKarma(EntityUid uid, MetempsychosisKarmaComponent component, GetPsychognomicDescriptorEvent ev) + { + if (component.Score == 0) + return; + + ev.Descriptors.Add(Loc.GetString("p-descriptor-cyclic")); + } + + private void DescribeGlimmerSource(EntityUid uid, GlimmerSourceComponent component, GetPsychognomicDescriptorEvent ev) + { + if (component.AddToGlimmer) + ev.Descriptors.Add(Loc.GetString("p-descriptor-emanative")); + else + { + ev.Descriptors.Add(Loc.GetString("p-descriptor-vampiric")); + ev.Descriptors.Add(Loc.GetString("p-descriptor-hungry")); + } + } + + // This one's also a bit of a catch-all for "lacks component" + private void DescribePsion(EntityUid uid, PsionicComponent component, GetPsychognomicDescriptorEvent ev) + { + if (component.PsychognomicDescriptors != null) + { + foreach (var descriptor in component.PsychognomicDescriptors) + { + ev.Descriptors.Add(Loc.GetString(descriptor)); + } + } + + if (!HasComp(uid) || HasComp(uid)) + ev.Descriptors.Add(Loc.GetString("p-descriptor-dumb")); + + if (!HasComp(uid) || HasComp(uid)) + ev.Descriptors.Add(Loc.GetString("p-descriptor-passive")); + + foreach (var power in component.ActivePowers) + { + // TODO: Mime counts too and isn't added back to psions yet + if (power.ID != "PyrokinesisPower" && power.ID != "NoosphericZapPower") + continue; + + ev.Descriptors.Add(Loc.GetString("p-descriptor-kinetic")); + return; + } + } + + private void DescribeInnatePsionics(EntityUid uid, InnatePsionicPowersComponent component, GetPsychognomicDescriptorEvent ev) + { + ev.Descriptors.Add(Loc.GetString("p-descriptor-gnostic")); + } + + private void DescribeBloodsucker(EntityUid uid, BloodSuckerComponent component, GetPsychognomicDescriptorEvent ev) + { + ev.Descriptors.Add(Loc.GetString("p-descriptor-vampiric")); + } +} +public sealed class GetPsychognomicDescriptorEvent : EntityEventArgs +{ + public List Descriptors = new List(); +} diff --git a/Content.Server/Chat/TelepathicChatSystem.cs b/Content.Server/Chat/TelepathicChatSystem.cs index 86e46427d2..b1338035ad 100644 --- a/Content.Server/Chat/TelepathicChatSystem.cs +++ b/Content.Server/Chat/TelepathicChatSystem.cs @@ -3,6 +3,7 @@ using Content.Server.Chat.Managers; using Content.Server.Chat.Systems; using Content.Shared.Abilities.Psionics; +using Content.Shared.Psionics.Passives; using Content.Shared.Bed.Sleep; using Content.Shared.Chat; using Content.Shared.Database; @@ -19,9 +20,9 @@ namespace Content.Server.Chat; /// -/// Extensions for Telepathic chat stuff +/// Extensions for Telepathic chat stuff /// -public sealed class TelepathicChatSystem : EntitySystem +public sealed partial class TelepathicChatSystem : EntitySystem { [Dependency] private readonly IAdminManager _adminManager = default!; [Dependency] private readonly IChatManager _chatManager = default!; @@ -29,12 +30,23 @@ public sealed class TelepathicChatSystem : EntitySystem [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly GlimmerSystem _glimmerSystem = default!; [Dependency] private readonly ChatSystem _chatSystem = default!; - private IEnumerable GetPsionicChatClients() + + public override void Initialize() + { + base.Initialize(); + InitializePsychognomy(); + } + + private (IEnumerable normal, IEnumerable psychog) GetPsionicChatClients() { - return Filter.Empty() + var psions = Filter.Empty() .AddWhereAttachedEntity(IsEligibleForTelepathy) - .Recipients - .Select(p => p.ConnectedClient); + .Recipients; + + var normalSessions = psions.Where(p => !HasComp(p.AttachedEntity)).Select(p => p.Channel); + var psychogSessions = psions.Where(p => HasComp(p.AttachedEntity)).Select(p => p.Channel); + + return (normalSessions, psychogSessions); } private IEnumerable GetAdminClients() @@ -87,18 +99,29 @@ public void SendTelepathicChat(EntityUid source, string message, bool hideChat) _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Telepathic chat from {ToPrettyString(source):Player}: {message}"); - _chatManager.ChatMessageToMany(ChatChannel.Telepathic, message, messageWrap, source, hideChat, true, clients.ToList(), Color.PaleVioletRed); + _chatManager.ChatMessageToMany(ChatChannel.Telepathic, message, messageWrap, source, hideChat, true, clients.normal.ToList(), Color.PaleVioletRed); _chatManager.ChatMessageToMany(ChatChannel.Telepathic, message, adminMessageWrap, source, hideChat, true, admins, Color.PaleVioletRed); + if (clients.psychog.Count() > 0) + { + var descriptor = SourceToDescriptor(source); + string psychogMessageWrap; + + psychogMessageWrap = Loc.GetString("chat-manager-send-telepathic-chat-wrap-message-psychognomy", + ("source", descriptor.ToUpper()), ("message", message)); + + _chatManager.ChatMessageToMany(ChatChannel.Telepathic, message, psychogMessageWrap, source, hideChat, true, clients.psychog.ToList(), Color.PaleVioletRed); + } + if (_random.Prob(0.1f)) _glimmerSystem.Glimmer++; - if (_random.Prob(Math.Min(0.33f + ((float) _glimmerSystem.Glimmer / 1500), 1))) + if (_random.Prob(Math.Min(0.33f + (float) _glimmerSystem.Glimmer / 1500, 1))) { - float obfuscation = (0.25f + (float) _glimmerSystem.Glimmer / 2000); + float obfuscation = 0.25f + (float) _glimmerSystem.Glimmer / 2000; var obfuscated = ObfuscateMessageReadability(message, obfuscation); - _chatManager.ChatMessageToMany(ChatChannel.Telepathic, obfuscated, messageWrap, source, hideChat, false, GetDreamers(clients), Color.PaleVioletRed); + _chatManager.ChatMessageToMany(ChatChannel.Telepathic, obfuscated, messageWrap, source, hideChat, false, GetDreamers(clients.normal.Concat(clients.psychog)), Color.PaleVioletRed); } foreach (var repeater in EntityQuery()) @@ -124,4 +147,4 @@ private string ObfuscateMessageReadability(string message, float chance) return modifiedMessage.ToString(); } -} +} \ No newline at end of file diff --git a/Content.Server/Cloning/CloningConsoleSystem.cs b/Content.Server/Cloning/CloningConsoleSystem.cs index c95c37312e..524cbe80e4 100644 --- a/Content.Server/Cloning/CloningConsoleSystem.cs +++ b/Content.Server/Cloning/CloningConsoleSystem.cs @@ -32,7 +32,7 @@ public sealed class CloningConsoleSystem : EntitySystem [Dependency] private readonly MobStateSystem _mobStateSystem = default!; [Dependency] private readonly PowerReceiverSystem _powerReceiverSystem = default!; [Dependency] private readonly SharedMindSystem _mindSystem = default!; - + public override void Initialize() { base.Initialize(); @@ -52,14 +52,16 @@ private void OnInit(EntityUid uid, CloningConsoleComponent component, ComponentI } private void OnButtonPressed(EntityUid uid, CloningConsoleComponent consoleComponent, UiButtonPressedMessage args) { - if (!_powerReceiverSystem.IsPowered(uid)) + if (!_powerReceiverSystem.IsPowered(uid) + || consoleComponent.GeneticScanner is null + || consoleComponent.CloningPod is null + || !TryComp(consoleComponent.CloningPod.Value, out var cloningPod)) return; switch (args.Button) { case UiButton.Clone: - if (consoleComponent.GeneticScanner != null && consoleComponent.CloningPod != null) - TryClone(uid, consoleComponent.CloningPod.Value, consoleComponent.GeneticScanner.Value, consoleComponent: consoleComponent); + TryClone(uid, consoleComponent.CloningPod.Value, consoleComponent.GeneticScanner.Value, cloningPod, consoleComponent: consoleComponent); break; } UpdateUserInterface(uid, consoleComponent); @@ -93,13 +95,15 @@ private void OnMapInit(EntityUid uid, CloningConsoleComponent component, MapInit private void OnNewLink(EntityUid uid, CloningConsoleComponent component, NewLinkEvent args) { - if (TryComp(args.Sink, out var scanner) && args.SourcePort == CloningConsoleComponent.ScannerPort) + if (TryComp(args.Sink, out var scanner) + && args.SourcePort == CloningConsoleComponent.ScannerPort) { component.GeneticScanner = args.Sink; scanner.ConnectedConsole = uid; } - if (TryComp(args.Sink, out var pod) && args.SourcePort == CloningConsoleComponent.PodPort) + if (TryComp(args.Sink, out var pod) + && args.SourcePort == CloningConsoleComponent.PodPort) { component.CloningPod = args.Sink; pod.ConnectedConsole = uid; @@ -125,11 +129,10 @@ private void OnUIOpen(EntityUid uid, CloningConsoleComponent component, AfterAct private void OnAnchorChanged(EntityUid uid, CloningConsoleComponent component, ref AnchorStateChangedEvent args) { - if (args.Anchored) - { - RecheckConnections(uid, component.CloningPod, component.GeneticScanner, component); + if (!args.Anchored + || !RecheckConnections(uid, component.CloningPod, component.GeneticScanner, component)) return; - } + UpdateUserInterface(uid, component); } @@ -148,49 +151,52 @@ public void UpdateUserInterface(EntityUid consoleUid, CloningConsoleComponent co _uiSystem.SetUiState(ui, newState); } - public void TryClone(EntityUid uid, EntityUid cloningPodUid, EntityUid scannerUid, CloningPodComponent? cloningPod = null, MedicalScannerComponent? scannerComp = null, CloningConsoleComponent? consoleComponent = null) + public void TryClone(EntityUid uid, EntityUid cloningPodUid, EntityUid scannerUid, CloningPodComponent cloningPod, MedicalScannerComponent? scannerComp = null, CloningConsoleComponent? consoleComponent = null) { - if (!Resolve(uid, ref consoleComponent) || !Resolve(cloningPodUid, ref cloningPod) || !Resolve(scannerUid, ref scannerComp)) - return; - - if (!Transform(cloningPodUid).Anchored || !Transform(scannerUid).Anchored) - return; - - if (!consoleComponent.CloningPodInRange || !consoleComponent.GeneticScannerInRange) + if (!Resolve(uid, ref consoleComponent) + || !Resolve(scannerUid, ref scannerComp) + || !Transform(cloningPodUid).Anchored + || !Transform(scannerUid).Anchored + || !consoleComponent.CloningPodInRange + || !consoleComponent.GeneticScannerInRange) return; var body = scannerComp.BodyContainer.ContainedEntity; - if (body is null) + if (body is null + || !_mindSystem.TryGetMind(body.Value, out var mindId, out var mind) + || mind.UserId.HasValue == false + || mind.Session == null) return; - if (!_mindSystem.TryGetMind(body.Value, out var mindId, out var mind)) - return; - - if (mind.UserId.HasValue == false || mind.Session == null) - return; - // Nyano: Adds scannerComp.MetemKarmaBonus - if (_cloningSystem.TryCloning(cloningPodUid, body.Value, (mindId, mind), cloningPod, scannerComp.CloningFailChanceMultiplier, scannerComp.MetemKarmaBonus)) - _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(uid)} successfully cloned {ToPrettyString(body.Value)}."); + if (_cloningSystem.TryCloning(cloningPodUid, body.Value, (mindId, mind), cloningPod, scannerComp.CloningFailChanceMultiplier)) + { + _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(uid)} started cloning {ToPrettyString(body.Value)}."); + _cloningSystem.AttemptCloning(cloningPodUid, cloningPod); + } } - public void RecheckConnections(EntityUid console, EntityUid? cloningPod, EntityUid? scanner, CloningConsoleComponent? consoleComp = null) + public bool RecheckConnections(EntityUid console, EntityUid? cloningPod, EntityUid? scanner, CloningConsoleComponent? consoleComp = null) { if (!Resolve(console, ref consoleComp)) - return; + return false; + var connected = true; if (scanner != null) { - Transform(scanner.Value).Coordinates.TryDistance(EntityManager, Transform((console)).Coordinates, out float scannerDistance); + Transform(scanner.Value).Coordinates.TryDistance(EntityManager, Transform(console).Coordinates, out float scannerDistance); consoleComp.GeneticScannerInRange = scannerDistance <= consoleComp.MaxDistance; + connected = false; } if (cloningPod != null) { - Transform(cloningPod.Value).Coordinates.TryDistance(EntityManager, Transform((console)).Coordinates, out float podDistance); + Transform(cloningPod.Value).Coordinates.TryDistance(EntityManager, Transform(console).Coordinates, out float podDistance); consoleComp.CloningPodInRange = podDistance <= consoleComp.MaxDistance; + connected = false; } UpdateUserInterface(console, consoleComp); + return connected; } private CloningConsoleBoundUserInterfaceState GetUserInterfaceState(CloningConsoleComponent consoleComponent) { @@ -206,25 +212,19 @@ private CloningConsoleBoundUserInterfaceState GetUserInterfaceState(CloningConso EntityUid? scanBody = scanner.BodyContainer.ContainedEntity; // GET STATE - if (scanBody == null || !HasComp(scanBody)) + if (scanBody == null + || !HasComp(scanBody)) clonerStatus = ClonerStatus.ScannerEmpty; else { scanBodyInfo = MetaData(scanBody.Value).EntityName; if (!_mobStateSystem.IsDead(scanBody.Value)) - { clonerStatus = ClonerStatus.ScannerOccupantAlive; - } - else - { - if (!_mindSystem.TryGetMind(scanBody.Value, out _, out var mind) || - mind.UserId == null || - !_playerManager.TryGetSessionById(mind.UserId.Value, out _)) - { - clonerStatus = ClonerStatus.NoMindDetected; - } - } + else if (!_mindSystem.TryGetMind(scanBody.Value, out _, out var mind) + || mind.UserId == null + || !_playerManager.TryGetSessionById(mind.UserId.Value, out _)) + clonerStatus = ClonerStatus.NoMindDetected; } } @@ -240,7 +240,7 @@ private CloningConsoleBoundUserInterfaceState GetUserInterfaceState(CloningConso EntityUid? cloneBody = clonePod.BodyContainer.ContainedEntity; clonerMindPresent = clonePod.Status == CloningPodStatus.Cloning; - if (HasComp(consoleComponent.CloningPod)) + if (clonePod.ActivelyCloning) { if (cloneBody != null) cloneBodyInfo = Identity.Name(cloneBody.Value, EntityManager); @@ -248,9 +248,7 @@ private CloningConsoleBoundUserInterfaceState GetUserInterfaceState(CloningConso } } else - { clonerStatus = ClonerStatus.NoClonerDetected; - } return new CloningConsoleBoundUserInterfaceState( scanBodyInfo, diff --git a/Content.Server/Cloning/CloningSystem.Utility.cs b/Content.Server/Cloning/CloningSystem.Utility.cs new file mode 100644 index 0000000000..408e1cf24a --- /dev/null +++ b/Content.Server/Cloning/CloningSystem.Utility.cs @@ -0,0 +1,360 @@ +using Content.Server.Cloning.Components; +using Content.Shared.Atmos; +using Content.Shared.CCVar; +using Content.Shared.Chemistry.Components; +using Content.Shared.Cloning; +using Content.Shared.Damage; +using Content.Shared.Emag.Components; +using Content.Shared.Humanoid; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; +using Robust.Shared.Physics.Components; +using Robust.Shared.Random; +using Content.Shared.Speech; +using Content.Shared.Preferences; +using Content.Shared.Emoting; +using Content.Server.Speech.Components; +using Content.Server.StationEvents.Components; +using Content.Server.Ghost.Roles.Components; +using Robust.Shared.GameObjects.Components.Localization; +using Content.Shared.SSDIndicator; +using Content.Shared.Damage.ForceSay; +using Content.Shared.Chat; +using Content.Server.Body.Components; +using Content.Shared.Abilities.Psionics; +using Content.Shared.Language.Components; +using Content.Shared.Language; +using Content.Shared.Nutrition.Components; +using Robust.Shared.Enums; + +namespace Content.Server.Cloning; + +public sealed partial class CloningSystem +{ + internal void TransferMindToClone(EntityUid mindId, MindComponent mind) + { + if (!ClonesWaitingForMind.TryGetValue(mind, out var entity) + || !EntityManager.EntityExists(entity) + || !TryComp(entity, out var mindComp) + || mindComp.Mind != null) + return; + + _mindSystem.TransferTo(mindId, entity, ghostCheckOverride: true, mind: mind); + _mindSystem.UnVisit(mindId, mind); + ClonesWaitingForMind.Remove(mind); + } + private void HandleMindAdded(EntityUid uid, BeingClonedComponent clonedComponent, MindAddedMessage message) + { + if (clonedComponent.Parent == EntityUid.Invalid + || !EntityManager.EntityExists(clonedComponent.Parent) + || !TryComp(clonedComponent.Parent, out var cloningPodComponent) + || uid != cloningPodComponent.BodyContainer.ContainedEntity) + { + EntityManager.RemoveComponent(uid); + return; + } + UpdateStatus(clonedComponent.Parent, CloningPodStatus.Cloning, cloningPodComponent); + } + + /// + /// Test if the body to be cloned has any conditions that would prevent cloning from taking place. + /// Or, if the body has a particular reason to make cloning more difficult. + /// + private bool CheckUncloneable(EntityUid uid, EntityUid bodyToClone, CloningPodComponent clonePod, out float cloningCostMultiplier) + { + var ev = new AttemptCloningEvent(uid, clonePod.DoMetempsychosis); + RaiseLocalEvent(bodyToClone, ref ev); + cloningCostMultiplier = ev.CloningCostMultiplier; + + if (ev.Cancelled && ev.CloningFailMessage is not null) + { + _chatSystem.TrySendInGameICMessage(uid, + Loc.GetString(ev.CloningFailMessage), + InGameICChatType.Speak, false); + return false; + } + + return true; + } + + /// + /// Checks the body's physics component and any previously obtained modifiers to determine biomass cost. + /// If there is insufficient biomass, the cloning cannot start. + /// + private bool CheckBiomassCost(EntityUid uid, PhysicsComponent physics, CloningPodComponent clonePod, float cloningCostMultiplier = 1) + { + if (clonePod.ConnectedConsole is null) + return false; + + var cloningCost = (int) Math.Round(physics.FixturesMass + * _config.GetCVar(CCVars.CloningBiomassCostMultiplier) + * clonePod.BiomassCostMultiplier + * cloningCostMultiplier); + + if (_material.GetMaterialAmount(uid, clonePod.RequiredMaterial) < cloningCost) + { + _chatSystem.TrySendInGameICMessage(clonePod.ConnectedConsole.Value, Loc.GetString("cloning-console-chat-error", ("units", cloningCost)), InGameICChatType.Speak, false); + return false; + } + + _material.TryChangeMaterialAmount(uid, clonePod.RequiredMaterial, -cloningCost); + clonePod.UsedBiomass = cloningCost; + + return true; + } + + /// + /// Tests the original body for genetic damage, while returning the cloning damage for later damage. + /// The body's cellular damage is also used as a potential failure state, giving a chance for the cloning to fail immediately. + /// + private bool CheckGeneticDamage(EntityUid uid, EntityUid bodyToClone, CloningPodComponent clonePod, out float geneticDamage, float failChanceModifier = 1) + { + geneticDamage = 0; + if (clonePod.DoMetempsychosis) + return false; + + if (TryComp(bodyToClone, out var damageable) + && damageable.Damage.DamageDict.TryGetValue("Cellular", out var cellularDmg) + && clonePod.ConnectedConsole is not null) + { + geneticDamage += (float) cellularDmg; + var chance = Math.Clamp((float) (cellularDmg / 100), 0, 1); + chance *= failChanceModifier; + + if (cellularDmg > 0) + _chatSystem.TrySendInGameICMessage(clonePod.ConnectedConsole.Value, Loc.GetString("cloning-console-cellular-warning", ("percent", Math.Round(100 - chance * 100))), InGameICChatType.Speak, false); + + if (_random.Prob(chance)) + { + CauseCloningFail(uid, clonePod); + return true; + } + } + return false; + } + + /// + /// When this condition is called, it sets the cloning pod to its fail condition. + /// Such that when the cloning timer ends, the body that would be created, is turned into clone soup. + /// + private void CauseCloningFail(EntityUid uid, CloningPodComponent component) + { + UpdateStatus(uid, CloningPodStatus.Gore, component); + component.FailedClone = true; + component.ActivelyCloning = true; + } + + /// + /// This is the success condition for cloning. At the end of the timer, if nothing interrupted it, this function is called to finish the cloning by dispensing the body. + /// + private void Eject(EntityUid uid, CloningPodComponent? clonePod) + { + if (!Resolve(uid, ref clonePod) + || clonePod.BodyContainer.ContainedEntity is null) + return; + + var entity = clonePod.BodyContainer.ContainedEntity.Value; + EntityManager.RemoveComponent(entity); + _containerSystem.Remove(entity, clonePod.BodyContainer); + clonePod.CloningProgress = 0f; + clonePod.UsedBiomass = 0; + UpdateStatus(uid, CloningPodStatus.Idle, clonePod); + clonePod.ActivelyCloning = false; + } + + /// + /// And now we turn it over to Chef Pod to make soup! + /// + private void EndFailedCloning(EntityUid uid, CloningPodComponent clonePod) + { + if (clonePod.BodyContainer.ContainedEntity is not null) + { + var entity = clonePod.BodyContainer.ContainedEntity.Value; + if (TryComp(entity, out var physics) + && TryComp(entity, out var bloodstream)) + MakeAHugeMess(uid, physics, bloodstream); + else MakeAHugeMess(uid); + + QueueDel(entity); + } + else MakeAHugeMess(uid); + + clonePod.FailedClone = false; + clonePod.CloningProgress = 0f; + UpdateStatus(uid, CloningPodStatus.Idle, clonePod); + if (HasComp(uid)) + { + _audio.PlayPvs(clonePod.ScreamSound, uid); + Spawn(clonePod.MobSpawnId, Transform(uid).Coordinates); + } + + if (!HasComp(uid)) + _material.SpawnMultipleFromMaterial(_random.Next(1, (int) (clonePod.UsedBiomass / 2.5)), clonePod.RequiredMaterial, Transform(uid).Coordinates); + + clonePod.UsedBiomass = 0; + clonePod.ActivelyCloning = false; + } + + /// + /// The body coming out of the machine isn't guaranteed to even be a Humanoid. + /// This function makes sure the body is "Human Playable", with no funny business. + /// + private void CleanupCloneComponents(EntityUid uid, EntityUid bodyToClone, bool forceOldProfile, bool doMetempsychosis) + { + if (forceOldProfile + && TryComp(bodyToClone, out var psionic)) + { + var newPsionic = _serialization.CreateCopy(psionic, null, false, true); + AddComp(uid, newPsionic, true); + } + + if (TryComp(bodyToClone, out var oldKnowLangs)) + { + var newKnowLangs = _serialization.CreateCopy(oldKnowLangs, null, false, true); + AddComp(uid, newKnowLangs, true); + } + + + if (TryComp(bodyToClone, out var oldSpeakLangs)) + { + var newSpeakLangs = _serialization.CreateCopy(oldSpeakLangs, null, false, true); + AddComp(uid, newSpeakLangs, true); + } + + if (doMetempsychosis) + EnsureComp(uid); + + EnsureComp(uid); + EnsureComp(uid); + EnsureComp(uid); + EnsureComp(uid); + EnsureComp(uid); + RemComp(uid); + RemComp(uid); + RemComp(uid); + RemComp(uid); + _tag.AddTag(uid, "DoorBumpOpener"); + } + + /// + /// When failing to clone, much of the failed body is dissolved into a slurry of Ammonia and Blood, which spills from the machine. + /// + /// + /// WOE BEFALLS WHOEVER FAILS TO CLONE A LAMIA + /// + private void MakeAHugeMess(EntityUid uid, PhysicsComponent? physics = null, BloodstreamComponent? blood = null) + { + var tileMix = _atmosphereSystem.GetTileMixture(Transform(uid).GridUid, null, _transformSystem.GetGridTilePositionOrDefault((uid, Transform(uid))), true); + Solution bloodSolution = new(); + + tileMix?.AdjustMoles(Gas.Ammonia, 0.5f + * ((physics is not null) + ? physics.Mass + : 71)); + + bloodSolution.AddReagent("blood", 0.8f + * ((blood is not null) + ? blood.BloodMaxVolume + : 300)); + + _puddleSystem.TrySpillAt(uid, bloodSolution, out _); + } + + /// + /// Modify the clone's hunger and thirst values by an amount set in the cloningPod. + /// + private void UpdateHungerAndThirst(EntityUid uid, CloningPodComponent cloningPod) + { + if (cloningPod.HungerAdjustment != 0 + && TryComp(uid, out var hungerComponent)) + _hunger.SetHunger(uid, cloningPod.HungerAdjustment, hungerComponent); + + if (cloningPod.ThirstAdjustment != 0 + && TryComp(uid, out var thirstComponent)) + _thirst.SetThirst(uid, thirstComponent, cloningPod.ThirstAdjustment); + + if (cloningPod.DrunkTimer != 0) + _drunk.TryApplyDrunkenness(uid, cloningPod.DrunkTimer); + } + + /// + /// Updates the HumanoidAppearanceComponent of the clone. + /// If a species swap is occuring, this updates all relevant information as per server config. + /// + private void UpdateCloneAppearance( + EntityUid mob, + HumanoidCharacterProfile pref, + HumanoidAppearanceComponent humanoid, + List sexes, + Gender oldGender, + bool switchingSpecies, + bool forceOldProfile, + out Gender gender) + { + gender = oldGender; + if (!TryComp(mob, out var newHumanoid)) + return; + + if (switchingSpecies && !forceOldProfile) + { + var flavorText = _serialization.CreateCopy(pref.FlavorText, null, false, true); + var oldName = _serialization.CreateCopy(pref.Name, null, false, true); + + pref = HumanoidCharacterProfile.RandomWithSpecies(newHumanoid.Species); + + if (sexes.Contains(humanoid.Sex) + && _config.GetCVar(CCVars.CloningPreserveSex)) + pref = pref.WithSex(humanoid.Sex); + + if (_config.GetCVar(CCVars.CloningPreserveGender)) + pref = pref.WithGender(humanoid.Gender); + else gender = humanoid.Gender; + + if (_config.GetCVar(CCVars.CloningPreserveAge)) + pref = pref.WithAge(humanoid.Age); + + if (_config.GetCVar(CCVars.CloningPreserveHeight)) + pref = pref.WithHeight(humanoid.Height); + + if (_config.GetCVar(CCVars.CloningPreserveWidth)) + pref = pref.WithWidth(humanoid.Width); + + if (_config.GetCVar(CCVars.CloningPreserveName)) + pref = pref.WithName(oldName); + + if (_config.GetCVar(CCVars.CloningPreserveFlavorText)) + pref = pref.WithFlavorText(flavorText); + + _humanoidSystem.LoadProfile(mob, pref); + } + } + + /// + /// Optionally makes sure that pronoun preferences are preserved by the clone. + /// Although handled here, the swap (if it occurs) happens during UpdateCloneAppearance. + /// + /// + /// + private void UpdateGrammar(EntityUid mob, Gender gender) + { + var grammar = EnsureComp(mob); + grammar.ProperNoun = true; + grammar.Gender = gender; + Dirty(mob, grammar); + } + + /// + /// Optionally puts the clone in crit with high Cellular damage. + /// Medbay should use Cryogenics to "Finish" clones. Doxarubixadone is perfect for this. + /// + private void UpdateCloneDamage(EntityUid mob, CloningPodComponent clonePodComp, float geneticDamage) + { + if (!clonePodComp.DoGeneticDamage + || !HasComp(mob) + || !_thresholds.TryGetThresholdForState(mob, Shared.Mobs.MobState.Critical, out var threshold)) + return; + DamageSpecifier damage = new(); + damage.DamageDict.Add("Cellular", (int) threshold + 1 + geneticDamage); + _damageable.TryChangeDamage(mob, damage, true); + } +} diff --git a/Content.Server/Cloning/CloningSystem.cs b/Content.Server/Cloning/CloningSystem.cs index 5d311f3ce1..7931fae477 100644 --- a/Content.Server/Cloning/CloningSystem.cs +++ b/Content.Server/Cloning/CloningSystem.cs @@ -9,13 +9,9 @@ using Content.Server.Materials; using Content.Server.Popups; using Content.Server.Power.EntitySystems; -using Content.Shared.Atmos; -using Content.Shared.CCVar; -using Content.Shared.Chemistry.Components; using Content.Shared.Cloning; using Content.Shared.Damage; using Content.Shared.DeviceLinking.Events; -using Content.Shared.Emag.Components; using Content.Shared.Emag.Systems; using Content.Shared.Examine; using Content.Shared.GameTicking; @@ -23,6 +19,7 @@ using Content.Shared.Mind; using Content.Shared.Mind.Components; using Content.Shared.Mobs.Systems; +using Content.Shared.Random; using Content.Shared.Roles.Jobs; using Robust.Server.Containers; using Robust.Server.GameObjects; @@ -33,431 +30,342 @@ using Robust.Shared.Physics.Components; using Robust.Shared.Prototypes; using Robust.Shared.Random; -using Content.Server.Traits.Assorted; //Nyano - Summary: allows the potential psionic ability to be written to the character. -using Content.Server.Psionics; //DeltaV needed for Psionic Systems -using Content.Shared.Speech; //DeltaV Start Metem Usings using Content.Shared.Tag; using Content.Shared.Preferences; -using Content.Shared.Emoting; -using Content.Server.Speech.Components; -using Content.Server.StationEvents.Components; -using Content.Server.Ghost.Roles.Components; -using Content.Server.Nyanotrasen.Cloning; using Content.Shared.Humanoid.Prototypes; -using Robust.Shared.GameObjects.Components.Localization; //DeltaV End Metem Usings -using Content.Server.EntityList; -using Content.Shared.SSDIndicator; -using Content.Shared.Damage.ForceSay; -using Content.Server.Polymorph.Components; -using Content.Shared.Chat; -using Content.Shared.Abilities.Psionics; - -namespace Content.Server.Cloning +using Content.Shared.Random.Helpers; +using Content.Shared.Contests; +using Robust.Shared.Serialization.Manager; +using Robust.Shared.Utility; +using Timer = Robust.Shared.Timing.Timer; +using Content.Server.Power.Components; +using Content.Shared.Drunk; +using Content.Shared.Nutrition.EntitySystems; + +namespace Content.Server.Cloning; + +public sealed partial class CloningSystem : EntitySystem { - public sealed class CloningSystem : EntitySystem + [Dependency] private readonly DeviceLinkSystem _signalSystem = default!; + [Dependency] private readonly IPlayerManager _playerManager = null!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly EuiManager _euiManager = null!; + [Dependency] private readonly CloningConsoleSystem _cloningConsoleSystem = default!; + [Dependency] private readonly HumanoidAppearanceSystem _humanoidSystem = default!; + [Dependency] private readonly ContainerSystem _containerSystem = default!; + [Dependency] private readonly MobStateSystem _mobStateSystem = default!; + [Dependency] private readonly PowerReceiverSystem _powerReceiverSystem = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; + [Dependency] private readonly TransformSystem _transformSystem = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly PuddleSystem _puddleSystem = default!; + [Dependency] private readonly ChatSystem _chatSystem = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly IConfigurationManager _config = default!; + [Dependency] private readonly MaterialStorageSystem _material = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly SharedMindSystem _mindSystem = default!; + [Dependency] private readonly MetaDataSystem _metaSystem = default!; + [Dependency] private readonly SharedJobSystem _jobs = default!; + [Dependency] private readonly TagSystem _tag = default!; + [Dependency] private readonly ContestsSystem _contests = default!; + [Dependency] private readonly ISerializationManager _serialization = default!; + [Dependency] private readonly DamageableSystem _damageable = default!; + [Dependency] private readonly HungerSystem _hunger = default!; + [Dependency] private readonly ThirstSystem _thirst = default!; + [Dependency] private readonly SharedDrunkSystem _drunk = default!; + [Dependency] private readonly MobThresholdSystem _thresholds = default!; + public readonly Dictionary ClonesWaitingForMind = new(); + + public override void Initialize() { - [Dependency] private readonly DeviceLinkSystem _signalSystem = default!; - [Dependency] private readonly IPlayerManager _playerManager = null!; - [Dependency] private readonly IPrototypeManager _prototype = default!; - [Dependency] private readonly EuiManager _euiManager = null!; - [Dependency] private readonly CloningConsoleSystem _cloningConsoleSystem = default!; - [Dependency] private readonly HumanoidAppearanceSystem _humanoidSystem = default!; - [Dependency] private readonly ContainerSystem _containerSystem = default!; - [Dependency] private readonly MobStateSystem _mobStateSystem = default!; - [Dependency] private readonly PowerReceiverSystem _powerReceiverSystem = default!; - [Dependency] private readonly IRobustRandom _robustRandom = default!; - [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; - [Dependency] private readonly TransformSystem _transformSystem = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly PuddleSystem _puddleSystem = default!; - [Dependency] private readonly ChatSystem _chatSystem = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly IConfigurationManager _configManager = default!; - [Dependency] private readonly MaterialStorageSystem _material = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly SharedMindSystem _mindSystem = default!; - [Dependency] private readonly MetaDataSystem _metaSystem = default!; - [Dependency] private readonly SharedJobSystem _jobs = default!; - [Dependency] private readonly MetempsychoticMachineSystem _metem = default!; //DeltaV - [Dependency] private readonly TagSystem _tag = default!; //DeltaV - - public readonly Dictionary ClonesWaitingForMind = new(); - public const float EasyModeCloningCost = 0.7f; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnComponentInit); - SubscribeLocalEvent(Reset); - SubscribeLocalEvent(HandleMindAdded); - SubscribeLocalEvent(OnPortDisconnected); - SubscribeLocalEvent(OnAnchor); - SubscribeLocalEvent(OnExamined); - SubscribeLocalEvent(OnEmagged); - } - - private void OnComponentInit(EntityUid uid, CloningPodComponent clonePod, ComponentInit args) - { - clonePod.BodyContainer = _containerSystem.EnsureContainer(uid, "clonepod-bodyContainer"); - _signalSystem.EnsureSinkPorts(uid, CloningPodComponent.PodPort); - } - - internal void TransferMindToClone(EntityUid mindId, MindComponent mind) - { - if (!ClonesWaitingForMind.TryGetValue(mind, out var entity) || - !EntityManager.EntityExists(entity) || - !TryComp(entity, out var mindComp) || - mindComp.Mind != null) - return; - - _mindSystem.TransferTo(mindId, entity, ghostCheckOverride: true, mind: mind); - _mindSystem.UnVisit(mindId, mind); - ClonesWaitingForMind.Remove(mind); - } - - private void HandleMindAdded(EntityUid uid, BeingClonedComponent clonedComponent, MindAddedMessage message) - { - if (clonedComponent.Parent == EntityUid.Invalid || - !EntityManager.EntityExists(clonedComponent.Parent) || - !TryComp(clonedComponent.Parent, out var cloningPodComponent) || - uid != cloningPodComponent.BodyContainer.ContainedEntity) - { - EntityManager.RemoveComponent(uid); - return; - } - UpdateStatus(clonedComponent.Parent, CloningPodStatus.Cloning, cloningPodComponent); - } + base.Initialize(); + + SubscribeLocalEvent(OnComponentInit); + SubscribeLocalEvent(Reset); + SubscribeLocalEvent(HandleMindAdded); + SubscribeLocalEvent(OnPortDisconnected); + SubscribeLocalEvent(OnAnchor); + SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent(OnEmagged); + SubscribeLocalEvent(OnPowerChanged); + } - private void OnPortDisconnected(EntityUid uid, CloningPodComponent pod, PortDisconnectedEvent args) - { - pod.ConnectedConsole = null; - } + private void OnPortDisconnected(EntityUid uid, CloningPodComponent pod, PortDisconnectedEvent args) + { + pod.ConnectedConsole = null; + } - private void OnAnchor(EntityUid uid, CloningPodComponent component, ref AnchorStateChangedEvent args) - { - if (component.ConnectedConsole == null || !TryComp(component.ConnectedConsole, out var console)) - return; + private void OnAnchor(EntityUid uid, CloningPodComponent component, ref AnchorStateChangedEvent args) + { + if (component.ActivelyCloning) + CauseCloningFail(uid, component); - if (args.Anchored) - { - _cloningConsoleSystem.RecheckConnections(component.ConnectedConsole.Value, uid, console.GeneticScanner, console); - return; - } - _cloningConsoleSystem.UpdateUserInterface(component.ConnectedConsole.Value, console); - } + if (component.ConnectedConsole == null + || !TryComp(component.ConnectedConsole, out var console) + || !args.Anchored + || !_cloningConsoleSystem.RecheckConnections(component.ConnectedConsole.Value, uid, console.GeneticScanner, console)) + return; - private void OnExamined(EntityUid uid, CloningPodComponent component, ExaminedEvent args) - { - if (!args.IsInDetailsRange || !_powerReceiverSystem.IsPowered(uid)) - return; + _cloningConsoleSystem.UpdateUserInterface(component.ConnectedConsole.Value, console); + } - args.PushMarkup(Loc.GetString("cloning-pod-biomass", ("number", _material.GetMaterialAmount(uid, component.RequiredMaterial)))); - } - // Nyano: Adds float karmaBonus - public bool TryCloning(EntityUid uid, EntityUid bodyToClone, Entity mindEnt, CloningPodComponent? clonePod, float failChanceModifier = 1, float karmaBonus = 0.25f) - { - if (!Resolve(uid, ref clonePod)) - return false; + private void OnExamined(EntityUid uid, CloningPodComponent component, ExaminedEvent args) + { + if (!args.IsInDetailsRange + || !_powerReceiverSystem.IsPowered(uid)) + return; - if (HasComp(uid)) - return false; + args.PushMarkup(Loc.GetString("cloning-pod-biomass", ("number", _material.GetMaterialAmount(uid, component.RequiredMaterial)))); + } + private void OnComponentInit(EntityUid uid, CloningPodComponent clonePod, ComponentInit args) + { + clonePod.BodyContainer = _containerSystem.EnsureContainer(uid, "clonepod-bodyContainer"); + _signalSystem.EnsureSinkPorts(uid, CloningPodComponent.PodPort); + } - var mind = mindEnt.Comp; - if (ClonesWaitingForMind.TryGetValue(mind, out var clone)) - { - if (EntityManager.EntityExists(clone) && - !_mobStateSystem.IsDead(clone) && - TryComp(clone, out var cloneMindComp) && - (cloneMindComp.Mind == null || cloneMindComp.Mind == mindEnt)) - return false; // Mind already has clone + private void OnPowerChanged(EntityUid uid, CloningPodComponent component, PowerChangedEvent args) + { + if (!args.Powered && component.ActivelyCloning) + CauseCloningFail(uid, component); + } - ClonesWaitingForMind.Remove(mind); - } + /// + /// On emag, spawns a failed clone when cloning process fails which attacks nearby crew. + /// + private void OnEmagged(EntityUid uid, CloningPodComponent clonePod, ref GotEmaggedEvent args) + { + if (!this.IsPowered(uid, EntityManager)) + return; - if (mind.OwnedEntity != null && !_mobStateSystem.IsDead(mind.OwnedEntity.Value)) - return false; // Body controlled by mind is not dead + if (clonePod.ActivelyCloning) + CauseCloningFail(uid, clonePod); - // Yes, we still need to track down the client because we need to open the Eui - if (mind.UserId == null || !_playerManager.TryGetSessionById(mind.UserId.Value, out var client)) - return false; // If we can't track down the client, we can't offer transfer. That'd be quite bad. + _audio.PlayPvs(clonePod.SparkSound, uid); + _popupSystem.PopupEntity(Loc.GetString("cloning-pod-component-upgrade-emag-requirement"), uid); + args.Handled = true; + } - if (!TryComp(bodyToClone, out var humanoid)) - return false; // whatever body was to be cloned, was not a humanoid + private void Reset(RoundRestartCleanupEvent ev) + { + ClonesWaitingForMind.Clear(); + } - // Begin Nyano-code: allow paradox anomalies to be cloned. - var pref = humanoid.LastProfileLoaded; + /// + /// The master function behind Cloning, called by the cloning console via button press to start the cloning process. + /// + public bool TryCloning(EntityUid uid, EntityUid bodyToClone, Entity mindEnt, CloningPodComponent clonePod, float failChanceModifier = 1) + { + if (!_mobStateSystem.IsDead(bodyToClone) + || clonePod.ActivelyCloning + || clonePod.ConnectedConsole == null + || !CheckUncloneable(uid, bodyToClone, clonePod, out var cloningCostMultiplier) + || !TryComp(bodyToClone, out var humanoid) + || !TryComp(bodyToClone, out var physics)) + return false; + + var mind = mindEnt.Comp; + if (ClonesWaitingForMind.TryGetValue(mind, out var clone)) + { + if (EntityManager.EntityExists(clone) && + !_mobStateSystem.IsDead(clone) && + TryComp(clone, out var cloneMindComp) && + (cloneMindComp.Mind == null || cloneMindComp.Mind == mindEnt)) + return false; // Mind already has clone - if (pref == null) - return false; - // End Nyano-code - if (!_prototype.TryIndex(humanoid.Species, out var speciesPrototype)) - return false; + ClonesWaitingForMind.Remove(mind); + } - if (!TryComp(bodyToClone, out var physics)) - return false; + if (mind.OwnedEntity != null && !_mobStateSystem.IsDead(mind.OwnedEntity.Value) + || mind.UserId == null + || !_playerManager.TryGetSessionById(mind.UserId.Value, out var client) + || !CheckBiomassCost(uid, physics, clonePod, cloningCostMultiplier)) + return false; - var cloningCost = (int) Math.Round(physics.FixturesMass); + // Special handling for humanoid data related to metempsychosis. This function is needed for Paradox Anomaly code to play nice with reincarnated people + var pref = humanoid.LastProfileLoaded; + if (pref == null + || !_prototypeManager.TryIndex(humanoid.Species, out var speciesPrototype)) + return false; - if (_configManager.GetCVar(CCVars.BiomassEasyMode)) - cloningCost = (int) Math.Round(cloningCost * EasyModeCloningCost); + // Yes, this can return true without making a body. If it returns true, we're making clone soup instead. + if (CheckGeneticDamage(uid, bodyToClone, clonePod, out var geneticDamage, failChanceModifier)) + return true; - // Check if they have the uncloneable trait - if (TryComp(bodyToClone, out _)) - { - if (clonePod.ConnectedConsole != null) - { - _chatSystem.TrySendInGameICMessage(clonePod.ConnectedConsole.Value, - Loc.GetString("cloning-console-uncloneable-trait-error"), - InGameICChatType.Speak, false); - } + var mob = FetchAndSpawnMob(uid, clonePod, pref, speciesPrototype, humanoid, bodyToClone, geneticDamage); - return false; - } + var ev = new CloningEvent(bodyToClone, mob); + RaiseLocalEvent(bodyToClone, ref ev); - // biomass checks - var biomassAmount = _material.GetMaterialAmount(uid, clonePod.RequiredMaterial); + if (!ev.NameHandled) + _metaSystem.SetEntityName(mob, MetaData(bodyToClone).EntityName); - if (biomassAmount < cloningCost) - { - if (clonePod.ConnectedConsole != null) - _chatSystem.TrySendInGameICMessage(clonePod.ConnectedConsole.Value, Loc.GetString("cloning-console-chat-error", ("units", cloningCost)), InGameICChatType.Speak, false); - return false; - } + var cloneMindReturn = EntityManager.AddComponent(mob); + cloneMindReturn.Mind = mindEnt.Comp; + cloneMindReturn.Parent = uid; + _containerSystem.Insert(mob, clonePod.BodyContainer); + ClonesWaitingForMind.Add(mindEnt.Comp, mob); + UpdateStatus(uid, CloningPodStatus.NoMind, clonePod); + _euiManager.OpenEui(new AcceptCloningEui(mindEnt, mindEnt.Comp, this), client); - _material.TryChangeMaterialAmount(uid, clonePod.RequiredMaterial, -cloningCost); - clonePod.UsedBiomass = cloningCost; - // end of biomass checks + clonePod.ActivelyCloning = true; - // genetic damage checks - if (TryComp(bodyToClone, out var damageable) && - damageable.Damage.DamageDict.TryGetValue("Cellular", out var cellularDmg)) - { - var chance = Math.Clamp((float) (cellularDmg / 100), 0, 1); - chance *= failChanceModifier; + if (_jobs.MindTryGetJob(mindEnt, out _, out var prototype)) + foreach (var special in prototype.Special) + if (special is AddComponentSpecial) + special.AfterEquip(mob); - if (cellularDmg > 0 && clonePod.ConnectedConsole != null) - _chatSystem.TrySendInGameICMessage(clonePod.ConnectedConsole.Value, Loc.GetString("cloning-console-cellular-warning", ("percent", Math.Round(100 - chance * 100))), InGameICChatType.Speak, false); + return true; + } - if (_robustRandom.Prob(chance)) - { - UpdateStatus(uid, CloningPodStatus.Gore, clonePod); - clonePod.FailedClone = true; - AddComp(uid); - return true; - } - // End Nyano-code. - } - // end of genetic damage checks + /// + /// Begins the cloning timer, which at the end can either produce clone soup, or a functional body, depending on if anything interrupts the procedure. + /// + public void AttemptCloning(EntityUid cloningPod, CloningPodComponent cloningPodComponent) + { + if (cloningPodComponent.BodyContainer.ContainedEntity is { Valid: true } entity + && TryComp(entity, out var physics) + && physics.Mass > 71) + Timer.Spawn(TimeSpan.FromSeconds(cloningPodComponent.CloningTime * _contests.MassContest(entity, physics, true)), () => EndCloning(cloningPod, cloningPodComponent)); - var mob = FetchAndSpawnMob(clonePod, pref, speciesPrototype, humanoid, bodyToClone, karmaBonus); //DeltaV Replaces CloneAppearance with Metem/Clone via FetchAndSpawnMob + Timer.Spawn(TimeSpan.FromSeconds(cloningPodComponent.CloningTime), () => EndCloning(cloningPod, cloningPodComponent)); + } - ///Nyano - Summary: adds the potential psionic trait to the reanimated mob. - EnsureComp(mob); + /// + /// Ding, your body is ready. Time to find out if it's soup or solid. + /// + public void EndCloning(EntityUid cloningPod, CloningPodComponent cloningPodComponent) + { + if (!cloningPodComponent.ActivelyCloning + || !_powerReceiverSystem.IsPowered(cloningPod) + || cloningPodComponent.BodyContainer.ContainedEntity == null + || cloningPodComponent.FailedClone) + EndFailedCloning(cloningPod, cloningPodComponent); //Surprise, it's soup! - var ev = new CloningEvent(bodyToClone, mob); - RaiseLocalEvent(bodyToClone, ref ev); + Eject(cloningPod, cloningPodComponent); //Hey look, a body! + } - if (!ev.NameHandled) - _metaSystem.SetEntityName(mob, MetaData(bodyToClone).EntityName); + public void UpdateStatus(EntityUid podUid, CloningPodStatus status, CloningPodComponent cloningPod) + { + cloningPod.Status = status; + _appearance.SetData(podUid, CloningPodVisuals.Status, cloningPod.Status); + } - var cloneMindReturn = EntityManager.AddComponent(mob); - cloneMindReturn.Mind = mind; - cloneMindReturn.Parent = uid; - _containerSystem.Insert(mob, clonePod.BodyContainer); - ClonesWaitingForMind.Add(mind, mob); - UpdateStatus(uid, CloningPodStatus.NoMind, clonePod); - _euiManager.OpenEui(new AcceptCloningEui(mindEnt, mind, this), client); + /// + /// This function handles the Clone vs. Metem logic, as well as creation of the new body. + /// + private EntityUid FetchAndSpawnMob( + EntityUid clonePod, + CloningPodComponent clonePodComp, + HumanoidCharacterProfile pref, + SpeciesPrototype speciesPrototype, + HumanoidAppearanceComponent humanoid, + EntityUid bodyToClone, + float geneticDamage + ) + { + List sexes = new(); + bool switchingSpecies = false; + var toSpawn = speciesPrototype.Prototype; + var forceOldProfile = true; + var oldKarma = 0; + var oldGender = humanoid.Gender; + if (TryComp(bodyToClone, out var oldKarmaComp)) + oldKarma += oldKarmaComp.Score; + + if (clonePodComp.DoMetempsychosis) + { + toSpawn = GetSpawnEntity(bodyToClone, clonePodComp, speciesPrototype, oldKarma, out var newSpecies, out var changeProfile); + forceOldProfile = !changeProfile; + oldKarma++; - AddComp(uid); + if (changeProfile) + geneticDamage = 0; - // TODO: Ideally, components like this should be components on the mind entity so this isn't necessary. - // Add on special job components to the mob. - if (_jobs.MindTryGetJob(mindEnt, out _, out var prototype)) + if (newSpecies != null) { - foreach (var special in prototype.Special) - { - if (special is AddComponentSpecial) - special.AfterEquip(mob); - } - } - - return true; - } + sexes = newSpecies.Sexes; - public void UpdateStatus(EntityUid podUid, CloningPodStatus status, CloningPodComponent cloningPod) - { - cloningPod.Status = status; - _appearance.SetData(podUid, CloningPodVisuals.Status, cloningPod.Status); + if (speciesPrototype.ID != newSpecies.ID) + switchingSpecies = true; + } } + EntityUid mob = Spawn(toSpawn, _transformSystem.GetMapCoordinates(clonePod)); + EnsureComp(mob, out var newKarma); + newKarma.Score += oldKarma; - public override void Update(float frameTime) - { - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var _, out var cloning)) - { - if (!_powerReceiverSystem.IsPowered(uid)) - continue; + UpdateCloneDamage(mob, clonePodComp, geneticDamage); + UpdateCloneAppearance(mob, pref, humanoid, sexes, oldGender, switchingSpecies, forceOldProfile, out var gender); + var ev = new CloningEvent(bodyToClone, mob); + RaiseLocalEvent(bodyToClone, ref ev); - if (cloning.BodyContainer.ContainedEntity == null && !cloning.FailedClone) - continue; + if (!ev.NameHandled) + _metaSystem.SetEntityName(mob, MetaData(bodyToClone).EntityName); - cloning.CloningProgress += frameTime; - if (cloning.CloningProgress < cloning.CloningTime) - continue; + UpdateGrammar(mob, gender); + CleanupCloneComponents(mob, bodyToClone, forceOldProfile, clonePodComp.DoMetempsychosis); + UpdateHungerAndThirst(mob, clonePodComp); - if (cloning.FailedClone) - EndFailedCloning(uid, cloning); - else - Eject(uid, cloning); - } - } + return mob; + } - /// - /// On emag, spawns a failed clone when cloning process fails which attacks nearby crew. - /// - private void OnEmagged(EntityUid uid, CloningPodComponent clonePod, ref GotEmaggedEvent args) + public string GetSpawnEntity(EntityUid oldBody, CloningPodComponent component, SpeciesPrototype oldSpecies, int karma, out SpeciesPrototype? species, out bool changeProfile) + { + changeProfile = true; + species = oldSpecies; + if (!_prototypeManager.TryIndex(component.MetempsychoticHumanoidPool, out var humanoidPool) + || !_prototypeManager.TryIndex(humanoidPool.Pick(), out var speciesPrototype) + || !_prototypeManager.TryIndex(component.MetempsychoticNonHumanoidPool, out var nonHumanoidPool) + || !_prototypeManager.TryIndex(nonHumanoidPool.Pick(), out var entityPrototype)) { - if (!this.IsPowered(uid, EntityManager)) - return; - - _audio.PlayPvs(clonePod.SparkSound, uid); - _popupSystem.PopupEntity(Loc.GetString("cloning-pod-component-upgrade-emag-requirement"), uid); - args.Handled = true; + DebugTools.Assert("Could not index species for metempsychotic machine."); + changeProfile = false; + return oldSpecies.Prototype; } + var chance = (component.HumanoidBaseChance - karma * component.KarmaOffset) * _contests.MindContest(oldBody, true); - public void Eject(EntityUid uid, CloningPodComponent? clonePod) - { - if (!Resolve(uid, ref clonePod)) - return; - - if (clonePod.BodyContainer.ContainedEntity is not { Valid: true } entity || clonePod.CloningProgress < clonePod.CloningTime) - return; - - EntityManager.RemoveComponent(entity); - _containerSystem.Remove(entity, clonePod.BodyContainer); - clonePod.CloningProgress = 0f; - clonePod.UsedBiomass = 0; - UpdateStatus(uid, CloningPodStatus.Idle, clonePod); - RemCompDeferred(uid); - } - private void EndFailedCloning(EntityUid uid, CloningPodComponent clonePod) - { - clonePod.FailedClone = false; - clonePod.CloningProgress = 0f; - UpdateStatus(uid, CloningPodStatus.Idle, clonePod); - var transform = Transform(uid); - var indices = _transformSystem.GetGridTilePositionOrDefault((uid, transform)); - var tileMix = _atmosphereSystem.GetTileMixture(transform.GridUid, null, indices, true); - if (HasComp(uid)) - { - _audio.PlayPvs(clonePod.ScreamSound, uid); - Spawn(clonePod.MobSpawnId, transform.Coordinates); - } - - Solution bloodSolution = new(); - - var i = 0; - while (i < 1) - { - tileMix?.AdjustMoles(Gas.Ammonia, 6f); - bloodSolution.AddReagent("Blood", 50); - if (_robustRandom.Prob(0.2f)) - i++; - } - _puddleSystem.TrySpillAt(uid, bloodSolution, out _); - - if (!HasComp(uid)) - { - _material.SpawnMultipleFromMaterial(_robustRandom.Next(1, (int) (clonePod.UsedBiomass / 2.5)), clonePod.RequiredMaterial, Transform(uid).Coordinates); - } + var ev = new ReincarnatingEvent(oldBody, chance); + RaiseLocalEvent(oldBody, ref ev); - clonePod.UsedBiomass = 0; - RemCompDeferred(uid); - } + chance = ev.OverrideChance + ? ev.ReincarnationChances + : chance * ev.ReincarnationChanceModifier; - /// - /// Start Nyano Code: Handles fetching the mob and any appearance stuff... - /// - private EntityUid FetchAndSpawnMob(CloningPodComponent clonePod, HumanoidCharacterProfile pref, SpeciesPrototype speciesPrototype, HumanoidAppearanceComponent humanoid, EntityUid bodyToClone, float karmaBonus) + switch (ev.ForcedType) { - List sexes = new(); - bool switchingSpecies = false; - bool applyKarma = false; - var toSpawn = speciesPrototype.Prototype; - TryComp(bodyToClone, out var oldKarma); - - if (TryComp(clonePod.Owner, out var metem)) - { - toSpawn = _metem.GetSpawnEntity(clonePod.Owner, karmaBonus, metem, speciesPrototype, out var newSpecies, oldKarma?.Score); - applyKarma = true; - - if (newSpecies != null) + case ForcedMetempsychosisType.None: + if (!ev.NeverTrulyClone + && chance > 1 + && _random.Prob(chance - 1)) { - sexes = newSpecies.Sexes; - - if (speciesPrototype.ID != newSpecies.ID) - switchingSpecies = true; - - speciesPrototype = newSpecies; + changeProfile = false; + return oldSpecies.Prototype; } - } - var mob = Spawn(toSpawn, Transform(clonePod.Owner).MapPosition); - if (TryComp(mob, out var newHumanoid)) - { - if (switchingSpecies || HasComp(bodyToClone)) + chance = Math.Clamp(chance, 0, 1); + if (_random.Prob(chance)) { - pref = HumanoidCharacterProfile.RandomWithSpecies(newHumanoid.Species); - if (sexes.Contains(humanoid.Sex)) - pref = pref.WithSex(humanoid.Sex); - - pref = pref.WithGender(humanoid.Gender); - pref = pref.WithAge(humanoid.Age); - + species = speciesPrototype; + return speciesPrototype.Prototype; } - _humanoidSystem.LoadProfile(mob, pref); - } + species = null; + return entityPrototype.ID; - if (applyKarma) - { - var karma = EnsureComp(mob); - karma.Score++; - if (oldKarma != null) - karma.Score += oldKarma.Score; - } + case ForcedMetempsychosisType.Clone: + changeProfile = false; + return oldSpecies.Prototype; - var ev = new CloningEvent(bodyToClone, mob); - RaiseLocalEvent(bodyToClone, ref ev); + case ForcedMetempsychosisType.RandomHumanoid: + species = speciesPrototype; + return speciesPrototype.Prototype; - if (!ev.NameHandled) - _metaSystem.SetEntityName(mob, MetaData(bodyToClone).EntityName); - - var grammar = EnsureComp(mob); - grammar.ProperNoun = true; - grammar.Gender = humanoid.Gender; - Dirty(grammar); - - EnsureComp(mob); - EnsureComp(mob); - EnsureComp(mob); - EnsureComp(mob); - EnsureComp(mob); - EnsureComp(mob); - RemComp(mob); - RemComp(mob); - RemComp(mob); - RemComp(mob); - - _tag.AddTag(mob, "DoorBumpOpener"); - - return mob; - } - //End Nyano Code - public void Reset(RoundRestartCleanupEvent ev) - { - ClonesWaitingForMind.Clear(); + case ForcedMetempsychosisType.RandomNonHumanoid: + species = null; + return entityPrototype.ID; } + changeProfile = false; + return oldSpecies.Prototype; } } diff --git a/Content.Server/Cloning/Components/ActiveCloningPodComponent.cs b/Content.Server/Cloning/Components/ActiveCloningPodComponent.cs deleted file mode 100644 index 11e0e36166..0000000000 --- a/Content.Server/Cloning/Components/ActiveCloningPodComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace Content.Server.Cloning.Components; - -/// -/// Shrimply a tracking component for pods that are cloning. -/// -[RegisterComponent] -public sealed partial class ActiveCloningPodComponent : Component -{ -} diff --git a/Content.Server/Nyanotrasen/Cloning/MetempsychosisKarmaComponent.cs b/Content.Server/Cloning/Components/MetempsychosisKarmaComponent.cs similarity index 80% rename from Content.Server/Nyanotrasen/Cloning/MetempsychosisKarmaComponent.cs rename to Content.Server/Cloning/Components/MetempsychosisKarmaComponent.cs index 246495cee0..5f7b7af1cd 100644 --- a/Content.Server/Nyanotrasen/Cloning/MetempsychosisKarmaComponent.cs +++ b/Content.Server/Cloning/Components/MetempsychosisKarmaComponent.cs @@ -1,4 +1,4 @@ -namespace Content.Server.Nyanotrasen.Cloning +namespace Content.Server.Cloning.Components { /// /// This tracks how many times you have already been cloned and lowers your chance of getting a humanoid each time. @@ -6,7 +6,7 @@ namespace Content.Server.Nyanotrasen.Cloning [RegisterComponent] public sealed partial class MetempsychosisKarmaComponent : Component { - [DataField("score")] + [DataField] public int Score = 0; } } diff --git a/Content.Server/Connection/ConnectionManager.cs b/Content.Server/Connection/ConnectionManager.cs index 64e93c5af1..d9c9a9d125 100644 --- a/Content.Server/Connection/ConnectionManager.cs +++ b/Content.Server/Connection/ConnectionManager.cs @@ -12,6 +12,10 @@ using Robust.Shared.Configuration; using Robust.Shared.Network; using Robust.Shared.Timing; +#if LPP_Sponsors // _LostParadise-Sponsors +using Content.Server._LostParadise.Sponsors; +using Content.Shared._LostParadise.CCVar; +#endif namespace Content.Server.Connection @@ -49,6 +53,9 @@ public sealed class ConnectionManager : IConnectionManager [Dependency] private readonly ServerDbEntryManager _serverDbEntry = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly ILogManager _logManager = default!; +#if LPP_Sponsors // _LostParadise-Sponsors + [Dependency] private readonly SponsorsManager _sponsorsManager = default!; +#endif private readonly Dictionary _temporaryBypasses = []; private ISawmill _sawmill = default!; @@ -157,7 +164,13 @@ private async Task NetMgrOnConnecting(NetConnectingArgs e) var adminData = await _dbManager.GetAdminDataForAsync(e.UserId); + bool isPrivileged; +#if LPP_Sponsors // _LostParadise-Sponsors + isPrivileged = await HasPrivilegedJoin(e.UserId); + if (_cfg.GetCVar(CCVars.PanicBunkerEnabled) && adminData == null && !isPrivileged) +#else if (_cfg.GetCVar(CCVars.PanicBunkerEnabled) && adminData == null) +#endif { var showReason = _cfg.GetCVar(CCVars.PanicBunkerShowReason); var customReason = _cfg.GetCVar(CCVars.PanicBunkerCustomReason); @@ -205,7 +218,7 @@ private async Task NetMgrOnConnecting(NetConnectingArgs e) } - var isPrivileged = await HasPrivilegedJoin(userId); + isPrivileged = await HasPrivilegedJoin(userId); var isQueueEnabled = _cfg.GetCVar(CCVars.QueueEnabled); if (_plyMgr.PlayerCount >= _cfg.GetCVar(CCVars.SoftMaxPlayers) && !isPrivileged && !isQueueEnabled) @@ -310,7 +323,16 @@ public async Task HasPrivilegedJoin(NetUserId userId) var wasInGame = EntitySystem.TryGet(out var ticker) && ticker.PlayerGameStatuses.TryGetValue(userId, out var status) && status == PlayerGameStatus.JoinedGame; - return isAdmin || wasInGame; + +#if LPP_Sponsors // _LostParadise-Sponsors + var havePriorityJoin = _sponsorsManager.TryGetInfo(userId, out var sponsor) && sponsor.HavePriorityJoin; +#endif + + return isAdmin || +#if LPP_Sponsors // _LostParadise-Sponsors + havePriorityJoin || +#endif + wasInGame; } } } diff --git a/Content.Server/Content.Server.csproj b/Content.Server/Content.Server.csproj index 8782454eac..1896b3c5f9 100644 --- a/Content.Server/Content.Server.csproj +++ b/Content.Server/Content.Server.csproj @@ -13,6 +13,7 @@ enable true + diff --git a/Content.Server/Database/ServerDbBase.cs b/Content.Server/Database/ServerDbBase.cs index fceeb4d487..69c6e277ff 100644 --- a/Content.Server/Database/ServerDbBase.cs +++ b/Content.Server/Database/ServerDbBase.cs @@ -40,6 +40,9 @@ public ServerDbBase(ISawmill opsLog) .Include(p => p.Profiles).ThenInclude(h => h.Jobs) .Include(p => p.Profiles).ThenInclude(h => h.Antags) .Include(p => p.Profiles).ThenInclude(h => h.Traits) +#if LPP_Sponsors + .Include(p => p.Profiles).ThenInclude(h => h.Donate) // Lost Paradise Donate Preferences +#endif .Include(p => p.Profiles).ThenInclude(h => h.Loadouts) .AsSingleQuery() .SingleOrDefaultAsync(p => p.UserId == userId.UserId); @@ -89,6 +92,9 @@ public async Task SaveCharacterSlotAsync(NetUserId userId, ICharacterProfile? pr .Include(p => p.Jobs) .Include(p => p.Antags) .Include(p => p.Traits) +#if LPP_Sponsors + .Include(p => p.Donate) // Lost Paradise Donate Preferences +#endif .Include(p => p.Loadouts) .AsSplitQuery() .SingleOrDefault(h => h.Slot == slot); @@ -177,6 +183,9 @@ private static HumanoidCharacterProfile ConvertProfiles(Profile profile) var antags = profile.Antags.Select(a => a.AntagName); var traits = profile.Traits.Select(t => t.TraitName); var loadouts = profile.Loadouts.Select(t => t.LoadoutName); +#if LPP_Sponsors + var donates = profile.Donate.Select(t => t.DonateName); // Lost Paradise Donate Preferences +#endif var sex = Sex.Male; if (Enum.TryParse(profile.Sex, true, out var sexVal)) @@ -246,6 +255,9 @@ private static HumanoidCharacterProfile ConvertProfiles(Profile profile) antags.ToList(), traits.ToList(), loadouts.ToList() +#if LPP_Sponsors + , donates.ToList() // Lost Paradise Donate Preferences +#endif ); } @@ -301,6 +313,14 @@ private static Profile ConvertProfiles(HumanoidCharacterProfile humanoid, int sl .Select(t => new Trait {TraitName = t}) ); +#if LPP_Sponsors + profile.Donate.Clear(); // Lost Paradise Donate Preferences + profile.Donate.AddRange( + humanoid.DonatePreferences + .Select(d => new Donate { DonateName = d }) + ); +#endif + profile.Loadouts.Clear(); profile.Loadouts.AddRange( humanoid.LoadoutPreferences @@ -1580,5 +1600,20 @@ protected abstract class DbGuard : IAsyncDisposable public abstract ValueTask DisposeAsync(); } +#if LPP_Sponsors + #region Sponsors + public async Task GetSponsorInfo(NetUserId userId) // _LostParadise-Sponsors + { + await using var db = await GetDb(); + return await db.DbContext.Sponsors.AsNoTracking().FirstOrDefaultAsync(x => x.UserId == userId.UserId); + } + + public async Task GetSponsorList() // _LostParadise-Sponsors + { + await using var db = await GetDb(); + return await db.DbContext.Sponsors.AsNoTracking().ToArrayAsync(); + } + #endregion +#endif } } diff --git a/Content.Server/Database/ServerDbManager.cs b/Content.Server/Database/ServerDbManager.cs index 554dd30743..5c02b22e1d 100644 --- a/Content.Server/Database/ServerDbManager.cs +++ b/Content.Server/Database/ServerDbManager.cs @@ -285,6 +285,13 @@ Task AddConnectionLogAsync( Task MarkMessageAsSeen(int id, bool dismissedToo); #endregion + +#if LPP_Sponsors + #region Sponsors + Task GetSponsorInfo(NetUserId userId, CancellationToken cancel = default); //_LostParadise-Sponsors + Task GetSponsorList(CancellationToken cancel = default); + #endregion +#endif } public sealed class ServerDbManager : IServerDbManager @@ -916,6 +923,20 @@ private IAsyncEnumerable RunDbCommand(Func> command) return enumerable; } +#if LPP_Sponsors // _LostParadise-Sponsors + public async Task GetSponsorInfo(NetUserId userId, CancellationToken cancel = default) + { + DbWriteOpsMetric.Inc(); + return await _db.GetSponsorInfo(userId); + } + + public async Task GetSponsorList(CancellationToken cancel = default) + { + DbWriteOpsMetric.Inc(); + return await _db.GetSponsorList(); + } +#endif + private DbContextOptions CreatePostgresOptions() { var host = _cfg.GetCVar(CCVars.DatabasePgHost); diff --git a/Content.Server/Destructible/Thresholds/Behaviors/PopupBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/PopupBehavior.cs index 59589c19aa..1d7ce24f60 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/PopupBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/PopupBehavior.cs @@ -1,6 +1,6 @@ using Content.Shared.Popups; -namespace Content.Server.Destructible.Thresholds.Behaviors; +namespace Content.Server.Destructible.Thresholds.Behaviors; /// /// Shows a popup for everyone. diff --git a/Content.Server/Entry/EntryPoint.cs b/Content.Server/Entry/EntryPoint.cs index 9c52020b17..972f5084cd 100644 --- a/Content.Server/Entry/EntryPoint.cs +++ b/Content.Server/Entry/EntryPoint.cs @@ -32,6 +32,9 @@ using Robust.Shared.Prototypes; using Robust.Shared.Timing; using Robust.Shared.Utility; +#if LPP_Sponsors // _LostParadise-Sponsors +using Content.Server._LostParadise.Sponsors; +#endif namespace Content.Server.Entry { @@ -109,6 +112,9 @@ public override void Init() IoCManager.Resolve().Initialize(); IoCManager.Resolve().Initialize(); IoCManager.Resolve().Initialize(); +#if LPP_Sponsors // _LostParadise-Sponsors + IoCManager.Resolve().Initialize(); +#endif _voteManager.Initialize(); _updateManager.Initialize(); diff --git a/Content.Server/IoC/ServerContentIoC.cs b/Content.Server/IoC/ServerContentIoC.cs index 80d31f74a8..f645253477 100644 --- a/Content.Server/IoC/ServerContentIoC.cs +++ b/Content.Server/IoC/ServerContentIoC.cs @@ -26,6 +26,9 @@ using Content.Shared.Administration.Managers; using Content.Shared.Kitchen; using Content.Shared.Players.PlayTimeTracking; +#if LPP_Sponsors // _LostParadise-Sponsors +using Content.Server._LostParadise.Sponsors; +#endif namespace Content.Server.IoC { @@ -67,6 +70,9 @@ public static void Register() IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); +#if LPP_Sponsors // _LostParadise-Sponsors + IoCManager.Register(); +#endif } } } diff --git a/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerSystem.cs b/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerSystem.cs index d07858aec5..eaf04d64b2 100644 --- a/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerSystem.cs +++ b/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerSystem.cs @@ -28,7 +28,6 @@ using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Physics.Components; -using Robust.Shared.Prototypes; using Robust.Shared.Random; namespace Content.Server.Medical.BiomassReclaimer @@ -81,11 +80,9 @@ public override void Update(float frameTime) } if (reclaimer.ProcessingTimer > 0) - { continue; - } - var actualYield = (int) (reclaimer.CurrentExpectedYield); // can only have integer biomass + var actualYield = (int) reclaimer.CurrentExpectedYield; // Can only have integer biomass physically reclaimer.CurrentExpectedYield = reclaimer.CurrentExpectedYield - actualYield; // store non-integer leftovers _material.SpawnMultipleFromMaterial(actualYield, BiomassPrototype, Transform(uid).Coordinates); @@ -109,13 +106,9 @@ public override void Initialize() private void OnSuicide(Entity ent, ref SuicideEvent args) { - if (args.Handled) - return; - - if (HasComp(ent)) - return; - - if (TryComp(ent, out var power) && !power.Powered) + if (args.Handled + || HasComp(ent) + || TryComp(ent, out var power) && !power.Powered) return; _popup.PopupEntity(Loc.GetString("biomass-reclaimer-suicide-others", ("victim", args.Victim)), ent, PopupType.LargeCaution); @@ -138,11 +131,9 @@ private void OnShutdown(EntityUid uid, ActiveBiomassReclaimerComponent component private void OnPowerChanged(EntityUid uid, BiomassReclaimerComponent component, ref PowerChangedEvent args) { - if (args.Powered) - { - if (component.ProcessingTimer > 0) - EnsureComp(uid); - } + if (args.Powered + && component.ProcessingTimer > 0) + EnsureComp(uid); else RemComp(uid); } @@ -153,16 +144,14 @@ private void OnUnanchorAttempt(EntityUid uid, ActiveBiomassReclaimerComponent co } private void OnAfterInteractUsing(Entity reclaimer, ref AfterInteractUsingEvent args) { - if (!args.CanReach || args.Target == null) - return; - - if (!CanGib(reclaimer, args.Used)) + if (!args.CanReach + || args.Target == null + || !CanGib(reclaimer, args.Used)) return; - if (!TryComp(args.Used, out var physics)) - return; - - var delay = reclaimer.Comp.BaseInsertionDelay * physics.FixturesMass; + var delay = reclaimer.Comp.BaseInsertionDelay * (TryComp(args.Used, out var physics) + ? physics.FixturesMass + : 1); _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, delay, new ReclaimerDoAfterEvent(), reclaimer, target: args.Target, used: args.Used) { BreakOnTargetMove = true, @@ -186,10 +175,11 @@ private void OnClimbedOn(Entity reclaimer, ref Climbe private void OnDoAfter(Entity reclaimer, ref ReclaimerDoAfterEvent args) { - if (args.Handled || args.Cancelled) - return; - - if (args.Args.Used == null || args.Args.Target == null || !HasComp(args.Args.Target.Value)) + if (args.Handled + || args.Cancelled + || args.Args.Used == null + || args.Args.Target == null + || !HasComp(args.Args.Target.Value)) return; _adminLogger.Add(LogType.Action, LogImpact.Extreme, $"{ToPrettyString(args.Args.User):player} used a biomass reclaimer to gib {ToPrettyString(args.Args.Target.Value):target} in {ToPrettyString(reclaimer):reclaimer}"); @@ -207,18 +197,13 @@ private void StartProcessing(EntityUid toProcess, Entity(ent); if (TryComp(toProcess, out var stream)) - { component.BloodReagent = stream.BloodReagent; - } if (TryComp(toProcess, out var butcherableComponent)) - { component.SpawnedEntities = butcherableComponent.SpawnedEntities; - } - var expectedYield = physics.FixturesMass * component.YieldPerUnitMass; - if (HasComp(toProcess)) - expectedYield *= component.ProduceYieldMultiplier; - component.CurrentExpectedYield += expectedYield; + component.CurrentExpectedYield += HasComp(toProcess) + ? physics.FixturesMass * component.YieldPerUnitMass * component.ProduceYieldMultiplier + : physics.FixturesMass * component.YieldPerUnitMass; component.ProcessingTimer = physics.FixturesMass * component.ProcessingTimePerUnitMass; @@ -227,31 +212,22 @@ private void StartProcessing(EntityUid toProcess, Entity reclaimer, EntityUid dragged) { - if (HasComp(reclaimer)) + if (HasComp(reclaimer) + || !Transform(reclaimer).Anchored + || TryComp(reclaimer, out var power) && !power.Powered) return false; bool isPlant = HasComp(dragged); - if (!isPlant && !HasComp(dragged)) - return false; - - if (!Transform(reclaimer).Anchored) - return false; - - if (TryComp(reclaimer, out var power) && !power.Powered) + if (!HasComp(dragged) && (!HasComp(dragged) || reclaimer.Comp.SafetyEnabled && !_mobState.IsDead(dragged))) return false; - if (!isPlant && reclaimer.Comp.SafetyEnabled && !_mobState.IsDead(dragged)) + if (_configManager.GetCVar(CCVars.CloningReclaimSouledBodies) + && HasComp(dragged) + && _minds.TryGetMind(dragged, out _, out var mind) + && mind.UserId != null + && _playerManager.TryGetSessionById(mind.UserId.Value, out _)) return false; - // Reject souled bodies in easy mode. - if (_configManager.GetCVar(CCVars.BiomassEasyMode) && - HasComp(dragged) && - _minds.TryGetMind(dragged, out _, out var mind)) - { - if (mind.UserId != null && _playerManager.TryGetSessionById(mind.UserId.Value, out _)) - return false; - } - return true; } } diff --git a/Content.Server/Medical/MedicalScannerSystem.cs b/Content.Server/Medical/MedicalScannerSystem.cs index 91184ddc16..a6ce43c408 100644 --- a/Content.Server/Medical/MedicalScannerSystem.cs +++ b/Content.Server/Medical/MedicalScannerSystem.cs @@ -15,7 +15,7 @@ using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Robust.Server.Containers; -using static Content.Shared.MedicalScanner.SharedMedicalScannerComponent; // Hmm... +using static Content.Shared.MedicalScanner.SharedMedicalScannerComponent; namespace Content.Server.Medical { @@ -78,22 +78,18 @@ private void OnRelayMovement(EntityUid uid, MedicalScannerComponent scannerCompo private void AddInsertOtherVerb(EntityUid uid, MedicalScannerComponent component, GetVerbsEvent args) { - if (args.Using == null || - !args.CanAccess || - !args.CanInteract || - IsOccupied(component) || - !CanScannerInsert(uid, args.Using.Value, component)) + if (args.Using == null + || !args.CanAccess + || !args.CanInteract + || IsOccupied(component) + || !CanScannerInsert(uid, args.Using.Value, component)) return; - var name = "Unknown"; - if (TryComp(args.Using.Value, out var metadata)) - name = metadata.EntityName; - InteractionVerb verb = new() { Act = () => InsertBody(uid, args.Target, component), Category = VerbCategory.Insert, - Text = name + Text = MetaData(args.Using.Value).EntityName }; args.Verbs.Add(verb); } @@ -115,11 +111,8 @@ private void AddAlternativeVerbs(EntityUid uid, MedicalScannerComponent componen }; args.Verbs.Add(verb); } - - // Self-insert verb - if (!IsOccupied(component) && - CanScannerInsert(uid, args.User, component) && - _blocker.CanMove(args.User)) + else if (CanScannerInsert(uid, args.User, component) + && _blocker.CanMove(args.User)) { AlternativeVerb verb = new() { @@ -147,59 +140,48 @@ private void OnPortDisconnected(EntityUid uid, MedicalScannerComponent component private void OnAnchorChanged(EntityUid uid, MedicalScannerComponent component, ref AnchorStateChangedEvent args) { - if (component.ConnectedConsole == null || !TryComp(component.ConnectedConsole, out var console)) + if (component.ConnectedConsole == null + || !args.Anchored + || !TryComp(component.ConnectedConsole, out var console) + || !_cloningConsoleSystem.RecheckConnections(component.ConnectedConsole.Value, console.CloningPod, uid, console)) return; - if (args.Anchored) - { - _cloningConsoleSystem.RecheckConnections(component.ConnectedConsole.Value, console.CloningPod, uid, console); - return; - } _cloningConsoleSystem.UpdateUserInterface(component.ConnectedConsole.Value, console); } + private MedicalScannerStatus GetStatus(EntityUid uid, MedicalScannerComponent scannerComponent) { - if (this.IsPowered(uid, EntityManager)) - { - var body = scannerComponent.BodyContainer.ContainedEntity; - if (body == null) - return MedicalScannerStatus.Open; + if (!this.IsPowered(uid, EntityManager)) + return MedicalScannerStatus.Off; - if (!TryComp(body.Value, out var state)) - { // Is not alive or dead or critical - return MedicalScannerStatus.Yellow; - } + var body = scannerComponent.BodyContainer.ContainedEntity; + if (body == null) + return MedicalScannerStatus.Open; - return GetStatusFromDamageState(body.Value, state); - } - return MedicalScannerStatus.Off; - } + if (!TryComp(body.Value, out var state)) + return MedicalScannerStatus.Yellow; - public static bool IsOccupied(MedicalScannerComponent scannerComponent) - { - return scannerComponent.BodyContainer.ContainedEntity != null; - } - - private MedicalScannerStatus GetStatusFromDamageState(EntityUid uid, MobStateComponent state) - { - if (_mobStateSystem.IsAlive(uid, state)) + if (_mobStateSystem.IsAlive(body.Value, state)) return MedicalScannerStatus.Green; - if (_mobStateSystem.IsCritical(uid, state)) + if (_mobStateSystem.IsCritical(body.Value, state)) return MedicalScannerStatus.Red; - if (_mobStateSystem.IsDead(uid, state)) + if (_mobStateSystem.IsDead(body.Value, state)) return MedicalScannerStatus.Death; return MedicalScannerStatus.Yellow; } + public static bool IsOccupied(MedicalScannerComponent scannerComponent) + { + return scannerComponent.BodyContainer.ContainedEntity != null; + } + private void UpdateAppearance(EntityUid uid, MedicalScannerComponent scannerComponent) { if (TryComp(uid, out var appearance)) - { _appearance.SetData(uid, MedicalScannerVisuals.Status, GetStatus(uid, scannerComponent), appearance); - } } public override void Update(float frameTime) @@ -214,20 +196,14 @@ public override void Update(float frameTime) var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var scanner)) - { UpdateAppearance(uid, scanner); - } } public void InsertBody(EntityUid uid, EntityUid to_insert, MedicalScannerComponent? scannerComponent) { - if (!Resolve(uid, ref scannerComponent)) - return; - - if (scannerComponent.BodyContainer.ContainedEntity != null) - return; - - if (!HasComp(to_insert)) + if (!Resolve(uid, ref scannerComponent) + || scannerComponent.BodyContainer.ContainedEntity != null + || !HasComp(to_insert)) return; _containerSystem.Insert(to_insert, scannerComponent.BodyContainer); @@ -236,10 +212,8 @@ public void InsertBody(EntityUid uid, EntityUid to_insert, MedicalScannerCompone public void EjectBody(EntityUid uid, MedicalScannerComponent? scannerComponent) { - if (!Resolve(uid, ref scannerComponent)) - return; - - if (scannerComponent.BodyContainer.ContainedEntity is not { Valid: true } contained) + if (!Resolve(uid, ref scannerComponent) + || scannerComponent.BodyContainer.ContainedEntity is not { Valid: true } contained) return; _containerSystem.Remove(contained, scannerComponent.BodyContainer); diff --git a/Content.Server/Nyanotrasen/Cloning/MetempsychoticMachineComponent.cs b/Content.Server/Nyanotrasen/Cloning/MetempsychoticMachineComponent.cs deleted file mode 100644 index 0adcc9b5b2..0000000000 --- a/Content.Server/Nyanotrasen/Cloning/MetempsychoticMachineComponent.cs +++ /dev/null @@ -1,22 +0,0 @@ -using Content.Shared.Random; - -namespace Content.Server.Nyanotrasen.Cloning -{ - [RegisterComponent] - public sealed partial class MetempsychoticMachineComponent : Component - { - /// - /// Chance you will spawn as a humanoid instead of a non humanoid. - /// - [DataField("humanoidBaseChance")] - public float HumanoidBaseChance = 0.75f; - - [ValidatePrototypeId] - [DataField("metempsychoticHumanoidPool")] - public string MetempsychoticHumanoidPool = "MetempsychoticHumanoidPool"; - - [ValidatePrototypeId] - [DataField("metempsychoticNonHumanoidPool")] - public string MetempsychoticNonHumanoidPool = "MetempsychoticNonhumanoidPool"; - } -} diff --git a/Content.Server/Nyanotrasen/Cloning/MetempsychoticMachineSystem.cs b/Content.Server/Nyanotrasen/Cloning/MetempsychoticMachineSystem.cs deleted file mode 100644 index 62dc1b078e..0000000000 --- a/Content.Server/Nyanotrasen/Cloning/MetempsychoticMachineSystem.cs +++ /dev/null @@ -1,47 +0,0 @@ -using Content.Shared.Humanoid.Prototypes; -using Content.Shared.Random; -using Content.Shared.Random.Helpers; -using Robust.Shared.Random; -using Robust.Shared.Prototypes; - -namespace Content.Server.Nyanotrasen.Cloning -{ - public sealed class MetempsychoticMachineSystem : EntitySystem - { - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - - private ISawmill _sawmill = default!; - - public string GetSpawnEntity(EntityUid uid, float karmaBonus, MetempsychoticMachineComponent component, SpeciesPrototype oldSpecies, out SpeciesPrototype? species, int? karma = null) - { - var chance = component.HumanoidBaseChance + karmaBonus; - - if (karma != null) - chance -= ((1 - component.HumanoidBaseChance) * (float) karma); - - if (chance > 1 && _random.Prob(chance - 1)) - { - species = oldSpecies; - return oldSpecies.Prototype; - } - else - chance = 1; - - chance = Math.Clamp(chance, 0, 1); - if (_random.Prob(chance) && - _prototypeManager.TryIndex(component.MetempsychoticHumanoidPool, out var humanoidPool) && - _prototypeManager.TryIndex(humanoidPool.Pick(), out var speciesPrototype)) - { - species = speciesPrototype; - return speciesPrototype.Prototype; - } - else - { - species = null; - _sawmill.Error("Could not index species for metempsychotic machine..."); - return "MobHuman"; - } - } - } -} diff --git a/Content.Server/Objectives/ObjectivesSystem.cs b/Content.Server/Objectives/ObjectivesSystem.cs index 20205b8b72..7286991b9f 100644 --- a/Content.Server/Objectives/ObjectivesSystem.cs +++ b/Content.Server/Objectives/ObjectivesSystem.cs @@ -1,5 +1,5 @@ using Content.Server.GameTicking; -using Content.Server.GameTicking.Rules.Components; +using Content.Server.GameTicking.Rules.Components; using Content.Server.Mind; using Content.Server.Shuttles.Systems; using Content.Shared.Cuffs.Components; diff --git a/Content.Server/Preferences/Managers/ServerPreferencesManager.cs b/Content.Server/Preferences/Managers/ServerPreferencesManager.cs index e262fde64d..b9c25c0128 100644 --- a/Content.Server/Preferences/Managers/ServerPreferencesManager.cs +++ b/Content.Server/Preferences/Managers/ServerPreferencesManager.cs @@ -13,6 +13,9 @@ using Robust.Shared.Network; using Robust.Shared.Player; using Robust.Shared.Prototypes; +#if LPP_Sponsors // _LostParadise-Sponsors +using Content.Server._LostParadise.Sponsors; +#endif namespace Content.Server.Preferences.Managers @@ -28,6 +31,9 @@ public sealed class ServerPreferencesManager : IServerPreferencesManager [Dependency] private readonly IServerDbManager _db = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IPrototypeManager _protos = default!; +#if LPP_Sponsors // _LostParadise-Sponsors + [Dependency] private readonly SponsorsManager _sponsors = default!; +#endif // Cache player prefs on the server so we don't need as much async hell related to them. private readonly Dictionary _cachedPlayerPrefs = @@ -54,7 +60,13 @@ private async void HandleSelectCharacterMessage(MsgSelectCharacter message) return; } - if (index < 0 || index >= MaxCharacterSlots) + if (index < 0 || index >= +#if LPP_Sponsors // _LostParadise-Sponsors + GetMaxUserCharacterSlots(userId) +#else + MaxCharacterSlots +#endif + ) { return; } @@ -94,7 +106,13 @@ private async void HandleUpdateCharacterMessage(MsgUpdateCharacter message) return; } - if (slot < 0 || slot >= MaxCharacterSlots) + if (slot < 0 || slot >= +#if LPP_Sponsors // _LostParadise-Sponsors + GetMaxUserCharacterSlots(userId) +#else + MaxCharacterSlots +#endif + ) { return; } @@ -103,7 +121,12 @@ private async void HandleUpdateCharacterMessage(MsgUpdateCharacter message) var session = _playerManager.GetSessionById(userId); var collection = IoCManager.Instance!; +#if LPP_Sponsors // _LostParadise-Sponsors + var allowedMarkings = _sponsors.TryGetInfo(userId, out var sponsor) ? sponsor.AllowedMarkings : new string[] { }; + profile.EnsureValid(session, collection, allowedMarkings); +#else profile.EnsureValid(session, collection); +#endif var profiles = new Dictionary(curPrefs.Characters) { @@ -129,7 +152,13 @@ private async void HandleDeleteCharacterMessage(MsgDeleteCharacter message) return; } - if (slot < 0 || slot >= MaxCharacterSlots) + if (slot < 0 || slot >= +#if LPP_Sponsors // _LostParadise-Sponsors + GetMaxUserCharacterSlots(userId) +#else + MaxCharacterSlots +#endif + ) { return; } @@ -216,6 +245,15 @@ public void OnClientDisconnected(ICommonSession session) _cachedPlayerPrefs.Remove(session.UserId); } +#if LPP_Sponsors // _LostParadise-Sponsors + private int GetMaxUserCharacterSlots(NetUserId userId) + { + var maxSlots = _cfg.GetCVar(CCVars.GameMaxCharacterSlots); + var extraSlots = _sponsors.TryGetInfo(userId, out var sponsor) ? sponsor.ExtraSlots : 0; + return maxSlots + extraSlots; + } +#endif + public bool HavePreferencesLoaded(ICommonSession session) { return _cachedPlayerPrefs.ContainsKey(session.UserId); @@ -273,11 +311,20 @@ private async Task GetOrCreatePreferencesAsync(NetUserId user private PlayerPreferences SanitizePreferences(ICommonSession session, PlayerPreferences prefs, IDependencyCollection collection) { + +#if LPP_Sponsors // _LostParadise-Sponsors + var allowedMarkings = _sponsors.TryGetInfo(session.UserId, out var sponsor) ? sponsor.AllowedMarkings : new string[] { }; +#endif // Clean up preferences in case of changes to the game, // such as removed jobs still being selected. return new PlayerPreferences(prefs.Characters.Select(p => { - return new KeyValuePair(p.Key, p.Value.Validated(session, collection)); + return new KeyValuePair(p.Key, p.Value.Validated( + session, collection +#if LPP_Sponsors // _LostParadise-Sponsors + , allowedMarkings +#endif + )); }), prefs.SelectedCharacterIndex, prefs.AdminOOCColor); } diff --git a/Content.Server/Research/Oracle/OracleSystem.cs b/Content.Server/Research/Oracle/OracleSystem.cs index a93627dbd3..15f0a47447 100644 --- a/Content.Server/Research/Oracle/OracleSystem.cs +++ b/Content.Server/Research/Oracle/OracleSystem.cs @@ -1,6 +1,7 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Server.Botany; +using Content.Server.Chat; using Content.Server.Chat.Managers; using Content.Server.Chat.Systems; using Content.Server.Chemistry.Containers.EntitySystems; @@ -13,6 +14,7 @@ using Content.Shared.Interaction; using Content.Shared.Mobs.Components; using Content.Shared.Psionics.Glimmer; +using Content.Shared.Psionics.Passives; using Content.Shared.Random.Helpers; using Content.Shared.Research.Components; using Content.Shared.Research.Prototypes; @@ -29,6 +31,7 @@ namespace Content.Server.Research.Oracle; public sealed class OracleSystem : EntitySystem { [Dependency] private readonly ChatSystem _chat = default!; + [Dependency] private readonly TelepathicChatSystem _tChat = default!; [Dependency] private readonly IChatManager _chatMan = default!; [Dependency] private readonly GlimmerSystem _glimmer = default!; [Dependency] private readonly IPrototypeManager _protoMan = default!; @@ -78,11 +81,11 @@ private void OnInteractHand(Entity oracle, ref InteractHandEven return; SendTelepathicInfo(oracle, actor.PlayerSession.Channel, - Loc.GetString("oracle-current-item", ("item", oracle.Comp.DesiredPrototype.Name))); + Loc.GetString("oracle-current-item", ("item", oracle.Comp.DesiredPrototype.Name)), HasComp(args.User)); if (oracle.Comp.LastDesiredPrototype != null) SendTelepathicInfo(oracle, actor.PlayerSession.Channel, - Loc.GetString("oracle-previous-item", ("item", oracle.Comp.LastDesiredPrototype.Name))); + Loc.GetString("oracle-previous-item", ("item", oracle.Comp.LastDesiredPrototype.Name)), HasComp(args.User)); } private void OnInteractUsing(Entity oracle, ref InteractUsingEvent args) @@ -123,14 +126,25 @@ private void OnInteractUsing(Entity oracle, ref InteractUsingEv NextItem(oracle); } - private void SendTelepathicInfo(Entity oracle, INetChannel client, string message) + private void SendTelepathicInfo(Entity oracle, INetChannel client, string message, bool psychognomist = false) { - var messageWrap = Loc.GetString("chat-manager-send-telepathic-chat-wrap-message", - ("telepathicChannelName", Loc.GetString("chat-manager-telepathic-channel-name")), - ("message", message)); + if (!psychognomist) + { + var messageWrap = Loc.GetString("chat-manager-send-telepathic-chat-wrap-message", + ("telepathicChannelName", Loc.GetString("chat-manager-telepathic-channel-name")), + ("message", message)); - _chatMan.ChatMessageToOne(ChatChannel.Telepathic, - message, messageWrap, oracle, false, client, Color.PaleVioletRed); + _chatMan.ChatMessageToOne(ChatChannel.Telepathic, + message, messageWrap, oracle, false, client, Color.PaleVioletRed); + } + else + { + var descriptor = _tChat.SourceToDescriptor(oracle); + var psychogMessageWrap = Loc.GetString("chat-manager-send-telepathic-chat-wrap-message-psychognomy", + ("source", descriptor.ToUpper()), ("message", message)); + + _chatMan.ChatMessageToOne(ChatChannel.Telepathic, message, psychogMessageWrap, oracle, false, client, Color.PaleVioletRed); + } } private bool IsCorrectItem(EntityPrototype given, EntityPrototype target) diff --git a/Content.Server/StationGoal/StationGoalPaperSystem.cs b/Content.Server/StationGoal/StationGoalPaperSystem.cs index add7d1a43e..2703fbea99 100644 --- a/Content.Server/StationGoal/StationGoalPaperSystem.cs +++ b/Content.Server/StationGoal/StationGoalPaperSystem.cs @@ -99,7 +99,7 @@ public bool SendStationGoal(StationGoalPrototype goal) var printout = new FaxPrintout( Loc.GetString("station-goal-fax-paper-header", - ("date", DateTime.Now.AddYears(544).ToString("yyyy MMMM dd")), + ("date", DateTime.Now.AddYears(544).ToString("dd MMMM yyyy")), ("station", string.IsNullOrEmpty(stationId) ? "???" : stationId), ("content", goal.Text), ("name", _random.Pick(signerName.Values)) diff --git a/Content.Server/Traits/Assorted/UncloneableSystem.cs b/Content.Server/Traits/Assorted/UncloneableSystem.cs new file mode 100644 index 0000000000..6f2af10647 --- /dev/null +++ b/Content.Server/Traits/Assorted/UncloneableSystem.cs @@ -0,0 +1,23 @@ +using Content.Shared.Cloning; + +namespace Content.Server.Traits.Assorted +{ + public sealed class UncloneableSystem : EntitySystem + { + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnAttemptCloning); + } + + private void OnAttemptCloning(EntityUid uid, UncloneableComponent component, ref AttemptCloningEvent args) + { + if (args.CloningFailMessage is not null + || args.Cancelled) + return; + + args.CloningFailMessage = "cloning-console-uncloneable-trait-error"; + args.Cancelled = true; + } + } +} diff --git a/Content.Shared.Database/Content.Shared.Database.csproj b/Content.Shared.Database/Content.Shared.Database.csproj index bc2cc300bf..5107444c7a 100644 --- a/Content.Shared.Database/Content.Shared.Database.csproj +++ b/Content.Shared.Database/Content.Shared.Database.csproj @@ -3,6 +3,7 @@ enable enable + diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index db3ec250c1..28e11dab2c 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -1684,16 +1684,63 @@ public static readonly CVarDef public static readonly CVarDef CrewManifestUnsecure = CVarDef.Create("crewmanifest.unsecure", true, CVar.REPLICATED); - /* - * Biomass - */ + #region Cloning + + /// + /// How much should the cost to clone an entity be multiplied by. + /// + public static readonly CVarDef CloningBiomassCostMultiplier = + CVarDef.Create("cloning.biomass_cost_multiplier", 1f, CVar.SERVERONLY); + + /// + /// Whether or not the Biomass Reclaimer is allowed to roundremove bodies with a soul. + /// + public static readonly CVarDef CloningReclaimSouledBodies = + CVarDef.Create("cloning.reclaim_souled_bodies", true, CVar.SERVERONLY); + + /// + /// Controls whether or not Metempsychosis will potentially give people a sex change. + /// + public static readonly CVarDef CloningPreserveSex = + CVarDef.Create("cloning.preserve_sex", false, CVar.SERVERONLY); + + /// + /// Controls whether or not Metempsychosis preserves Pronouns when reincarnating people. + /// + public static readonly CVarDef CloningPreserveGender = + CVarDef.Create("cloning.preserve_gender", true, CVar.SERVERONLY); /// - /// Enabled: Cloning has 70% cost and reclaimer will refuse to reclaim corpses with souls. (For LRP). - /// Disabled: Cloning has full biomass cost and reclaimer can reclaim corpses with souls. (Playtested and balanced for MRP+). + /// Controls whether or not Metempsychosis preserves Age. /// - public static readonly CVarDef BiomassEasyMode = - CVarDef.Create("biomass.easy_mode", false, CVar.SERVERONLY); + public static readonly CVarDef CloningPreserveAge = + CVarDef.Create("cloning.preserve_age", false, CVar.SERVERONLY); + + /// + /// Controls whether or not Metempsychosis preserves height. + /// + public static readonly CVarDef CloningPreserveHeight = + CVarDef.Create("cloning.preserve_height", false, CVar.SERVERONLY); + + /// + /// Controls whether or not Metempsychosis preserves width. + /// + public static readonly CVarDef CloningPreserveWidth = + CVarDef.Create("cloning.preserve_width", false, CVar.SERVERONLY); + + /// + /// Controls whether or not Metempsychosis preserves Names. EG: Are you actually a new person? + /// + public static readonly CVarDef CloningPreserveName = + CVarDef.Create("cloning.preserve_name", true, CVar.SERVERONLY); + + /// + /// Controls whether or not Metempsychosis preserves Flavor Text. + /// + public static readonly CVarDef CloningPreserveFlavorText = + CVarDef.Create("cloning.preserve_flavor_text", true, CVar.SERVERONLY); + + #endregion /* * Anomaly diff --git a/Content.Shared/Cloning/CloningPodComponent.cs b/Content.Shared/Cloning/CloningPodComponent.cs index 88d587c145..082b92e8b1 100644 --- a/Content.Shared/Cloning/CloningPodComponent.cs +++ b/Content.Shared/Cloning/CloningPodComponent.cs @@ -1,5 +1,6 @@ using Content.Shared.DeviceLinking; using Content.Shared.Materials; +using Content.Shared.Random; using Robust.Shared.Audio; using Robust.Shared.Containers; using Robust.Shared.Prototypes; @@ -17,11 +18,14 @@ public sealed partial class CloningPodComponent : Component public ContainerSlot BodyContainer = default!; /// - /// How long the cloning has been going on for. + /// How long the cloning has been going on for /// [ViewVariables] public float CloningProgress = 0; + [DataField] + public float BiomassCostMultiplier = 1; + [ViewVariables] public int UsedBiomass = 70; @@ -29,34 +33,34 @@ public sealed partial class CloningPodComponent : Component public bool FailedClone = false; /// - /// The material that is used to clone entities. + /// The material that is used to clone entities /// - [DataField("requiredMaterial"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public ProtoId RequiredMaterial = "Biomass"; /// - /// The current amount of time it takes to clone a body + /// The current amount of time it takes to clone a body /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public float CloningTime = 30f; /// - /// The mob to spawn on emag + /// The mob to spawn on emag /// - [DataField("mobSpawnId"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public EntProtoId MobSpawnId = "MobAbomination"; /// - /// Emag sound effects. + /// Emag sound effects /// - [DataField("sparkSound")] + [DataField] public SoundSpecifier SparkSound = new SoundCollectionSpecifier("sparks") { Params = AudioParams.Default.WithVolume(8), }; // TODO: Remove this from here when cloning and/or zombies are refactored - [DataField("screamSound")] + [DataField] public SoundSpecifier ScreamSound = new SoundCollectionSpecifier("ZombieScreams") { Params = AudioParams.Default.WithVolume(4), @@ -67,6 +71,80 @@ public sealed partial class CloningPodComponent : Component [ViewVariables] public EntityUid? ConnectedConsole; + + /// + /// Tracks whether a Cloner is actively cloning someone + /// + [ViewVariables(VVAccess.ReadWrite)] + public bool ActivelyCloning; + + /// + /// Controls whether a Cloning Pod will add genetic damage to a clone, scaling as the body's crit threshold + 1 + the genetic damage of the body to be cloned + /// + [DataField] + public bool DoGeneticDamage = true; + + /// + /// How much should the cloning pod adjust the hunger of an entity by + /// + [DataField] + public float HungerAdjustment = 50; + + /// + /// How much should the cloning pod adjust the thirst of an entity by + /// + [DataField] + public float ThirstAdjustment = 50; + + /// + /// How much time should the cloning pod give an entity the durnk condition, in seconds + /// + [DataField] + public float DrunkTimer = 300; + + #region Metempsychosis + + /// + /// Controls whether a cloning machine performs the Metempsychosis functions, EG: Is this a Cloner or a Metem Machine? + /// Metempsychosis refers to the metaphysical process of Reincarnation. + /// + /// + /// A Machine with this enabled will essentially create a random new character instead of creating a living version of the old character. + /// Although, the specifics of how much of the new body is a "new character" is highly adjustable in server configuration. + /// + [DataField] + public bool DoMetempsychosis; + + /// + /// How much should each point of Karma decrease the odds of reincarnating as a humanoid + /// + [DataField] + public float KarmaOffset = 0.5f; + + /// + /// The base chances for a Metem Machine to produce a Humanoid. + /// > 1 has a chance of acting like a true Cloner. + /// On a successful roll, produces a random Humanoid. + /// A failed roll poduces a random NonHumanoid. + /// + [DataField] + public float HumanoidBaseChance = 1; + + /// + /// The proto that the Metem Machine picks a random Humanoid from + /// + [ValidatePrototypeId] + [DataField] + public string MetempsychoticHumanoidPool = "MetempsychoticHumanoidPool"; + + /// + /// The proto that the Metem Machine picks a random Non-Humanoid from + /// + [ValidatePrototypeId] + [DataField] + public string MetempsychoticNonHumanoidPool = "MetempsychoticNonhumanoidPool"; + + #endregion } [Serializable, NetSerializable] @@ -84,20 +162,11 @@ public enum CloningPodStatus : byte NoMind } -/// -/// Raised after a new mob got spawned when cloning a humanoid -/// -[ByRefEvent] -public struct CloningEvent +[Serializable, NetSerializable] +public enum ForcedMetempsychosisType : byte { - public bool NameHandled = false; - - public readonly EntityUid Source; - public readonly EntityUid Target; - - public CloningEvent(EntityUid source, EntityUid target) - { - Source = source; - Target = target; - } + None, + Clone, + RandomHumanoid, + RandomNonHumanoid } diff --git a/Content.Shared/Cloning/CloningSystem.Events.cs b/Content.Shared/Cloning/CloningSystem.Events.cs new file mode 100644 index 0000000000..a29310d45b --- /dev/null +++ b/Content.Shared/Cloning/CloningSystem.Events.cs @@ -0,0 +1,58 @@ +namespace Content.Shared.Cloning; + +/// +/// Raised after a new mob got spawned when cloning a humanoid +/// +[ByRefEvent] +public struct CloningEvent +{ + public bool NameHandled = false; + + public readonly EntityUid Source; + public readonly EntityUid Target; + + public CloningEvent(EntityUid source, EntityUid target) + { + Source = source; + Target = target; + } +} + +/// +/// Raised on a corpse being subjected to forced reincarnation(Metempsychosis). +/// Allowing for innate effects from the mob to influence the reincarnation. +/// +[ByRefEvent] +public struct ReincarnatingEvent +{ + public bool OverrideChance; + public bool NeverTrulyClone; + public ForcedMetempsychosisType ForcedType = ForcedMetempsychosisType.None; + public readonly EntityUid OldBody; + public float ReincarnationChanceModifier = 1; + public float ReincarnationChances; + public ReincarnatingEvent(EntityUid oldBody, float reincarnationChances) + { + OldBody = oldBody; + ReincarnationChances = reincarnationChances; + } +} + +/// +/// Raised on a corpse that someone is attempting to clone, but before the process actually begins. +/// Allows for Entities to influence whether the cloning can begin in the first place, either by canceling it, or modifying the cost. +/// +[ByRefEvent] +public struct AttemptCloningEvent +{ + public bool Cancelled; + public bool DoMetempsychosis; + public EntityUid CloningPod; + public string? CloningFailMessage; + public float CloningCostMultiplier = 1; + public AttemptCloningEvent(EntityUid cloningPod, bool doMetempsychosis) + { + DoMetempsychosis = doMetempsychosis; + CloningPod = cloningPod; + } +} diff --git a/Content.Shared/Content.Shared.csproj b/Content.Shared/Content.Shared.csproj index 9752bfcfe2..587f3326f9 100644 --- a/Content.Shared/Content.Shared.csproj +++ b/Content.Shared/Content.Shared.csproj @@ -1,4 +1,4 @@ - + $(TargetFramework) @@ -8,6 +8,7 @@ nullable enable + diff --git a/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs b/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs index f1f7de5c11..155af98884 100644 --- a/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs +++ b/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs @@ -1,4 +1,4 @@ -using System.Linq; +using System.Linq; using Content.Shared.Humanoid.Markings; using Content.Shared.Humanoid.Prototypes; using Robust.Shared.Prototypes; @@ -202,7 +202,13 @@ public static Color ClampColor(Color color) return new(color.RByte, color.GByte, color.BByte); } - public static HumanoidCharacterAppearance EnsureValid(HumanoidCharacterAppearance appearance, string species, Sex sex) + public static HumanoidCharacterAppearance EnsureValid( + HumanoidCharacterAppearance appearance, + string species, Sex sex +#if LPP_Sponsors + , string[] sponsorPrototypes +#endif + ) { var hairStyleId = appearance.HairStyleId; var facialHairStyleId = appearance.FacialHairStyleId; @@ -219,11 +225,29 @@ public static HumanoidCharacterAppearance EnsureValid(HumanoidCharacterAppearanc hairStyleId = HairStyles.DefaultHairStyle; } +#if LPP_Sponsors // _LostParadise-Sponsors + if (proto.TryIndex(hairStyleId, out MarkingPrototype? hairProto) && + hairProto.SponsorOnly && + !sponsorPrototypes.Contains(hairStyleId)) + { + hairStyleId = HairStyles.DefaultHairStyle; + } +#endif + if (!markingManager.MarkingsByCategory(MarkingCategories.FacialHair).ContainsKey(facialHairStyleId)) { facialHairStyleId = HairStyles.DefaultFacialHairStyle; } + #if LPP_Sponsors // _LostParadise-Sponsors + if (proto.TryIndex(facialHairStyleId, out MarkingPrototype? facialHairProto) && + facialHairProto.SponsorOnly && + !sponsorPrototypes.Contains(facialHairStyleId)) + { + facialHairStyleId = HairStyles.DefaultFacialHairStyle; + } +#endif + var markingSet = new MarkingSet(); var skinColor = appearance.SkinColor; if (proto.TryIndex(species, out SpeciesPrototype? speciesProto)) @@ -238,6 +262,9 @@ public static HumanoidCharacterAppearance EnsureValid(HumanoidCharacterAppearanc markingSet.EnsureSpecies(species, skinColor, markingManager); markingSet.EnsureSexes(sex, markingManager); +#if LPP_Sponsors // _LostParadise-Sponsors + markingSet.FilterSponsor(sponsorPrototypes, markingManager); +#endif } return new HumanoidCharacterAppearance( diff --git a/Content.Shared/Humanoid/Markings/MarkingPrototype.cs b/Content.Shared/Humanoid/Markings/MarkingPrototype.cs index ed5e47f822..4b5056c407 100644 --- a/Content.Shared/Humanoid/Markings/MarkingPrototype.cs +++ b/Content.Shared/Humanoid/Markings/MarkingPrototype.cs @@ -36,8 +36,8 @@ public sealed partial class MarkingPrototype : IPrototype public List Sprites { get; private set; } = default!; // LostParadise-Sponsors-Start - [DataField("sponsorTier")] - public int SponsorTier = 0; //0 - для всех + [DataField("sponsorOnly")] + public bool SponsorOnly = false; // LostParadise-Sponsors-End public Marking AsMarking() diff --git a/Content.Shared/Humanoid/Markings/MarkingsSet.cs b/Content.Shared/Humanoid/Markings/MarkingsSet.cs index d389e19415..79a6804772 100644 --- a/Content.Shared/Humanoid/Markings/MarkingsSet.cs +++ b/Content.Shared/Humanoid/Markings/MarkingsSet.cs @@ -199,6 +199,43 @@ public void EnsureSpecies(string species, Color? skinColor, MarkingManager? mark } } +#if LPP_Sponsors // _LostParadise-Sponsors + /// + /// Filters sponsor markings unavailable for not sponsors check that from their prototype and allowed param + /// + /// Sponsor markings that allowed to have. + /// Markings manager. + /// Prototype manager. + public void FilterSponsor(string[] sponsorMarkings, MarkingManager? markingManager = null, IPrototypeManager? prototypeManager = null) + { + IoCManager.Resolve(ref markingManager); + IoCManager.Resolve(ref prototypeManager); + + var toRemove = new List<(MarkingCategories category, string id)>(); + foreach (var (category, list) in Markings) + { + foreach (var marking in list) + { + if (prototypeManager.TryIndex(marking.MarkingId, out var proto) && !proto.SponsorOnly) + { + return; + } + + var allowedToHave = sponsorMarkings.Contains(marking.MarkingId); + if (!allowedToHave) + { + toRemove.Add((category, marking.MarkingId)); + } + } + } + + foreach (var marking in toRemove) + { + Remove(marking.category, marking.id); + } + } +#endif + /// /// Filters markings based on sex and it's restrictions in the marking's prototype from this marking set. /// diff --git a/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs b/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs index 8500d530e5..c20586431f 100644 --- a/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs +++ b/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs @@ -32,6 +32,11 @@ public sealed partial class SpeciesPrototype : IPrototype [DataField(required: true)] public bool RoundStart { get; private set; } = false; + // LostParadise-Sponsors-Start + [DataField("sponsorOnly")] + public bool SponsorOnly = false; + // LostParadise-Sponsors-End + // The below two are to avoid fetching information about the species from the entity // prototype. diff --git a/Content.Shared/Inventory/SlotFlags.cs b/Content.Shared/Inventory/SlotFlags.cs index ac07529f26..53e179dc35 100644 --- a/Content.Shared/Inventory/SlotFlags.cs +++ b/Content.Shared/Inventory/SlotFlags.cs @@ -26,10 +26,10 @@ public enum SlotFlags LEGS = 1 << 13, FEET = 1 << 14, SUITSTORAGE = 1 << 15, - TAIL = 1 << 10, - SOCKS = 1 << 10, - UNDERWEAR = 1 << 10, - BREAST = 1 << 10, + TAIL = 1 << 16, + SOCKS = 1 << 17, + UNDERWEAR = 1 << 18, + BREAST = 1 << 19, All = ~NONE, WITHOUT_POCKET = All & ~POCKET diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs index 7c7f87d4bc..c3e407a5f9 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -32,6 +32,9 @@ public sealed partial class HumanoidCharacterProfile : ICharacterProfile private readonly List _antagPreferences; private readonly List _traitPreferences; private readonly List _loadoutPreferences; +#if LPP_Sponsors + private readonly List _donatePreferences; // Lost Paradise Donate Preference +#endif private HumanoidCharacterProfile( string name, @@ -51,7 +54,11 @@ private HumanoidCharacterProfile( PreferenceUnavailableMode preferenceUnavailable, List antagPreferences, List traitPreferences, - List loadoutPreferences) + List loadoutPreferences +#if LPP_Sponsors + , List donatePreferences // Lost Paradise Donate Preference +#endif + ) { Name = name; FlavorText = flavortext; @@ -71,18 +78,29 @@ private HumanoidCharacterProfile( _antagPreferences = antagPreferences; _traitPreferences = traitPreferences; _loadoutPreferences = loadoutPreferences; +#if LPP_Sponsors + _donatePreferences = donatePreferences; // Lost Paradise Donate Preferences +#endif } - /// Copy constructor but with overridable references (to prevent useless copies) - private HumanoidCharacterProfile( + /// Copy constructor but with overridable references (to prevent useless copies) + private HumanoidCharacterProfile( HumanoidCharacterProfile other, Dictionary jobPriorities, List antagPreferences, List traitPreferences, - List loadoutPreferences) + List loadoutPreferences +#if LPP_Sponsors + , List donatePreferences // Lost Paradise Donate Preferences +#endif + ) : this(other.Name, other.FlavorText, other.Species, other.Voice, other.Height, other.Width, other.Age, other.Sex, other.Gender, other.Appearance, other.Clothing, other.Backpack, other.SpawnPriority, jobPriorities, other.PreferenceUnavailable, - antagPreferences, traitPreferences, loadoutPreferences) + antagPreferences, traitPreferences, loadoutPreferences +#if LPP_Sponsors + , donatePreferences // Lost Paradise Donate Preferences +#endif + ) { } @@ -90,7 +108,11 @@ private HumanoidCharacterProfile( private HumanoidCharacterProfile(HumanoidCharacterProfile other) : this(other, new Dictionary(other.JobPriorities), new List(other.AntagPreferences), new List(other.TraitPreferences), - new List(other.LoadoutPreferences)) + new List(other.LoadoutPreferences) +#if LPP_Sponsors + , new List(other.DonatePreferences) // Lost Paradise Donate Preferences +#endif + ) { } @@ -112,11 +134,19 @@ public HumanoidCharacterProfile( PreferenceUnavailableMode preferenceUnavailable, IReadOnlyList antagPreferences, IReadOnlyList traitPreferences, - IReadOnlyList loadoutPreferences) + IReadOnlyList loadoutPreferences +#if LPP_Sponsors + , List donatePreferences // Lost Paradise Donate Preferences +#endif + ) : this(name, flavortext, species, voice, height, width, age, sex, gender, appearance, clothing, backpack, spawnPriority, new Dictionary(jobPriorities), preferenceUnavailable, new List(antagPreferences), new List(traitPreferences), - new List(loadoutPreferences)) + new List(loadoutPreferences) +#if LPP_Sponsors + , new List(donatePreferences) // Lost Paradise Donate Preferences +#endif + ) { } @@ -146,7 +176,11 @@ public HumanoidCharacterProfile() : this( PreferenceUnavailableMode.SpawnAsOverflow, new List(), new List(), - new List()) + new List() +#if LPP_Sponsors + , new List() // Lost Paradise Donate Preferences +#endif + ) { } @@ -178,7 +212,11 @@ public static HumanoidCharacterProfile DefaultWithSpecies(string species = Share PreferenceUnavailableMode.SpawnAsOverflow, new List(), new List(), - new List()); + new List() +#if LPP_Sponsors + , new List() // Lost Paradise Donate Preferences +#endif + ); } // TODO: This should eventually not be a visual change only. @@ -240,7 +278,11 @@ public static HumanoidCharacterProfile RandomWithSpecies(string species = Shared new Dictionary { {SharedGameTicker.FallbackOverflowJob, JobPriority.High}, - }, PreferenceUnavailableMode.StayInLobby, new List(), new List(), new List()); + }, PreferenceUnavailableMode.StayInLobby, new List(), new List(), new List() +#if LPP_Sponsors + , new List() // Lost Paradise Donate Preferences +#endif + ); } public string Name { get; private set; } @@ -275,6 +317,9 @@ public static HumanoidCharacterProfile RandomWithSpecies(string species = Shared public IReadOnlyList AntagPreferences => _antagPreferences; public IReadOnlyList TraitPreferences => _traitPreferences; public IReadOnlyList LoadoutPreferences => _loadoutPreferences; +#if LPP_Sponsors + public IReadOnlyList DonatePreferences => _donatePreferences; // Lost Paradise Donate Preferences +#endif public PreferenceUnavailableMode PreferenceUnavailable { get; private set; } public HumanoidCharacterProfile WithName(string name) @@ -343,8 +388,13 @@ public HumanoidCharacterProfile WithSpawnPriorityPreference(SpawnPriorityPrefere } public HumanoidCharacterProfile WithJobPriorities(IEnumerable> jobPriorities) { - return new(this, new Dictionary(jobPriorities), _antagPreferences, _traitPreferences, - _loadoutPreferences); + return new(this, new Dictionary(jobPriorities), + _antagPreferences, _traitPreferences, + _loadoutPreferences +#if LPP_Sponsors + , _donatePreferences// Lost Paradise Donate Preferences +#endif + ); } public HumanoidCharacterProfile WithJobPriority(string jobId, JobPriority priority) @@ -358,7 +408,12 @@ public HumanoidCharacterProfile WithJobPriority(string jobId, JobPriority priori { dictionary[jobId] = priority; } - return new(this, dictionary, _antagPreferences, _traitPreferences, _loadoutPreferences); + return new(this, dictionary, _antagPreferences, + _traitPreferences, _loadoutPreferences +#if LPP_Sponsors + , _donatePreferences// Lost Paradise Donate Preferences +#endif + ); } public HumanoidCharacterProfile WithPreferenceUnavailable(PreferenceUnavailableMode mode) @@ -368,8 +423,12 @@ public HumanoidCharacterProfile WithPreferenceUnavailable(PreferenceUnavailableM public HumanoidCharacterProfile WithAntagPreferences(IEnumerable antagPreferences) { - return new(this, _jobPriorities, new List(antagPreferences), _traitPreferences, - _loadoutPreferences); + return new(this, _jobPriorities, new List(antagPreferences), + _traitPreferences, _loadoutPreferences +#if LPP_Sponsors + , _donatePreferences// Lost Paradise Donate Preferences +#endif + ); } public HumanoidCharacterProfile WithAntagPreference(string antagId, bool pref) @@ -389,7 +448,12 @@ public HumanoidCharacterProfile WithAntagPreference(string antagId, bool pref) list.Remove(antagId); } } - return new(this, _jobPriorities, list, _traitPreferences, _loadoutPreferences); + return new(this, _jobPriorities, list, + _traitPreferences, _loadoutPreferences +#if LPP_Sponsors + , _donatePreferences// Lost Paradise Donate Preferences +#endif + ); } public HumanoidCharacterProfile WithTraitPreference(string traitId, bool pref) @@ -411,7 +475,12 @@ public HumanoidCharacterProfile WithTraitPreference(string traitId, bool pref) list.Remove(traitId); } } - return new(this, _jobPriorities, _antagPreferences, list, _loadoutPreferences); + return new(this, _jobPriorities, _antagPreferences, + list, _loadoutPreferences +#if LPP_Sponsors + , _donatePreferences// Lost Paradise Donate Preferences +#endif + ); } public HumanoidCharacterProfile WithLoadoutPreference(string loadoutId, bool pref) @@ -432,7 +501,13 @@ public HumanoidCharacterProfile WithLoadoutPreference(string loadoutId, bool pre list.Remove(loadoutId); } } - return new(this, _jobPriorities, _antagPreferences, _traitPreferences, list); + return new(this, + _jobPriorities, _antagPreferences, + _traitPreferences, list +#if LPP_Sponsors + , _donatePreferences// Lost Paradise Donate Preferences +#endif + ); } public string Summary => @@ -459,12 +534,22 @@ public bool MemberwiseEquals(ICharacterProfile maybeOther) || !_jobPriorities.SequenceEqual(other._jobPriorities) || !_antagPreferences.SequenceEqual(other._antagPreferences) || !_traitPreferences.SequenceEqual(other._traitPreferences) - || !_loadoutPreferences.SequenceEqual(other._loadoutPreferences)) + || !_loadoutPreferences.SequenceEqual(other._loadoutPreferences) +#if LPP_Sponsors + || !_donatePreferences.SequenceEqual(other._donatePreferences)// Lost Paradise Donate Preferences +#endif + ) return false; return Appearance.MemberwiseEquals(other.Appearance); } - public void EnsureValid(ICommonSession session, IDependencyCollection collection) + public void EnsureValid( + ICommonSession session, + IDependencyCollection collection +#if LPP_Sponsors + , string[] sponsorPrototypes +#endif + ) { var configManager = collection.Resolve(); var prototypeManager = collection.Resolve(); @@ -475,6 +560,14 @@ public void EnsureValid(ICommonSession session, IDependencyCollection collection speciesPrototype = prototypeManager.Index(Species); } +#if LPP_Sponsors // _LostParadise-Sponsors + if (speciesPrototype.SponsorOnly && !sponsorPrototypes.Contains(Species)) + { + Species = SharedHumanoidAppearanceSystem.DefaultSpecies; + speciesPrototype = prototypeManager.Index(Species); + } +#endif + var sex = Sex switch { Sex.Male => Sex.Male, @@ -559,7 +652,12 @@ public void EnsureValid(ICommonSession session, IDependencyCollection collection if (speciesPrototype != null) width = Math.Clamp(Width, speciesPrototype.MinWidth, speciesPrototype.MaxWidth); - var appearance = HumanoidCharacterAppearance.EnsureValid(Appearance, Species, Sex); + var appearance = HumanoidCharacterAppearance.EnsureValid(Appearance, + Species, Sex +#if LPP_Sponsors + , sponsorPrototypes +#endif + ); var prefsUnavailableMode = PreferenceUnavailable switch { @@ -689,10 +787,19 @@ public static bool CanHaveVoice(TTSVoicePrototype voice, Sex sex) } // LPP-TTS-End - public ICharacterProfile Validated(ICommonSession session, IDependencyCollection collection) + public ICharacterProfile Validated(ICommonSession session, + IDependencyCollection collection +#if LPP_Sponsors + , string[] sponsorPrototypes// _LostParadise-Sponsors +#endif + ) { var profile = new HumanoidCharacterProfile(this); - profile.EnsureValid(session, collection); + profile.EnsureValid(session, collection +#if LPP_Sponsors + , sponsorPrototypes// _LostParadise-Sponsors +#endif + ); return profile; } @@ -726,13 +833,40 @@ public override int GetHashCode() SpawnPriority, Height, Width, - PreferenceUnavailable, + PreferenceUnavailable + ), + HashCode.Combine( _jobPriorities, _antagPreferences, _traitPreferences, _loadoutPreferences +#if LPP_Sponsors + , _donatePreferences// Lost Paradise Donate Preferences +#endif ) ); } + +#if LPP_Sponsors + public HumanoidCharacterProfile WithDonatePreference(string donateId, bool pref) // Lost Paradise Donate Preferences + { + var list = new List(_donatePreferences); + if (pref) + { + if (!list.Contains(donateId)) + { + list.Add(donateId); + } + } + else + { + if (list.Contains(donateId)) + { + list.Remove(donateId); + } + } + return new(this, _jobPriorities, _antagPreferences, _traitPreferences, _loadoutPreferences, list); + } +#endif } } diff --git a/Content.Shared/Preferences/ICharacterProfile.cs b/Content.Shared/Preferences/ICharacterProfile.cs index 96664ba0c5..bbb8b838d4 100644 --- a/Content.Shared/Preferences/ICharacterProfile.cs +++ b/Content.Shared/Preferences/ICharacterProfile.cs @@ -14,11 +14,21 @@ public interface ICharacterProfile /// /// Makes this profile valid so there's no bad data like negative ages. /// - void EnsureValid(ICommonSession session, IDependencyCollection collection); + void EnsureValid( + ICommonSession session, IDependencyCollection collection +#if LPP_Sponsors // _LostParadise-Sponsors + , string[] sponsorPrototypes +#endif + ); /// /// Gets a copy of this profile that has applied, i.e. no invalid data. /// - ICharacterProfile Validated(ICommonSession session, IDependencyCollection collection); + ICharacterProfile Validated( + ICommonSession session, IDependencyCollection collection +#if LPP_Sponsors // _LostParadise-Sponsors + , string[] sponsorPrototypes +#endif + ); } } diff --git a/Content.Shared/Psionics/Passives/Psychognomy/PsychognomistComponent.cs b/Content.Shared/Psionics/Passives/Psychognomy/PsychognomistComponent.cs new file mode 100644 index 0000000000..5108ef5b41 --- /dev/null +++ b/Content.Shared/Psionics/Passives/Psychognomy/PsychognomistComponent.cs @@ -0,0 +1,5 @@ +namespace Content.Shared.Psionics.Passives; + +[RegisterComponent] +public sealed partial class PsychognomistComponent : Component { } + diff --git a/Content.Shared/Psionics/PsionicComponent.cs b/Content.Shared/Psionics/PsionicComponent.cs index 9ff332327a..6352957615 100644 --- a/Content.Shared/Psionics/PsionicComponent.cs +++ b/Content.Shared/Psionics/PsionicComponent.cs @@ -140,5 +140,12 @@ private set /// [ViewVariables(VVAccess.ReadWrite)] public float CurrentDampening; + + /// + /// List of descriptors this entity will bring up for psychognomy. Used to remove + /// unneccesary subs for unique psionic entities like e.g. Oracle. + /// + [DataField] + public List? PsychognomicDescriptors = null; } } diff --git a/Content.Shared/_LostParadise/CCVars.cs b/Content.Shared/_LostParadise/CCVars.cs index 912baa8e7f..244bf9f6d0 100644 --- a/Content.Shared/_LostParadise/CCVars.cs +++ b/Content.Shared/_LostParadise/CCVars.cs @@ -7,4 +7,10 @@ public sealed partial class AccVars { public static readonly CVarDef DiscordBanWebhook = CVarDef.Create("discord.ban_webhook", "", CVar.SERVERONLY); + + /// + /// URL of the sponsors server API. + /// + public static readonly CVarDef SponsorsApiUrl = + CVarDef.Create("sponsor.api_url", "", CVar.SERVERONLY); } diff --git a/Content.Tests/Content.Tests.csproj b/Content.Tests/Content.Tests.csproj index ff295728fc..d1e571a155 100644 --- a/Content.Tests/Content.Tests.csproj +++ b/Content.Tests/Content.Tests.csproj @@ -1,4 +1,4 @@ - + $(TargetFramework) @@ -7,6 +7,7 @@ false ..\bin\Content.Tests\ + diff --git a/README.md b/README.md index 8d9b852f41..30e1e58de2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Lost Paradise -![image](https://github.com/user-attachments/assets/7c153f93-30d1-4231-8f9b-d23da0420699) +![image](https://wiki.lost-paradise.space/images/3/31/Lost-Paradise-title.png) --- diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 49b4a2eed2..dc07447c65 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -5775,3 +5775,90 @@ Entries: message: 'Added Jukebox with basic songs. ' id: 6309 time: '2024-09-02T02:28:11.0000000+00:00' +- author: VMSolidus + changes: + - type: Add + message: >- + Revenants, Reagent Slimes, and Ore Crabs are now considered to be + Psionic(But cannot gain powers randomly). This is due to their status as + "Magical And/Or Extraplanar Creatures", which makes them valid targets + for anti-psychic abilities such as the Psionic Mantis' Anti-Psychic + Knife. + - type: Add + message: Some Reagent Slimes can now contain Lotophagoi Oil. + id: 6310 + time: '2024-09-02T15:08:11.0000000+00:00' +- author: VMSolidus + changes: + - type: Add + message: Cloning & Metempsychosis Machines have been refactored! + - type: Add + message: >- + Cloning can now fail at any point during the cloning process, turning + the would-be clone into a soup of blood and ammonia. + - type: Add + message: >- + "Clone Soup" scales directly with the mass of the entity you're + attempting to clone. Fail to clone a Lamia, and you'll be greeted with + an Olympic swimming pool worth of blood when the machine opens. + - type: Add + message: >- + Cloning will fail if at any point during the procedure, the machine is + depowered, unanchored, or emagged. + - type: Add + message: >- + Clones come out of the machine with severe Cellular damage. Consider + using Doxarubixadone in a Cryo tube as an affordable means of + "Finishing" clones. + - type: Tweak + message: >- + Cloning Time is now increased proportionally if an entity being cloned + is larger than a standard human(smaller entities are unchanged) + - type: Tweak + message: >- + The cost to clone an entity can now be configured on a per-server basis + via CCVar "cloning.biomass_cost_multiplier" + - type: Tweak + message: >- + The Biomass Reclaimer can now be toggled to round-remove ensouled bodies + or not via CCVar "cloning.reclaim_souled_bodies" + - type: Add + message: >- + The effects of Metempsychosis now scale with a Psion's relevant caster + stats. More powerful psychics are more likely to get favorable results + from being forcibly reincarnated. + id: 6311 + time: '2024-09-02T15:08:52.0000000+00:00' +- author: DEATHB4DEFEAT + changes: + - type: Add + message: New changelogs should now show links to their PRs + - type: Tweak + message: Changelog authors should now be a header instead of bold text + - type: Fix + message: Changelogs shouldn't send random amounts of old changelogs + id: 6312 + time: '2024-09-02T19:52:08.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/843 +- author: DEATHB4DEFEAT + changes: + - type: Fix + message: oatnsdaoersoaetaroeoertnsirlea + id: 6313 + time: '2024-09-02T19:54:19.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/846 +- author: Rane + changes: + - type: Add + message: Added Psychognomy. + - type: Tweak + message: Reverted Sophia name change. + - type: Tweak + message: Minor tweaks to psionic chat eligibility and formatting. + - type: Add + message: >- + Some new utility has been added to player-controlled Oracle or Sophia. + NPC functionality later :^) + id: 6314 + time: '2024-09-03T02:17:55.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/808 diff --git a/Resources/Changelog/ChangelogLPP.yml b/Resources/Changelog/ChangelogLPP.yml index 2c7945178c..77a31ce11f 100644 --- a/Resources/Changelog/ChangelogLPP.yml +++ b/Resources/Changelog/ChangelogLPP.yml @@ -5,3 +5,95 @@ Entries: type: Add id: 1 time: '2024-08-02T01:29:00.0000000+00:00' +- author: SpicyDarkFox + changes: + - type: Add + message: Перенесена спонсорка 1.4 + - type: Tweak + message: Скорректирован ТТС при работе без АПИ + - type: Fix + message: Починен баг с одеванием трусов на слот перчаток + - type: Remove + message: удален старый ИИ + id: 2 + time: '2024-09-02T15:43:20.0000000+00:00' +- author: SpicyDarkFox + changes: + - type: Add + message: Добавлена дата в кпк. + - type: Fix + message: Исправлена спонсорка. + id: 3 + time: '2024-09-03T05:16:39.0000000+00:00' + url: https://github.com/Lost-Paradise-Project/Lost-Paradise/pull/55 +- author: SpicyDarkFox + changes: + - type: Fix + message: Исправлены настройки сборки + id: 4 + time: '2024-09-03T16:18:28.0000000+00:00' + url: https://github.com/Lost-Paradise-Project/Lost-Paradise/pull/56 +- author: SpicyDarkFox + changes: + - type: Fix + message: Исправлены настройки сборки + id: 5 + time: '2024-09-03T16:18:28.0000000+00:00' + url: https://github.com/Lost-Paradise-Project/Lost-Paradise/pull/56 +- author: JayJacobs + changes: + - type: Tweak + message: Изменил иконки статусов интерфейса + id: 6 + time: '2024-09-03T16:50:46.0000000+00:00' + url: https://github.com/Lost-Paradise-Project/Lost-Paradise/pull/57 +- author: SpicyDarkFox + changes: + - type: Fix + message: Исправлена выдача маркингов в редакторе персонаа + id: 7 + time: '2024-09-03T18:32:17.0000000+00:00' + url: https://github.com/Lost-Paradise-Project/Lost-Paradise/pull/59 +- author: JayJacobs + changes: + - type: Tweak + message: Поправил прототипы департаментов. + - type: Tweak + message: Изменены иконки настроения. + - type: Tweak + message: Русифицировал иконки криминалистической консоли. + - type: Fix + message: Исправлена ошибка иконки передачи предметов. + - type: Fix + message: Иконки ролей теперь стандартизированы. + id: 8 + time: '2024-09-03T19:18:56.0000000+00:00' + url: https://github.com/Lost-Paradise-Project/Lost-Paradise/pull/60 +- author: MegaDaimond + changes: + - type: Add + message: Добавлены спрайты ко многим скафандрам и их шлемам под расы + - type: Add + message: Банданы теперь нормально смотрятся на мордах других рас + - type: Add + message: Больше кастома для НПЗ (На будущие обновления) + - type: Tweak + message: Изменены характеристики скафандра детектива + - type: Fix + message: Исправлены meta для некоторых шлемов скафандров + id: 9 + time: '2024-09-04T11:55:47.0000000+00:00' + url: https://github.com/Lost-Paradise-Project/Lost-Paradise/pull/61 +- author: SpicyDarkFox + changes: + - type: Add + message: Разделение маркингов по уровням спонсорки + - type: Tweak + message: >- + У людей изменены очки внешности: по 1 на уши и хвост, и по 4 на руки и + ноги вместо 6 + - type: Fix + message: Исправлены кнопки в редакторе персонажа, снимающие одежду + id: 10 + time: '2024-09-04T15:33:10.0000000+00:00' + url: https://github.com/Lost-Paradise-Project/Lost-Paradise/pull/62 diff --git a/Resources/Locale/en-US/psionics/psionic-chat.ftl b/Resources/Locale/en-US/psionics/psionic-chat.ftl index b7fe23b751..45444d0d10 100644 --- a/Resources/Locale/en-US/psionics/psionic-chat.ftl +++ b/Resources/Locale/en-US/psionics/psionic-chat.ftl @@ -1,4 +1,5 @@ chat-manager-send-telepathic-chat-wrap-message = {$telepathicChannelName}: {$message} +chat-manager-send-telepathic-chat-wrap-message-psychognomy = {$source}: {$message} chat-manager-send-telepathic-chat-wrap-message-admin = {$source} (Ψ): {$message} chat-manager-telepathic-channel-name = TELEPATHIC hud-chatbox-select-channel-Telepathic = Telepathic diff --git a/Resources/Locale/en-US/psionics/psionic-powers.ftl b/Resources/Locale/en-US/psionics/psionic-powers.ftl index 535c4ef328..ad6bbef02b 100644 --- a/Resources/Locale/en-US/psionics/psionic-powers.ftl +++ b/Resources/Locale/en-US/psionics/psionic-powers.ftl @@ -74,6 +74,12 @@ xenoglossy-power-initialization-feedback = psionic-language-power-metapsionic-feedback = The noösphere flows freely through {CAPITALIZE($entity)}, who seems to digest it and pass it back out undisturbed. +# Psychognomy +psychognomy-power-description = You have some vague sense of the form of the source of telepathic messages. +psychognomy-power-initialization-feedback = + I have pierced the veil, and I know I'm not alone. More concerning, the piercing I made seems to be still indefinitely permeable. + When energy passes through the perforations in the noösphere, I get a faint glimpse of the material origin. + # Telepathy telepathy-power-description = You are capable of both sending and receiving telepathic messages. telepathy-power-initialization-feedback = diff --git a/Resources/Locale/en-US/psionics/psychognomic-descriptors.ftl b/Resources/Locale/en-US/psionics/psychognomic-descriptors.ftl new file mode 100644 index 0000000000..d91f0f2524 --- /dev/null +++ b/Resources/Locale/en-US/psionics/psychognomic-descriptors.ftl @@ -0,0 +1,23 @@ +p-descriptor-mysterious = mysterious +p-descriptor-male = male +p-descriptor-female = female +p-descriptor-young = young +p-descriptor-old = old +p-descriptor-masculine = masculine +p-descriptor-feminine = feminine +p-descriptor-hylic = hylic +p-descriptor-pneumatic = pneumatic +p-descriptor-liminal = liminal +p-descriptor-bound = bound +p-descriptor-ignorant = ignorant +p-descriptor-demiurgic = demiurgic +p-descriptor-emanative = emanative +p-descriptor-light = light +p-descriptor-heavy = heavy +p-descriptor-cyclic = cyclic +p-descriptor-hungry = hungry +p-descriptor-vampiric = vampiric +p-descriptor-kinetic = kinetic +p-descriptor-gnostic = gnostic +p-descriptor-dumb = dumb +p-descriptor-passive = passive \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_LostParadise/GameRules/names.ftl b/Resources/Locale/ru-RU/_LostParadise/GameRules/names.ftl new file mode 100644 index 0000000000..fbfbe5824e --- /dev/null +++ b/Resources/Locale/ru-RU/_LostParadise/GameRules/names.ftl @@ -0,0 +1,14 @@ +calm-title = Спокойный +calm-description = Ничего не происходит, буквально ничего, совсем ничего... Наслаждайся ЕРП(Ну или просто рп)! + +easy-title = Легкий +easy-description = Кажется что-то идет не так... Но это было довольно легко! + +average-title = Средний +average-description = На станции присутствуют различные угрозы... Прийдется немного напрячься... + +heavy-title = Тяжелый +heavy-description = Это будет крайне не легко... А вы сможете вернуться домой? + +pizdec-title = ХАРДКОР +pizdec-description = Это реально конец, ну вот полный конец. Ну вот вообще. Ну короче вот да. Станция бабах. diff --git a/Resources/Locale/ru-RU/_LostParadise/Jobs/jobs.ftl b/Resources/Locale/ru-RU/_LostParadise/Jobs/jobs.ftl index 553e031ff1..8281f590b8 100644 --- a/Resources/Locale/ru-RU/_LostParadise/Jobs/jobs.ftl +++ b/Resources/Locale/ru-RU/_LostParadise/Jobs/jobs.ftl @@ -1,8 +1,9 @@ -job-name-lppparamedic = парамедик +job-name-lppparamedic = Gарамедик job-description-lppparamedic = Следите за жизнями экипажа, ходите по станции с монитором экипажа и слушайте рацию. -job-name-adjutant = адъютант +job-name-adjutant = Адъютант job-description-adjutant = Вы помощник всего коммандования, слушайте рацию и набирайтесь опыта в работе всей структуры. -JobLPPadjutant = адъютант +JobLPPadjutant = Адъютант +JobLPPBlueShieldOfficer = Офицер "Синий щит" ent-LPPAdjutantPDA = КПК Адъютанта .desc = Установлена прошивка для помощников командования. ent-LPPAdjutantIDCard = ID карта Адъютанта @@ -11,41 +12,36 @@ ent-LPPCentralCommandRepresentativePDA = КПК представителя ЦК .desc = Пахнет бюрократией. .suffix = { "" } job-name-centcom-representative = представитель ЦентКом -job-name-blueshieldofficer = офицер "синий щит" -job-description-blueshieldofficer = Ваша задача защитить всех глав на станции. Следите за ними. -job-name-magistrate = Судья -job-description-magistrate = Вы закон! Проводите суды и следите за соблюдением КЗ. -job-supervisors-mag-iaa = Судья и АВД -job-supervisors-mag = Судья -job-supervisors-mag-centcom = центральному коммандованию и Судье +job-name-blueshieldofficer = Офицер "синий щит" +job-description-blueshieldofficer = Ваша задача защитить всех глав на станции. Следите за ними department-Law = Юридический отдел department-CentCom = Центральное Командование -job-name-borg-security = киборг СБ +job-name-borg-security = Киборг СБ job-description-borg-security = Защищайте станцию от нарушителей закона, выглядите устрашающие, и не забывайте беречь свою батарейку! -job-name-drone-security = дрон СБ +job-name-drone-security = Дрон СБ job-description-drone-security = Летайте по станции, вселяйте ужас, находите нарушителей и сообщайте офицерам службы безопасности! -lpp-job-name-virologist = вирусолог +lpp-job-name-virologist = Вирусолог lpp-job-description-virologist = Лечите экипаж от OwOнавируса. Вы же не хотите восстание кошкомальчиков? -lpp-job-name-prisoner = заключённый +lpp-job-name-prisoner = Заключённый lpp-job-description-prisoner = Будьте единственным(или одним из) разумным существом на весь бриг. -job-name-senior-engineer = ведущий инженер +job-name-senior-engineer = Ведущий инженер job-description-senior-engineer = Обучайте новых инженеров основам работы силовых установок, ремонту, атмосферике и энергоснабжению станции. -job-name-senior-researcher = ведущий учёный +job-name-senior-researcher = Ведущий учёный job-description-senior-researcher = Обучайте новых учёных основам печати предметов, исследования артефактов и аномальных объектов. -job-name-senior-physician = ведущий врач +job-name-senior-physician = Ведущий врач job-description-senior-physician = Обучайте новых врачей основам оказания помощи раненым, химии, диагностике больных и утилизации трупов. -job-name-senior-officer = инструктор СБ +job-name-senior-officer = Инструктор СБ job-description-senior-officer = Обучать новых офицеров основам обыска и задержания, срокам заключения и правильному обращению с огнестрельным оружием. -job-name-roboticist = робототехник +job-name-roboticist = Робототехник job-description-roboticist = Создавайте различных мехов, киборгов и роботов для помощи станции. -JobSeniorEngineer = ведущий инженер -JobSeniorOfficer = инструктор СБ -JobSeniorPhysician = ведущий врач -JobSeniorResearcher = ведущий учёный -JobRoboticist = робототехник -JobExpeditor = исследователь -job-name-expeditor = исследователь +JobSeniorEngineer = Ведущий инженер +JobSeniorOfficer = Инструктор СБ +JobSeniorPhysician = Ведущий врач +JobSeniorResearcher = Ведущий учёный +JobRoboticist = Робототехник +JobExpeditor = Исследователь +job-name-expeditor = Исследователь job-description-expeditor = Исследуйте врата и помогайте станции! -LPPJobSecurityEnginer = полевой инженер -job-name-security-enginer = полевой инженер +LPPJobSecurityEnginer = Полевой инженер +job-name-security-enginer = Полевой инженер job-description-security-enginer = Не дайте бригу пропасть во тьме. Ремонтируйте постройки, а также устройте перестройки. Приносите разруху и разрушения во время штурма! diff --git a/Resources/Locale/ru-RU/_LostParadise/Languages/custom.ftl b/Resources/Locale/ru-RU/_LostParadise/Languages/custom.ftl new file mode 100644 index 0000000000..cabf23f86c --- /dev/null +++ b/Resources/Locale/ru-RU/_LostParadise/Languages/custom.ftl @@ -0,0 +1,4 @@ +language-Dwarf-name = Дварфский язык +language-Dwarf-description = Пиво пиво) +language-Elf-name = Эльфийский язык +language-Elf-description = Длинный язык прям как рост. diff --git a/Resources/Locale/ru-RU/_LostParadise/SponsorMarkingsTier.ftl b/Resources/Locale/ru-RU/_LostParadise/SponsorMarkingsTier.ftl new file mode 100644 index 0000000000..222e55bc4d --- /dev/null +++ b/Resources/Locale/ru-RU/_LostParadise/SponsorMarkingsTier.ftl @@ -0,0 +1,7 @@ +sponsor-markings-tier-0 = "" +sponsor-markings-tier-1 = {sponsor-markings-tier-0}; +sponsor-markings-tier-2 = {sponsor-markings-tier-1}; +sponsor-markings-tier-3 = {sponsor-markings-tier-2};LPPVulpkaninykiteru_sponsor_hair;LPPVulpkaninhair_sponsor;LPPVulpkaninjagged_sponsor_hair;LPPTajaranHead7;CatTail;CatTailStripes;CatEars;CatEarsStubby;CatEarsCurled;CatEarsTorn;FoxEars;SlimeCatEars;SlimeCatTail;SlimeCatTailStripes;SlimeCatEarsStubby;SlimeCatEarsCurled;SlimeCatEarsTorn;SlimeFoxEars;AugmentsRoboticRightArm-robotic_r_arm;AugmentsRoboticRightArm;AugmentsRoboticRightHand-robotic_r_hand;AugmentsRoboticRightHand;LPPVulpkaninskull_sponsor;LPPVulpkaninprotogen_face;LPPVulpkanintprotogen_torso;LPPVulpkanintprotogen_legs;LPPVulpkanintprotogen_hands;LPPVulpkanintprotogen_hands_ful_gif;LPPVulpkanintprotogen_hands_l_gif;LPPVulpkanintprotogen_hands_r_gif;LPPVulpkanintprotogen_legs_ful_gif;LPPVulpkanintprotogen_legs_l_gif;LPPVulpkanintprotogen_legs_r_gif;LPPVulpkanintprotogen_hands_ful_rgb;LPPVulpkanintprotogen_hands_l_rgb;LPPVulpkanintprotogen_hands_r_rgb;LPPVulpkanintprotogen_legs_ful_rgb;LPPVulpkanintprotogen_legs_l_rgb;LPPVulpkanintprotogen_legs_r_rgb;HumanHairSpicy;HumanHairCotton;HumanHairFingerwave;HumanHairFortuneteller;HumanHairFortunetellerAlt;HumanHairLongdtails;HumanHairLooseSlicked;HumanHairQuadcurls;HumanHairShy;HumanHairWife;LPPAllsuccubus;LPPAlldurak;LPPAllhorn1;LPPAllhorn2;LPPAllhorn3;LPPAllhorn4;LPPAllhorn5;LPPAllhorn6;LPPAlllord;LPPAlloldpain;LPPAlltavrhorn;LPPAlltelehorn;LPPAllvampirehorn;LPPTattooAgent;LPPTattooTear;LPPJaw;LPPVisor;LPPRobohead;LPPIronheart;LPPProsthesisLLeg;LPPProsthesisRLeg;LPPProsthesisLHand;LPPProsthesisRHand;LPPProsthesisLWrist;LPPProsthesisRWrist;CyberlimbRArmBishop;CyberlimbLArmBishop;CyberlimbRHandBishop;CyberlimbLHandBishop;CyberlimbRLegBishop;CyberlimbLLegBishop;CyberlimbLFootBishop;CyberlimbRFootBishop;CyberlimbTorsoBishop;CyberlimbRArmHephaestus;CyberlimbLArmHephaestus;CyberlimbRHandHephaestus;CyberlimbLHandHephaestus;CyberlimbRLegHephaestus;CyberlimbLLegHephaestus;CyberlimbLFootHephaestus;CyberlimbRFootHephaestus;CyberlimbTorsoHephaestus;CyberlimbRArmHephaestusTitan;CyberlimbLArmHephaestusTitan;CyberlimbRHandHephaestusTitan;CyberlimbLHandHephaestusTitan;CyberlimbRLegHephaestusTitan;CyberlimbLLegHephaestusTitan;CyberlimbLFootHephaestusTitan;CyberlimbRFootHephaestusTitan;CyberlimbTorsoHephaestusTitan;CyberlimbRArmMorpheus;CyberlimbLArmMorpheus;CyberlimbRHandMorpheus;CyberlimbLHandMorpheus;CyberlimbRLegMorpheus;CyberlimbLLegMorpheus;CyberlimbLFootMorpheus;CyberlimbRFootMorpheus;CyberlimbTorsoMorpheus;CyberlimbRArmWardtakahashi;CyberlimbLArmWardtakahashi;CyberlimbRHandWardtakahashi;CyberlimbLHandWardtakahashi;CyberlimbRLegWardtakahashi;CyberlimbLLegWardtakahashi;CyberlimbLFootWardtakahashi;CyberlimbRFootWardtakahashi;CyberlimbTorsoWardtakahashiMale;CyberlimbTorsoWardtakahashiFemale;CyberlimbRArmZenghu;CyberlimbLArmZenghu;CyberlimbRHandZenghu;CyberlimbLHandZenghu;CyberlimbRLegZenghu;CyberlimbLLegZenghu;CyberlimbLFootZenghu;CyberlimbRFootZenghu;CyberlimbTorsoZenghu;CyberlimbRArmNanotrasen;CyberlimbLArmNanotrasen;CyberlimbRHandNanotrasen;CyberlimbLHandNanotrasen;CyberlimbRLegNanotrasen;CyberlimbLLegNanotrasen;CyberlimbLFootNanotrasen;CyberlimbRFootNanotrasen;CyberlimbTorsoNanotrasen;CyberlimbRArmXion;CyberlimbLArmXion;CyberlimbRHandXion;CyberlimbLHandXion;CyberlimbRLegXion;CyberlimbLLegXion;CyberlimbLFootXion;CyberlimbRFootXion;CyberlimbTorsoXion;LPPTailLisichkaBolsh;LPPTailLisichka;LPPTailLisichkaPushok;LPPTailLisichkaPyatna;LPPSevenTail;LPPTailVulptail; + +sponsor-markings-tier-4 = {sponsor-markings-tier-3}; +sponsor-markings-tier-5 = {sponsor-markings-tier-4}; diff --git a/Resources/Locale/ru-RU/_LostParadise/traits/custom.ftl b/Resources/Locale/ru-RU/_LostParadise/traits/custom.ftl new file mode 100644 index 0000000000..d6500ec6ce --- /dev/null +++ b/Resources/Locale/ru-RU/_LostParadise/traits/custom.ftl @@ -0,0 +1,4 @@ +trait-ElfLanguage-name = Эльфийский язык +trait-ElfLanguage-desc = Ваш язык крайне высокий прямо как рост. +trait-DwarfLanguage-name = Дварфский язык +trait-DwarfLanguage-desc = Ваш язык крайне низкий прямо как рост. diff --git a/Resources/Locale/ru-RU/_LostParadise/update20.ftl b/Resources/Locale/ru-RU/_LostParadise/update20.ftl index 2ffc0a6fa0..e17ff6ec5e 100644 --- a/Resources/Locale/ru-RU/_LostParadise/update20.ftl +++ b/Resources/Locale/ru-RU/_LostParadise/update20.ftl @@ -1,4 +1,4 @@ -ent-LPPCentralCommandRepresentativeIDCard = ID карта представителя ЦентКом +ent-LPPCentralCommandRepresentativeIDCard = ID карта представителя ЦентКом .desc = Выглядит страшно... ent-LPPKirasCloakn = Плащ Киры .desc = Прекрасный плащ с прекрасным капюшоном diff --git a/Resources/Locale/ru-RU/chat/sanitizer-replacements.ftl b/Resources/Locale/ru-RU/chat/sanitizer-replacements.ftl index f5af77cb05..467f2ef2cf 100644 --- a/Resources/Locale/ru-RU/chat/sanitizer-replacements.ftl +++ b/Resources/Locale/ru-RU/chat/sanitizer-replacements.ftl @@ -21,3 +21,6 @@ chatsan-tearfully-salutes = отдаёт честь со слезами на г chatsan-tearfully-smiles = улыбается со слезами на глазах chatsan-winks = подмигивает chatsan-shrugs = пожимает плечами +chatsan-awoo = воет +chatsan-hiss = шипит +chatsan-nyaaa = някает diff --git a/Resources/Locale/ru-RU/connection-messages.ftl b/Resources/Locale/ru-RU/connection-messages.ftl index 4a4b679972..1ea7a8c31f 100644 --- a/Resources/Locale/ru-RU/connection-messages.ftl +++ b/Resources/Locale/ru-RU/connection-messages.ftl @@ -34,7 +34,7 @@ soft-player-cap-full = Сервер заполнен! panic-bunker-account-denied = Этот сервер находится в режиме "Бункер", часто используемом в качестве меры предосторожности против рейдов. Новые подключения от аккаунтов, не соответствующих определённым требованиям, временно не принимаются. Повторите попытку позже panic-bunker-account-denied-reason = Этот сервер находится в режиме "Бункер", часто используемом в качестве меры предосторожности против рейдов. Новые подключения от аккаунтов, не соответствующих определённым требованиям, временно не принимаются. Повторите попытку позже Причина: "{ $reason }" panic-bunker-account-reason-account = Ваш аккаунт Space Station 14 слишком новый. Он должен быть старше { $minutes } минут -panic-bunker-account-reason-overall = Необходимо минимальное отыгранное Вами время на сервере — {$hours} час(-ов) +panic-bunker-account-reason-overall = Необходимо минимальное отыгранное Вами время на сервере — { $hours } час(-ов) baby-jail-account-denied = Этот молодой сервер предназначен для новичков и тех, кто хочет им помочь. Подключения со стороны учетных записей, которые слишком старые или не находятся в белом списке, не принимаются. Посетите некоторые другие сервера и узнайте все, что может предложить Space Station 14. Веселитесь! baby-jail-account-denied-reason = This server is a newbie server, intended for new players and those who want to help them. New connections by accounts that are too old or are not on a whitelist are not accepted. Check out some other servers and see everything Space Station 14 has to offer. Have fun! Reason: "{ $reason }" baby-jail-account-reason-account = Your Space Station 14 account is too old. It must be younger than { $minutes } minutes diff --git a/Resources/Locale/ru-RU/game-ticking/game-presets/preset-traitor.ftl b/Resources/Locale/ru-RU/game-ticking/game-presets/preset-traitor.ftl index 359221f4d9..ed6d4c4eed 100644 --- a/Resources/Locale/ru-RU/game-ticking/game-presets/preset-traitor.ftl +++ b/Resources/Locale/ru-RU/game-ticking/game-presets/preset-traitor.ftl @@ -22,7 +22,7 @@ traitor-death-match-end-round-description-entry = КПК { $originalName }, с { # TraitorRole traitor-role-greeting = - Вы - агент организации { $corporation } на задании Синдиката. + Вы - агент организации синдиката на задании Синдиката. Ваши цели и кодовые слова перечислены в меню персонажа. Воспользуйтесь аплинком, встроенным в ваш КПК, чтобы приобрести всё необходимое для выполнения работы. Смерть Nanotrasen! diff --git a/Resources/Locale/ru-RU/interaction/verbs/core.ftl b/Resources/Locale/ru-RU/interaction/verbs/core.ftl index ed8b5c33f0..e106c17639 100644 --- a/Resources/Locale/ru-RU/interaction/verbs/core.ftl +++ b/Resources/Locale/ru-RU/interaction/verbs/core.ftl @@ -1,2 +1,2 @@ -interaction-verb-invalid = Некоторые требования к этому действию не соблюдены. Вы не можете использовать его прямо сейчас. +interaction-verb-invalid = Некоторые требования к этому действию не соблюдены. Вы не можете использовать его прямо сейчас. interaction-verb-cooldown = Этот слово находится в режиме "Кулдауна". Подождите{ TOSTRING($seconds, "F1") } секунд. diff --git a/Resources/Locale/ru-RU/interaction/verbs/help.ftl b/Resources/Locale/ru-RU/interaction/verbs/help.ftl index 684d7c1d5c..bcccb86a1a 100644 --- a/Resources/Locale/ru-RU/interaction/verbs/help.ftl +++ b/Resources/Locale/ru-RU/interaction/verbs/help.ftl @@ -1,4 +1,4 @@ -interaction-HelpUp-name = Помогите подняться +interaction-HelpUp-name = Помогите подняться interaction-HelpUp-description = Помогите человеку встать. interaction-HelpUp-delayed-self-popup = Вы пытаетесь помочь { THE($target) } встать... interaction-HelpUp-delayed-target-popup = { THE($user) } пытается помочь вам встать... diff --git a/Resources/Locale/ru-RU/interaction/verbs/noop.ftl b/Resources/Locale/ru-RU/interaction/verbs/noop.ftl index d575ec026a..b020e6cd2f 100644 --- a/Resources/Locale/ru-RU/interaction/verbs/noop.ftl +++ b/Resources/Locale/ru-RU/interaction/verbs/noop.ftl @@ -1,4 +1,4 @@ -interaction-LookAt-name = Осмотреть +interaction-LookAt-name = Осмотреть interaction-LookAt-description = Смотри в пустоту и смотри, как она смотрит в ответ.. interaction-LookAt-success-self-popup = Вы смотрите на { THE($target) }. interaction-LookAt-success-target-popup = Вы чуствуете как { THE($user) } смотрит на... diff --git a/Resources/Locale/ru-RU/interaction/verbs/self.ftl b/Resources/Locale/ru-RU/interaction/verbs/self.ftl index 4a2ad4323a..447a74d704 100644 --- a/Resources/Locale/ru-RU/interaction/verbs/self.ftl +++ b/Resources/Locale/ru-RU/interaction/verbs/self.ftl @@ -1,4 +1,4 @@ -# Interactions here don't have target popups because the target is always the user itself. +# Interactions here don't have target popups because the target is always the user itself. # Why would you do this? interaction-PinchSelf-name = Ущипнуть себя interaction-PinchSelf-description = Говорят, это помогает тебе убедиться в том, что ад, который творится вокруг тебя, - это не сон. diff --git a/Resources/Locale/ru-RU/job/job-names.ftl b/Resources/Locale/ru-RU/job/job-names.ftl index c9a095bee3..572d3d2fa9 100644 --- a/Resources/Locale/ru-RU/job/job-names.ftl +++ b/Resources/Locale/ru-RU/job/job-names.ftl @@ -1,100 +1,100 @@ -job-name-warden = смотритель -job-name-security = офицер СБ -job-name-cadet = кадет СБ -job-name-hos = глава службы безопасности -job-name-detective = детектив -job-name-brigmedic = медицинский офицер -job-name-borg = киборг -job-name-scientist = учёный -job-name-research-assistant = научный ассистент +job-name-warden = Смотритель +job-name-security = Офицер СБ +job-name-cadet = Кадет СБ +job-name-hos = Глава Службы Безопасности +job-name-detective = Детектив +job-name-brigmedic = Медицинский Офицер +job-name-borg = Киборг +job-name-scientist = Учёный +job-name-research-assistant = Научный Ассистент job-name-rd = Научный Директор -job-name-psychologist = психолог -job-name-intern = интерн -job-name-doctor = врач -job-name-paramedic = парамедик -job-name-cmo = главный врач -job-name-chemist = химик -job-name-technical-assistant = технический ассистент -job-name-engineer = инженер -job-name-atmostech = атмосферный техник -job-name-hop = глава персонала -job-name-captain = капитан -job-name-serviceworker = сервисный работник -job-name-centcomoff = представитель Центком -job-name-reporter = репортёр -job-name-musician = музыкант -job-name-librarian = библиотекарь -job-name-mime = мим -job-name-ce = старший инженер -job-name-janitor = уборщик +job-name-psychologist = Психолог +job-name-intern = Интерн +job-name-doctor = Врач +job-name-paramedic = Парамедик +job-name-cmo = Главный Врач +job-name-chemist = Химик +job-name-technical-assistant = Технический Ассистент +job-name-engineer = Инженер +job-name-atmostech = Атмосферный Техник +job-name-hop = Глава Персонала +job-name-captain = Капитан +job-name-serviceworker = Сервисный Работник +job-name-centcomoff = Представитель Центком +job-name-reporter = Репортёр +job-name-musician = Музыкант +job-name-librarian = Библиотекарь +job-name-mime = Мим +job-name-ce = Старший Инженер +job-name-janitor = Уборщик job-name-chaplain = Священник -job-name-botanist = ботаник -job-name-bartender = бармен -job-name-passenger = ассистент -job-name-salvagespec = утилизатор -job-name-qm = Офицер логистики -job-name-cargotech = грузчик -job-name-chef = шеф-повар -job-name-clown = клоун -job-name-ertleader = лидер ОБР +job-name-botanist = Ботаник +job-name-bartender = Бармен +job-name-passenger = Ассистент +job-name-salvagespec = Утилизатор +job-name-qm = Офицер Логистики +job-name-cargotech = Грузчик +job-name-chef = Шеф-повар +job-name-clown = Клоун +job-name-ertleader = Лидер ОБР job-name-ertchaplain = Священник ОБР -job-name-ertengineer = инженер ОБР -job-name-ertsecurity = офицер безопасности ОБР -job-name-ertmedic = медик ОБР -job-name-ertjanitor = уборщик ОБР -job-name-boxer = боксёр -job-name-zookeeper = зоотехник -job-name-visitor = посетитель +job-name-ertengineer = Инженер ОБР +job-name-ertsecurity = Офицер Безопасности ОБР +job-name-ertmedic = Медик ОБР +job-name-ertjanitor = Уборщик ОБР +job-name-boxer = Боксёр +job-name-zookeeper = Зоотехник +job-name-visitor = Посетитель # Role timers - Make these alphabetical or I cut you -JobAtmosphericTechnician = атмосферный техник -JobBartender = бармен -JobBorg = киборг -JobBotanist = ботаник -JobCaptain = капитан -JobCargoTechnician = грузчик -JobCentralCommandOfficial = представитель Центком -JobChaplain = священник -JobChef = шеф-повар -JobChemist = химик -JobChiefEngineer = старший инженер -JobChiefMedicalOfficer = главный врач -JobClown = клоун -JobDetective = детектив -JobERTEngineer = инженер ОБР -JobBrigmedic = медицинский офицер -JobERTChaplain = священник ОБР -JobERTJanitor = уборщик ОБР -JobERTLeader = лидер ОБР -JobERTMedical = медик ОБР -JobERTSecurity = офицер безопасности ОБР -JobHeadOfPersonnel = глава персонала -JobHeadOfSecurity = глава службы безопасности -JobJanitor = уборщик -JobLawyer = адвокат -JobLibrarian = библиотекарь -JobMedicalDoctor = врач -JobMedicalIntern = интерн -JobMime = мим -JobMusician = музыкант -JobPassenger = ассистент -JobParamedic = парамедик -JobPsychologist = психолог -JobQuartermaster = Офицер логистики -JobReporter = репортёр -JobResearchDirector = Мистагог -JobResearchAssistant = научный ассистент -JobSalvageSpecialist = утилизатор -JobScientist = учёный -JobSecurityCadet = кадет СБ -JobSecurityOfficer = офицер СБ -JobSeniorEngineer = Senior Engineer -JobSeniorOfficer = Senior Officer -JobSeniorPhysician = Senior Physician -JobSeniorResearcher = Senior Researcher -JobServiceWorker = сервисный работник -JobStationEngineer = инженер -JobTechnicalAssistant = технический ассистент -JobWarden = смотритель -JobVisitor = посетитель -JobBoxer = боксёр -JobZookeeper = зоотехник +JobAtmosphericTechnician = Атмосферный Техник +JobBartender = Бармен +JobBorg = Киборг +JobBotanist = Ботаник +JobCaptain = Капитан +JobCargoTechnician = Грузчик +JobCentralCommandOfficial = Представитель Центком +JobChaplain = Священник +JobChef = Шеф-повар +JobChemist = Химик +JobChiefEngineer = Старший Инженер +JobChiefMedicalOfficer = Главный Врач +JobClown = Клоун +JobDetective = Детектив +JobERTEngineer = Инженер ОБР +JobBrigmedic = Медицинский офицер +JobERTChaplain = Священник ОБР +JobERTJanitor = Уборщик ОБР +JobERTLeader = Лидер ОБР +JobERTMedical = Медик ОБР +JobERTSecurity = Офицер Безопасности ОБР +JobHeadOfPersonnel = Глава Персонала +JobHeadOfSecurity = Глава Службы Безопасности +JobJanitor = Уборщик +JobLawyer = Адвокат +JobLibrarian = Библиотекарь +JobMedicalDoctor = Врач +JobMedicalIntern = Интерн +JobMime = Мим +JobMusician = Музыкант +JobPassenger = Ассистент +JobParamedic = Парамедик +JobPsychologist = Психолог +JobQuartermaster = Офицер Логистики +JobReporter = Репортёр +JobResearchDirector = Научный Директор +JobResearchAssistant = Научный Ассистент +JobSalvageSpecialist = Утилизатор +JobScientist = Учёный +JobSecurityCadet = Кадет СБ +JobSecurityOfficer = Офицер СБ +JobSeniorEngineer = Старший инженер +JobSeniorOfficer = Инструктор СБ +JobSeniorPhysician = Старший психолог +JobSeniorResearcher = Старший ученый +JobServiceWorker = Сервисный работник +JobStationEngineer = Инженер +JobTechnicalAssistant = Технический ассистент +JobWarden = Смотритель +JobVisitor = Посетитель +JobBoxer = Боксёр +JobZookeeper = Зоотехник diff --git a/Resources/Locale/ru-RU/nuke/nuke-component.ftl b/Resources/Locale/ru-RU/nuke/nuke-component.ftl index a3d8900eed..7f9516f183 100644 --- a/Resources/Locale/ru-RU/nuke/nuke-component.ftl +++ b/Resources/Locale/ru-RU/nuke/nuke-component.ftl @@ -1,6 +1,6 @@ nuke-component-cant-anchor-floor = Крепёжным болтам не удаётся закрепиться в полу! nuke-component-announcement-sender = Ядерная боеголовка -nuke-component-announcement-armed = Внимание! Механизм самоуничтожения станции был активирован {$location}. До детонации { $time } секунд. +nuke-component-announcement-armed = Внимание! Механизм самоуничтожения станции был активирован { $location }. До детонации { $time } секунд. nuke-component-announcement-unarmed = Механизм самоуничтожение станции деактивирован! Хорошего дня! nuke-component-announcement-send-codes = Внимание! Запрошенные коды самоуничтожения были отправлены на факс капитана. nuke-component-doafter-warning = Вы начинаете перебирать провода и кнопки, в попытке обезвредить ядерную бомбу. Это может занять некоторое время. diff --git a/Resources/Locale/ru-RU/objectives/conditions/spider-charge.ftl b/Resources/Locale/ru-RU/objectives/conditions/spider-charge.ftl index 9e57921e20..64a463dbe0 100644 --- a/Resources/Locale/ru-RU/objectives/conditions/spider-charge.ftl +++ b/Resources/Locale/ru-RU/objectives/conditions/spider-charge.ftl @@ -1,2 +1,2 @@ objective-condition-spider-charge-title-no-target = Взорвать бомбу клана Паука (нет цели) -objective-condition-spider-charge-title = Взорвать бомбу клана Паука в {$location}. +objective-condition-spider-charge-title = Взорвать бомбу клана Паука в { $location }. diff --git a/Resources/Locale/ru-RU/pda/pda-component.ftl b/Resources/Locale/ru-RU/pda/pda-component.ftl index ab50c61a8b..b4ff27455a 100644 --- a/Resources/Locale/ru-RU/pda/pda-component.ftl +++ b/Resources/Locale/ru-RU/pda/pda-component.ftl @@ -17,7 +17,7 @@ comp-pda-ui-footer = Карманный Персональный Компьют comp-pda-ui-station = Станция: [color=white]{ $station }[/color] comp-pda-ui-station-alert-level = Уровень угрозы: [color={ $color }]{ $level }[/color] comp-pda-ui-station-alert-level-instructions = Инструкции: [color=white]{ $instructions }[/color] -comp-pda-ui-station-time = Время: [color=white]{ $time }[/color] +comp-pda-ui-station-time = Текущее время и дата: [color=white]{ $time } { $date }[/color] comp-pda-ui-eject-id-button = Извлечь ID comp-pda-ui-eject-pen-button = Извлечь ручку comp-pda-ui-ringtone-button-description = Измените рингтон вашего КПК diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/dogs.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/dogs.ftl new file mode 100644 index 0000000000..3054a10e84 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/dogs.ftl @@ -0,0 +1,4 @@ +ent-MobPibble = питбуль + .desc = Собака-нянька. Или лабораторная смесь, в зависимости от того, кто просит. +ent-MobPibbleVent = вентбуль + .desc = Какая-то смесь питбулей... или, может быть, следующий этап эволюции пиббла? diff --git a/Resources/Locale/ru-RU/station-goal/station-goals.ftl b/Resources/Locale/ru-RU/station-goal/station-goals.ftl index cda231e6b2..a0d6061f4d 100644 --- a/Resources/Locale/ru-RU/station-goal/station-goals.ftl +++ b/Resources/Locale/ru-RU/station-goal/station-goals.ftl @@ -14,34 +14,34 @@ station-goal-xeno = 1. Иметь как минимум один слой защиты из армированного стекла; 2. Хотя бы одна из камер должна быть оборудована системой воздухоснабжения; 3. На входе должна быть предусмотрена система циклических шлюзов. - + Попросите утилизаторов поймать как минимум 2 представителей экзотической фауны (например, космического карпа) и перевезти их в вышеописанные камеры. - + Требования к захвату: 1. Экзотическая фауна не должна иметь тяжелых повреждений на момент помещения в научно-исследовательское отделение; 2. При гибели отловленной фауны вы обязаны поймать другую, клонирование строго запрещено. - + После того, как вы соберете необходимую фауну, вы должны изучить её и написать отчёт о свойствах и способностях. Отчет должен быть заверен печатью капитана, старшего инженера и главы научно-исследовательского отдела с последующей отправкой документа по факсу Центральному Командованию. - + Требования к опыту: 1. Опыт должен быть подробно документирован; 2. Тестовые мероприятия могут включать в себя: работу с газами, дымом, пеной или введение экспериментальных реагентов (например, когнизина) в пойманную фауну. station-goal-museum = Уважаемое командование станции, цель вашей смены – построить музей, экспонатами для которого станут уникальные предметы, собранные со станции. - + Ниже приведены требования к оформлению музея: 1. Музей должен быть конструктивно связан со станцией защищённым коридором или располагаться внутри него; 2. Помещения должны иметь размеры, позволяющие беспрепятственно принимать большое количество посетителей; 3. Помещения должны быть обеспечены нормальной атмосферой, вентиляцией и стабильным электроснабжением; 4. Оформление помещения должно быть приятным визуально; 5. Отсеки для экспонатов должны быть усилены соответственно тому, что в них содержится. - + Требования к экспонату: 1. Экспонаты должны быть уникальными в своём роде; 2. Каждый отдел обязан предоставить в музейный фонд не менее 2 экспонатов; 3. Общее количество экспонатов должно быть не менее 20. - + Экспонаты могут включать в себя: 1. Экзотические напитки и блюда, требующие необычного способа производства и/или нестандартных ингредиентов; 2. Экзотическую материя или необычное вещество; @@ -53,11 +53,11 @@ station-goal-museum = 8. Мутировавшие биологические организмы; 9. Одомашненные дикие животные или разумные негуманоидные формы жизни; 10. Найденные сокровища или предметы, к которым нет свободного доступа. - + По завершении строительства музея необходимо предоставить персоналу не менее 20 минут свободного от работы времени для посещения музея. station-goal-area = Уважаемое командование станции, цель вашей смены — повысить эффективность использования пространства станции. - + Требуется привести заброшенные помещения в надлежащий вид и найти им применение. Каждое подразделение должно оборудовать и эффективно использовать площадь прилегающих тоннелей технического обслуживания. Достаточно просторные служебные тоннели необходимо переоборудовать в жилые помещения. @@ -65,23 +65,23 @@ station-goal-area = Кроме того, необходимо предусмотреть общественный, хорошо освещенный коридор, соединяющий все отреставрированные отсеки и новые жилые блоки. station-goal-bureaucraticerror = ДОСТУП К ДАННОМУ ДОКУМЕНТУ ЗАПРЕЩЁН ЛИЦАМ, НЕ ЯВЛЯЮЩИМСЯ ГЛАВАМИ ОТДЕЛОВ ИЛИ ВЫСШИМИ ЛИЦАМИ НА СТАНЦИИ. - + Уважаемое командование станции, сообщаем Вам, что цель вашей смены была утрачена в результате бюрократической ошибки. В связи с этим у вас есть возможность самостоятельно назначить новую цель для станции. - + Новые требования к цели: 1. Актуальность: цель должна быть актуальной и актуальной для текущей ситуации; 2. Вовлеченность: цель должна требовать сотрудничества как можно большего количества отделов; 3. Масштабность: Цель должна включать достаточный, но не чрезмерный объем работы для обеспечения эффективного выполнения задачи. - + Напоминаем, что распространение содержания данного документа лицам, указанным выше по тексту, строго запрещено из-за возможности дискредитации руководства корпорации. Поэтому, чтобы предъявить экипажу новую цель, командный состав должен обратиться к Центральному Командованию для одобрения идей. station-goal-anomalies = Уважаемое командование станции, цель вашей смены — предоставить НаноТрейзен новую информацию об аномалиях. - + Необходимо провести экспериментальные исследования, направленные на проверку последствий обрушения как минимум 4-х уникальных аномалий. Во время или после экспериментов необходимо изолировать и документировать вышеупомянутые аномалии. - + Требования к документам: 1. Официальное название аномалии; 2. Физическое описание; @@ -89,11 +89,11 @@ station-goal-anomalies = 4. Реакция аномалии на различные частицы; 5. Последствия коллапса; 6. Местоположение аномалии. - + Документ необходимо заверить печатью руководителя научно-исследовательского отдела и отправить по факсу в Центральное Командование. station-goal-combat = Уважаемое командование станции, в связи с увеличением атак пиратских кораблей в этом секторе, целью вашей смены является повышение общей боеготовности станции. - + Необходимо: 1. Организовать досмотр каждого разумного существа и груза, прибывающего на станцию ​​или покидающего её. 2. Построить или модифицировать существующий контрольно-пропускной пункт при прибытии и отбытии. КПП должен иметь возможность полностью блокировать порты со стороны основной части станции. @@ -115,7 +115,7 @@ station-goal-combat = Если боксерского ринга нет, необходимо его создать. station-goal-shuttle = Уважаемое командование станции, цель вашей смены — построить пилотируемый космический шаттл. - + Требования качества: 1. Шаттл должен иметь запираемый мостик; Медицинский кабинет с необходимыми медикаментами и химическим оборудованием; @@ -124,7 +124,7 @@ station-goal-shuttle = 2. Между стыковочным шлюзом и основными помещениями должно быть промежуточное помещение для предотвращения возможной разгерметизации. 3. Шаттл должен иметь стандартную атмосферу, а также несколько баллонов с воздухом и газом для её поддержания. 4. Шаттл должен иметь возможность двигаться во всех направлениях и достаточно хорошо поворачиваться. - + По завершении необходимо набрать экипаж шаттла из персонала станции. В состав экипажа шаттла должны входить: 1 пилот; @@ -133,68 +133,68 @@ station-goal-shuttle = 1 сотрудник службы безопасности. station-goal-singularity = Уважаемое командование станции, цель вашей смены — построить генератор на основе гравитационной сингулярности. - + Требования к постройке следующие: 1. Сооружение должно располагаться на значительном расстоянии от станции. 2. Сооружение должно быть защищено от метеоритов и космического мусора. 3. Удерживающее поле должно предотвращать потерю сингулярности 3-го класса. station-goal-solarpanels = Уважаемое командование станции, цель вашей смены – организация системы резервного питания станции. - + Требуется следующая работа: 1. Построить две новые ветки солнечных панелей. 2. Выделите место для отсека с запасным оборудованием. В этом отсеке должно быть размещено не менее трех полностью заряженных СМЭСов, которые без необходимости не следует подключать к основной энергосистеме станции. station-goal-artifacts = Уважаемое командование станции, цель вашей смены — предоставить НаноТрейзен новую информацию об инопланетных артефактах. - + Цель вашей смены обнаружить, исследовать и доставить космические артефакты. Для её выполнения будет необходима работа утилизаторов для поиска и доставки артефактов с обломков вокруг станции. После доставки их необходимо передать в специальном контейнере отделу исследования для изучения и документирования их свойств. Необходимо доставить на шаттле эвакуации в специальных контейнерах как минимум 2 полностью изученных и задокументированных артефакта. - + Рекомендуемая информация для документа: 1. Название артефакта. 2. Физическое описание. 3. Свойства объекта. 4. Место, где был найден артефакт. 5. Дополнительные примечания. - + Документ должен быть заверен печатью руководителя научно-исследовательского отдела. station-goal-storage = Уважаемое командование станции, цель вашей смены — построить орбитальное хранилище припасов и технологий. - + Хранилище должно быть размещено в космосе отдельно от основной станции, проследите за прочностью его конструкции, случайный метеорит не должен повредить его. - + В хранилище необходимо разместить 4 ящика с, соответственно: - Передовыми медикаментами; - Запасами лучших семян; - Ящик-холодильником для продуктов с высокой пищевой ценностью; - Ценные, но не уникальные платы. - + Проследите за сохранностью содержимого в хранилище до окончания смены. station-goal-zoo = Уважаемое командование станции, цель вашей смены – увеличить рекреацию персонала станции. - + Необходимо построить зоопарк не менее чем с 5 вольерами, в которых содержатся разные виды животных, заказанные в отделе логистики. Обеспечьте животных едой, хотя бы одним чистоботом в каждом вольере и всем необходимым для жизни в зависимости от вида животного. Также необходимо создать благоприятный климат в вольере, путём изменения количества водяного пара в камере атмосферными техниками. - + По завершении строительства зоопарка необходимо предоставить персонал не менее 20 минут свободного от работы времени для посещения нового зоопарка. station-goal-labor = Уважаемое командование станции, цель вашей смены – повышение мотивации личного состава к росту производительности труда. - + Для этого необходимо, чтобы каждый из руководителей в течение смены внимательно следил за выполнением своих сотрудников обязанностей и оценивал их. По истечении установленного Командованием времени для оценки в каждом из подразделений должен быть выбран лучший, по мнению главы, сотрудник, которого пригласят на обед, где сотрудники Командования будут обязаны наградить его медалью и особым призом. Главы должны предоставить отчет с указанием должности и заслуг работника за смену. К ужину следует подготовить напитки и еду, а также, по возможности, несколько развлекательных мероприятий, допускающих присутствие актёров и музыкантов. На время торжества столовая или иное место, выбранное для проведения мероприятия, должно быть недоступно для остальных членов экипажа. - + Продолжительность смены для более точной оценки работы личного состава должна устанавливаться Центральным Командованием. После ужина следует объявить об окончании смены и вызвать эвакуационный шаттл. station-goal-lectures = Уважаемое командование станции, целью вашей смены является проведение ряда мероприятий в рамках плана корпорации по повышению знаний её сотрудников. - + Командному составу поручено организовать площадку для публичных лекций. Зал должен быть оборудован достаточно большой сценой для выступающих посередине, подиумом для докладчика с одной стороны, большим количеством сидячих мест для гостей и специальной стойкой/столом для брошюр у входа. Также необходимо выбрать ведущего/организатора мероприятия. @@ -202,5 +202,5 @@ station-goal-lectures = Отобранные сотрудники под руководством главы отдела должны подготовить короткую лекцию/презентацию на конкретную тему в рамках своей специализации (например, вред наркотиков и причина их криминализации, влияние курения на организм, актерская деятельность, ценообразование продуктов, кулинария и т. д.), желательно с демонстрационными материалами, и не менее чем 10 брошюрами, на которых должны быть указаны тезисы лекции. В указанное командованием время экипаж должен собраться на месте проведения мероприятия, где будут читаться лекции. Между лекциями могут быть перерывы, чтобы гости могли прочитать брошюры и отдохнуть. - + После окончания мероприятия следует объявить об окончании смены и вызвать эвакуационный шаттл. diff --git a/Resources/Locale/ru-RU/storygen/story-template.ftl b/Resources/Locale/ru-RU/storygen/story-template.ftl index 834dcc20a7..cea2e471e7 100644 --- a/Resources/Locale/ru-RU/storygen/story-template.ftl +++ b/Resources/Locale/ru-RU/storygen/story-template.ftl @@ -1,4 +1,4 @@ story-template-generic = Это { $bookGenre }, где главными героями являются { $char1Adj } { $char1Type } и { $char2Adj } { $char2Type }. Вследствие { $event }, они { $actionTrait } { $action } { $char3Type }, { $location }. - + { CAPITALIZE($element) } { $elementTrait }. diff --git a/Resources/Locale/ru-RU/warps/warp-point-component.ftl b/Resources/Locale/ru-RU/warps/warp-point-component.ftl index 4e7c8ae9a4..71a47f7eac 100644 --- a/Resources/Locale/ru-RU/warps/warp-point-component.ftl +++ b/Resources/Locale/ru-RU/warps/warp-point-component.ftl @@ -1 +1 @@ -warp-point-component-on-examine-success = ID данной локации: {$location} +warp-point-component-on-examine-success = ID данной локации: { $location } diff --git a/Resources/Locale/ru-RU/wires/wire-names.ftl b/Resources/Locale/ru-RU/wires/wire-names.ftl index 29fe29bb3f..49b52cde18 100644 --- a/Resources/Locale/ru-RU/wires/wire-names.ftl +++ b/Resources/Locale/ru-RU/wires/wire-names.ftl @@ -21,6 +21,7 @@ wires-board-name-anomalygenerator = Генератор аномалий wires-board-name-cloningpod = Капсула клонирования wires-board-name-cryopod = Криокапсула wires-board-name-chemdispenser = Раздатчик химикатов +wires-board-name-chemmaster = ChemMaster wires-board-name-chem_master = Мастер химикатов wires-board-name-generator = Генератор wires-board-name-vendingmachine = Торгомат diff --git a/Resources/Maps/_LostParadise/normandy.yml b/Resources/Maps/_LostParadise/normandy.yml new file mode 100644 index 0000000000..056221b29f --- /dev/null +++ b/Resources/Maps/_LostParadise/normandy.yml @@ -0,0 +1,104788 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 67: FloorArcadeBlue + 66: FloorArcadeRed + 51: FloorAsphalt + 48: FloorAsteroidSand + 50: FloorAsteroidSandDug + 38: FloorAsteroidSandUnvariantized + 41: FloorAstroGrass + 52: FloorAstroIce + 47: FloorAstroSnow + 62: FloorBlue + 18: FloorBlueCircuit + 24: FloorBrokenWood + 25: FloorCarpetClown + 58: FloorChromite + 1: FloorDark + 22: FloorDarkOffset + 20: FloorDirt + 35: FloorEighties + 53: FloorElevatorShaft + 61: FloorFreezer + 49: FloorGlass + 31: FloorGold + 23: FloorGrassJungle + 55: FloorGrayConcrete + 17: FloorGreenCircuit + 63: FloorHydro + 19: FloorJungleAstroGrass + 60: FloorKitchen + 5: FloorLaundry + 39: FloorLino + 54: FloorMetalDiamond + 26: FloorMime + 4: FloorMining + 42: FloorMiningLight + 46: FloorMowedAstroGrass + 6: FloorOldConcreteSmooth + 27: FloorPlastic + 2: FloorRGlass + 45: FloorReinforced + 40: FloorReinforcedHardened + 57: FloorShowroom + 34: FloorShuttleBlack + 29: FloorSteel + 3: FloorSteelCheckerDark + 9: FloorSteelCheckerLight + 104: FloorSteelDirty + 65: FloorSteelLime + 56: FloorTechMaint + 64: FloorTechMaint2 + 116: FloorWhite + 13: FloorWhiteDiagonal + 8: FloorWhiteMono + 16: FloorWhiteOffset + 12: FloorWhitePlastic + 126: FloorWood + 30: FloorWoodLarge + 33: FloorWoodTile + 21: LPPFloorDarkMiniS + 10: LPPFloorDarkS + 28: LPPFloorSteelS + 7: LPPFloorWhiteDiagonalS + 14: LPPFloorWhiteMonoS + 11: LPPFloorWhiteS + 36: LPPKitchenHerringbone + 59: LPPKitchenHerringboneS + 68: LPPKitchenSmall + 15: LPPWoodLarge + 180: Lattice + 181: Plating + 37: PlatingAsteroid + 43: PlatingBurnt + 44: PlatingDamaged + 32: TrainLattice +entities: +- proto: "" + entities: + - uid: 1 + 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: 2 + components: + - type: MetaData + name: NT N7 "Нормандия" + - type: Transform + pos: -0.421875,-0.484375 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: HAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAOwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAOwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAOwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPQAAAAAAPQAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAtQAAAAAAPQAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAtQAAAAAAPQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAIQAAAAAAIQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAtQAAAAAAIQAAAAAAIQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAtQAAAAAAIQAAAAAAIQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIQAAAAAAIQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAtQAAAAAADwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADwAAAAAADwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAtQAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAtQAAAAAAIwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AQAAAAAAAQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAIQAAAAAAIQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAIQAAAAAAIQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABAAAAAAAtQAAAAAABAAAAAAABAAAAAAABAAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAAAtQAAAAAABAAAAAAABAAAAAAABAAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAAAtQAAAAAABAAAAAAABAAAAAAABAAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: NwAAAAAAAgAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANwAAAAAAAgAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANwAAAAAAAgAAAAAAtQAAAAAAaAAAAAAAaAAAAAAAtQAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAABQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANwAAAAAAAgAAAAAAtQAAAAAAaAAAAAAAaAAAAAAAtQAAAAAAdAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAANwAAAAAAAgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAdAAAAAAABQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAANwAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAANwAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAA + version: 6 + -3,0: + ind: -3,0 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAANwAAAAAAAgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANwAAAAAAAgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANwAAAAAAAgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAANwAAAAAAAgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAtQAAAAAABgAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAtQAAAAAAFAAAAAAABgAAAAAABgAAAAAABgAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAFAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAABgAAAAAABgAAAAAABgAAAAAAtQAAAAAABgAAAAAABgAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAABAAAAAAABAAAAAAABAAAAAAAtQAAAAAABAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAABAAAAAAABAAAAAAABAAAAAAAtQAAAAAABAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAABAAAAAAABAAAAAAABAAAAAAAtQAAAAAABAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAACgAAAAAAHAAAAAAACgAAAAAAEQAAAAAACgAAAAAAEQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAtQAAAAAAHAAAAAAACgAAAAAAEQAAAAAACgAAAAAAEQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAACgAAAAAAHAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAtQAAAAAAtQAAAAAACgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAACgAAAAAAtQAAAAAACgAAAAAAtQAAAAAAtQAAAAAACgAAAAAAEQAAAAAACgAAAAAAEQAAAAAACgAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAtQAAAAAAAQAAAAAACgAAAAAAEQAAAAAACgAAAAAAEQAAAAAACgAAAAAAtQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAtQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAAFQAAAAAAtQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAAFQAAAAAAtQAAAAAAAQAAAAAACgAAAAAAEgAAAAAAtQAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAAFQAAAAAAtQAAAAAAAQAAAAAA + version: 6 + -4,0: + ind: -4,0 + tiles: CgAAAAAAEgAAAAAAtQAAAAAAtQAAAAAAFQAAAAAAFgAAAAAAFgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAAFQAAAAAAtQAAAAAAAQAAAAAACgAAAAAACgAAAAAAtQAAAAAAtQAAAAAAFQAAAAAAFgAAAAAAFgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAAFQAAAAAAtQAAAAAAAQAAAAAACgAAAAAAEgAAAAAAtQAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAtQAAAAAAAQAAAAAACgAAAAAAEgAAAAAAtQAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAtQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAFgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAFgAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAtAAAAAAAtQAAAAAABgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAtAAAAAAAtQAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAtAAAAAAAtQAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAtAAAAAAAtQAAAAAABgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,-1: + ind: -5,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAACgAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAtQAAAAAACgAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFgAAAAAAFgAAAAAAFQAAAAAAtQAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFQAAAAAAtQAAAAAACgAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFQAAAAAAtQAAAAAACgAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFgAAAAAAFwAAAAAAFwAAAAAAFgAAAAAAFgAAAAAAFQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAAAFQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAAAFQAAAAAACgAAAAAACgAAAAAACgAAAAAA + version: 6 + -5,0: + ind: -5,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFQAAAAAAFQAAAAAAtQAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFQAAAAAAFQAAAAAAtQAAAAAAtQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFQAAAAAAFQAAAAAAtQAAAAAACgAAAAAACgAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFgAAAAAAFgAAAAAAFwAAAAAAFwAAAAAAFgAAAAAAFQAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAAAFQAAAAAAtQAAAAAAtQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFQAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFgAAAAAAFgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAtQAAAAAAFQAAAAAAAgAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAFQAAAAAAFQAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAJwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAJwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAJwAAAAAAJwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAADwAAAAAAJAAAAAAAJAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAJwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAADwAAAAAAJAAAAAAAJAAAAAAAtQAAAAAAHAAAAAAAAgAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAAAGQAAAAAAGQAAAAAAtQAAAAAAHAAAAAAAAgAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAAAGQAAAAAAGQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: AgAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAPwAAAAAAPgAAAAAAPwAAAAAAPgAAAAAAPwAAAAAAPgAAAAAAPwAAAAAAPgAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPgAAAAAAPwAAAAAAPgAAAAAAPwAAAAAAPgAAAAAAPwAAAAAAPgAAAAAAPwAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPgAAAAAAPwAAAAAAPgAAAAAAPwAAAAAAPgAAAAAAPwAAAAAAPgAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAPgAAAAAAPwAAAAAAPgAAAAAAPwAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAPwAAAAAAPgAAAAAAPwAAAAAAPgAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAPgAAAAAAPwAAAAAAPgAAAAAAPwAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAPwAAAAAAPgAAAAAAPwAAAAAAPgAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: HAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAMQAAAAAAfgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAfgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABwAAAAAABwAAAAAAtQAAAAAAtQAAAAAACQAAAAAACQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAACAAAAAAACAAAAAAAtQAAAAAABwAAAAAABwAAAAAAtQAAAAAACQAAAAAACQAAAAAACQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAACAAAAAAACAAAAAAACAAAAAAAtQAAAAAABwAAAAAABwAAAAAAtQAAAAAACQAAAAAACQAAAAAACQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAAABwAAAAAAtQAAAAAACQAAAAAACQAAAAAACQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAACAAAAAAACAAAAAAACAAAAAAAtQAAAAAABwAAAAAABwAAAAAAtQAAAAAACQAAAAAACQAAAAAACQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: HAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAADAAAAAAADAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAtQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAtQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAANwAAAAAANwAAAAAANwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAANwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANwAAAAAANwAAAAAAAgAAAAAANwAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAJwAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: tQAAAAAAtQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADAAAAAAADAAAAAAADAAAAAAAtQAAAAAABwAAAAAABwAAAAAAtQAAAAAADQAAAAAAtQAAAAAAtQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADAAAAAAADAAAAAAADAAAAAAAtQAAAAAABwAAAAAABwAAAAAADAAAAAAADQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABwAAAAAABwAAAAAAtQAAAAAAtQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAtQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAtQAAAAAABwAAAAAABwAAAAAABwAAAAAAtQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAtQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAAtQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAtQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAtQAAAAAABwAAAAAABwAAAAAABwAAAAAADgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABwAAAAAABwAAAAAABwAAAAAAtQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAtQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdAAAAAAAtQAAAAAACQAAAAAAtQAAAAAAtQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAtQAAAAAACQAAAAAACQAAAAAACQAAAAAAtQAAAAAAtQAAAAAAdAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABwAAAAAABwAAAAAAtQAAAAAACQAAAAAACQAAAAAACQAAAAAAtQAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAtQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAtQAAAAAABwAAAAAABwAAAAAAtQAAAAAACQAAAAAACQAAAAAACQAAAAAAtQAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAtQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAtQAAAAAABwAAAAAABwAAAAAAtQAAAAAACQAAAAAACQAAAAAACQAAAAAAtQAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAtQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAtQAAAAAABwAAAAAABwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAdAAAAAAAtQAAAAAAtQAAAAAACwAAAAAAMQAAAAAAMQAAAAAAtQAAAAAAtQAAAAAABwAAAAAABwAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAA + version: 6 + 3,-2: + ind: 3,-2 + tiles: tQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABAAAAAAABAAAAAAABAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABAAAAAAABAAAAAAABAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAtQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAADwAAAAAADwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAtQAAAAAABwAAAAAABwAAAAAAtQAAAAAADAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAABwAAAAAABwAAAAAADAAAAAAADAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAtQAAAAAABwAAAAAABwAAAAAADAAAAAAADAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAtQAAAAAABwAAAAAABwAAAAAAtQAAAAAADAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABwAAAAAABwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADAAAAAAADAAAAAAADAAAAAAAtQAAAAAABwAAAAAABwAAAAAADAAAAAAADQAAAAAAtQAAAAAAtQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADAAAAAAADAAAAAAADAAAAAAAtQAAAAAABwAAAAAABwAAAAAAtQAAAAAADQAAAAAAtQAAAAAAtQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADAAAAAAADAAAAAAADAAAAAAAtQAAAAAABwAAAAAABwAAAAAAtQAAAAAADQAAAAAAtQAAAAAAtQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADAAAAAAADAAAAAAADAAAAAAAtQAAAAAABwAAAAAABwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADAAAAAAADAAAAAAADAAAAAAAtQAAAAAABwAAAAAABwAAAAAAtQAAAAAADQAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: AAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAKwAAAAAAtQAAAAAAKwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAKwAAAAAALAAAAAAAKwAAAAAAKwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAKwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: tQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAANwAAAAAAAgAAAAAANwAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAJwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAANwAAAAAAAgAAAAAANwAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAJwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAANwAAAAAANwAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAANwAAAAAANwAAAAAANwAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAANwAAAAAAAgAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANwAAAAAAAgAAAAAANwAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANwAAAAAAAgAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAKgAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAKgAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAQAAAAAAAQAAAAAAtQAAAAAANwAAAAAAAgAAAAAANwAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAEgAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANwAAAAAAAgAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAANwAAAAAAAgAAAAAANwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAAMQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAJwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAQAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAtQAAAAAAJwAAAAAAJwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIQAAAAAAPQAAAAAAAgAAAAAAAgAAAAAAtQAAAAAAJwAAAAAAJwAAAAAAfgAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAPQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAfgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGwAAAAAAAgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: tQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: JwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAJwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAOQAAAAAAOQAAAAAAtQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAOQAAAAAAOQAAAAAAtQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAOQAAAAAAOQAAAAAAtQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAfgAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAPQAAAAAAPQAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAHgAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-3: + ind: 3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAaAAAAAAAtQAAAAAAtQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAaAAAAAAAtQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAaAAAAAAAaAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-3: + ind: 2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANwAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,0: + ind: 4,0 + tiles: AgAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAALAAAAAAAKwAAAAAAKwAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAKwAAAAAAKwAAAAAALAAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAALQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAQAAAAAALQAAAAAALQAAAAAALQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAAQAAAAAALgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAADAAAAAAADAAAAAAADAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAAgAAAAAANwAAAAAANwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAANwAAAAAANwAAAAAANwAAAAAAtQAAAAAADAAAAAAADAAAAAAADAAAAAAAtQAAAAAAHAAAAAAAAgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAtQAAAAAADAAAAAAADAAAAAAADAAAAAAAtQAAAAAAHAAAAAAAAgAAAAAAtQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAJwAAAAAAJwAAAAAAtQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAALwAAAAAALwAAAAAALwAAAAAAtQAAAAAAtQAAAAAAHAAAAAAA + version: 6 + 4,1: + ind: 4,1 + tiles: JwAAAAAAJwAAAAAAtQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALwAAAAAALwAAAAAANAAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAJwAAAAAAJwAAAAAAtQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAALwAAAAAANAAAAAAANAAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAMAAAAAAAMAAAAAAAMgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAKgAAAAAAEgAAAAAAtQAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAKgAAAAAAEgAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAKgAAAAAAEgAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAQAAAAAAAQAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAA + version: 6 + 4,-3: + ind: 4,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABAAAAAAABAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABAAAAAAAtQAAAAAABAAAAAAABAAAAAAAtQAAAAAABAAAAAAAtQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAtQAAAAAAtQAAAAAAaAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABAAAAAAAtQAAAAAABAAAAAAAtQAAAAAABAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAaAAAAAAAaAAAAAAAtQAAAAAAaAAAAAAAaAAAAAAAtQAAAAAAtQAAAAAABAAAAAAABAAAAAAAtQAAAAAABAAAAAAAtQAAAAAABAAAAAAABAAAAAAAaAAAAAAAtQAAAAAAtQAAAAAAaAAAAAAAtQAAAAAAaAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAtQAAAAAAtQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAaAAAAAAAtQAAAAAAtQAAAAAAaAAAAAAAaAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAA + version: 6 + 4,-2: + ind: 4,-2 + tiles: tQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAADwAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAADwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAADwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADAAAAAAADAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADAAAAAAADAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADAAAAAAADAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADAAAAAAADAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADQAAAAAADQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADQAAAAAADQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAADQAAAAAADQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAADQAAAAAADQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAAgAAAAAA + version: 6 + 4,-1: + ind: 4,-1 + tiles: DQAAAAAADQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAAgAAAAAADQAAAAAADQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAtQAAAAAAdAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAEAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAAgAAAAAA + version: 6 + 4,2: + ind: 4,2 + tiles: tQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAtQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAtQAAAAAAHgAAAAAAHgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAtQAAAAAAHgAAAAAAHgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAtQAAAAAAHgAAAAAAHgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAtQAAAAAAKQAAAAAAKQAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAtQAAAAAA + version: 6 + 4,-4: + ind: 4,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAA + version: 6 + 4,3: + ind: 4,3 + tiles: tQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAJwAAAAAAJwAAAAAAtQAAAAAAKQAAAAAAKQAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,3: + ind: 3,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,0: + ind: 5,0 + tiles: HAAAAAAAAgAAAAAAtQAAAAAAtQAAAAAANgAAAAAAtQAAAAAAtQAAAAAANgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAANgAAAAAAtQAAAAAAEgAAAAAAOAAAAAAAtQAAAAAAHAAAAAAAAgAAAAAAtQAAAAAANQAAAAAANQAAAAAANQAAAAAAtQAAAAAANgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAANgAAAAAAtQAAAAAAEgAAAAAAOAAAAAAAtQAAAAAAAgAAAAAAAgAAAAAAtQAAAAAANQAAAAAAEgAAAAAANQAAAAAAtQAAAAAANgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAANgAAAAAAtQAAAAAAEgAAAAAAOAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAANgAAAAAAEgAAAAAANgAAAAAAtQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAtQAAAAAAEgAAAAAAOAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAANgAAAAAANgAAAAAANgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAANgAAAAAANgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAANgAAAAAANgAAAAAANgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAANgAAAAAANgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,-1: + ind: 5,-1 + tiles: AgAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAADwAAAAAADwAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAADwAAAAAADwAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAMQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAMQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAMQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAtQAAAAAANgAAAAAAtQAAAAAAtQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAtQAAAAAAEgAAAAAAOAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAtQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAtQAAAAAAEgAAAAAAOAAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAANgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAEgAAAAAAOAAAAAAAtQAAAAAAAgAAAAAAAgAAAAAAtQAAAAAANgAAAAAAKAAAAAAANgAAAAAAtQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAtQAAAAAAEgAAAAAAOAAAAAAAtQAAAAAA + version: 6 + 5,-2: + ind: 5,-2 + tiles: tQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAtQAAAAAAAgAAAAAAHgAAAAAAAgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAHgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAgAAAAAAHwAAAAAAAgAAAAAAHwAAAAAAAgAAAAAAtQAAAAAAAgAAAAAAHgAAAAAAAgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAtQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAtQAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAtQAAAAAAHQAAAAAAtQAAAAAAHQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAtQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHQAAAAAAtQAAAAAAtQAAAAAAHAAAAAAAHAAAAAAAtQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAtQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAHAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAA + version: 6 + 5,-3: + ind: 5,-3 + tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABAAAAAAABAAAAAAABAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABAAAAAAAOgAAAAAAOgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAOgAAAAAABAAAAAAAOgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAOgAAAAAAOgAAAAAABAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAABAAAAAAAOgAAAAAABAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAABAAAAAAABAAAAAAABAAAAAAAOgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAABAAAAAAABAAAAAAAOgAAAAAAOgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAtQAAAAAAtQAAAAAA + version: 6 + 5,-4: + ind: 5,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAA + version: 6 + 5,2: + ind: 5,2 + tiles: tQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAAAAAAAAAtQAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAIAAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAA + version: 6 + 5,3: + ind: 5,3 + tiles: tQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,1: + ind: 5,1 + tiles: GwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAAAAAAAAAtQAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAA + version: 6 + 6,0: + ind: 6,0 + tiles: tQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,-1: + ind: 6,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,-3: + ind: 6,-3 + tiles: tQAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAtQAAAAAARAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAHgAAAAAAHgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAfgAAAAAAtQAAAAAAtQAAAAAAHgAAAAAAHgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAtQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAtQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAtQAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,-2: + ind: 6,-2 + tiles: tQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAHQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,1: + ind: 6,1 + tiles: tAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,2: + ind: 6,2 + tiles: tQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,-4: + ind: 6,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAARAAAAAAARAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 7,-3: + ind: 7,-3 + tiles: AAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 7,-4: + ind: 7,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,3: + ind: 6,3 + tiles: tQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 7,2: + ind: 7,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 7,3: + ind: 7,3 + tiles: AAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -6,-1: + ind: -6,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAA + version: 6 + -6,0: + ind: -6,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: Arrows + decals: + 2070: 48,9 + 2071: 47,9 + 2072: 46,9 + 2073: 46.49972,8.985048 + 2074: 47.499054,8.9894085 + 2249: 51,-10 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 759: 59,8 + 771: 64,8 + 808: 68,10 + 2308: 63,-26 + 2309: 63,-25 + 2310: 63,-24 + 2311: 63,-23 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 760: 56,9 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 2248: 50,-13 + 2250: 50.415024,-12.996578 + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 728: 67.09823,20.972095 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 727: 73.947075,20.26897 + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 2315: -71.487625,-2.2107522 + - node: + color: '#FFFFFFFF' + id: Basalt4 + decals: + 733: 68.677536,16.878345 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 726: 75.35438,19.284595 + 729: 67.50478,19.315845 + 732: 67.48915,15.2845955 + 1714: 74,47 + - node: + color: '#FFFFFFFF' + id: Basalt6 + decals: + 730: 68.677536,20.61272 + 2314: -70.38164,-2.0412102 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 712: 75.26056,15.0502205 + 725: 74.275444,19.190845 + 731: 68.771355,19.940845 + 1715: 75,47 + - node: + color: '#FFFFFFFF' + id: Basalt9 + decals: + 713: 74.54127,16.159595 + 1716: 75,48 + - node: + color: '#79150096' + id: Bot + decals: + 706: 82,21 + 707: 82,20 + 708: 82,19 + - node: + angle: 4.71238898038469 rad + color: '#951710FF' + id: Bot + decals: + 14: -36,1 + 15: -37,1 + 16: -37,2 + 17: -36,2 + 18: -36,3 + 19: -37,3 + 20: -37,4 + 21: -36,4 + 22: -33,4 + 23: -33,3 + 24: -33,2 + 25: -33,1 + 26: -32,1 + 27: -32,2 + 28: -32,3 + 29: -32,4 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 288: 27,-1 + 289: 28,-1 + 290: 29,-1 + 291: 30,-1 + 318: 72,-18 + 319: 71,-18 + 320: 71,-17 + 321: 71,-16 + 322: 71,-15 + 323: 72,-15 + 324: 72,-16 + 325: 72,-17 + 704: 61,9 + 705: 61,10 + - node: + color: '#52B4E996' + id: BotGreyscale + decals: + 709: 78,21 + 710: 78,20 + 711: 78,19 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 2069: 67,10 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 784: 76,9 + 785: 75,9 + 2068: 66,10 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 282: 53,-23 + 283: 55,-23 + 702: 61,6 + 703: 61,4 + - node: + color: '#9C2020FF' + id: BrickTileSteelCornerNe + decals: + 47: -40,-3 + 52: -46,-2 + - node: + color: '#BC863FFF' + id: BrickTileSteelCornerNe + decals: + 447: 81,-20 + 475: 79,-24 + 506: 76,-15 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerNe + decals: + 69: -45,3 + - node: + color: '#BC863FFF' + id: BrickTileSteelCornerNw + decals: + 459: 71,-20 + 482: 71,-24 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerNw + decals: + 77: -49,3 + - node: + color: '#9C2020FF' + id: BrickTileSteelCornerSe + decals: + 49: -40,-5 + 56: -48,-5 + - node: + color: '#BC863FFF' + id: BrickTileSteelCornerSe + decals: + 448: 81,-22 + 494: 79,-28 + 504: 76,-18 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerSe + decals: + 70: -45,0 + 249: -15,4 + - node: + color: '#9C2020FF' + id: BrickTileSteelCornerSw + decals: + 58: -42,-5 + - node: + color: '#BC863FFF' + id: BrickTileSteelCornerSw + decals: + 457: 71,-22 + 486: 71,-28 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerSw + decals: + 74: -49,0 + 248: -19,4 + - node: + color: '#9C2020FF' + id: BrickTileSteelEndS + decals: + 57: -45,-5 + - node: + color: '#9C2020FF' + id: BrickTileSteelEndW + decals: + 59: -49,-5 + 60: -49,-2 + - node: + color: '#9C2020FF' + id: BrickTileSteelInnerNe + decals: + 53: -46,-3 + - node: + color: '#BC863FFF' + id: BrickTileSteelInnerNe + decals: + 474: 78,-24 + 498: 79,-26 + - node: + color: '#9C2020FF' + id: BrickTileSteelInnerNw + decals: + 64: -48,-5 + - node: + color: '#BC863FFF' + id: BrickTileSteelInnerNw + decals: + 473: 78,-24 + - node: + color: '#9C2020FF' + id: BrickTileSteelInnerSe + decals: + 62: -48,-4 + 90: -45,-4 + - node: + color: '#BC863FFF' + id: BrickTileSteelInnerSe + decals: + 469: 78,-22 + 497: 79,-26 + - node: + color: '#9C2020FF' + id: BrickTileSteelInnerSw + decals: + 61: -48,-2 + 63: -42,-4 + 89: -45,-4 + - node: + color: '#BC863FFF' + id: BrickTileSteelInnerSw + decals: + 470: 78,-22 + - node: + color: '#9A54BFFF' + id: BrickTileSteelLineE + decals: + 509: 76,-17 + 510: 76,-16 + - node: + color: '#9C2020FF' + id: BrickTileSteelLineE + decals: + 48: -40,-4 + - node: + color: '#BC863FFF' + id: BrickTileSteelLineE + decals: + 446: 81,-21 + 472: 78,-23 + 495: 79,-27 + 496: 79,-25 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineE + decals: + 178: -36,-4 + 179: -32,-4 + 180: -28,-4 + 250: -15,6 + 251: -15,8 + - node: + color: '#9A54BFFF' + id: BrickTileSteelLineN + decals: + 507: 75,-15 + - node: + color: '#9C2020FF' + id: BrickTileSteelLineN + decals: + 44: -44,-3 + 45: -43,-3 + 46: -41,-3 + 51: -48,-2 + - node: + color: '#BC863FFF' + id: BrickTileSteelLineN + decals: + 460: 72,-20 + 461: 73,-20 + 462: 74,-20 + 463: 75,-20 + 464: 76,-20 + 465: 77,-20 + 466: 78,-20 + 467: 79,-20 + 468: 80,-20 + 476: 77,-24 + 477: 76,-24 + 478: 75,-24 + 479: 74,-24 + 480: 73,-24 + 481: 72,-24 + 505: 74,-15 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineN + decals: + 78: -48,3 + 79: -47,3 + 80: -46,3 + 186: -37,-3 + 187: -33,-3 + 188: -29,-3 + 261: -18,9 + 262: -16,9 + - node: + color: '#9A54BFFF' + id: BrickTileSteelLineS + decals: + 508: 75,-18 + - node: + color: '#9C2020FF' + id: BrickTileSteelLineS + decals: + 50: -41,-5 + - node: + color: '#BC863FFF' + id: BrickTileSteelLineS + decals: + 449: 80,-22 + 450: 79,-22 + 451: 77,-22 + 452: 76,-22 + 453: 75,-22 + 454: 74,-22 + 455: 73,-22 + 456: 72,-22 + 487: 72,-28 + 488: 73,-28 + 489: 74,-28 + 490: 75,-28 + 491: 76,-28 + 492: 77,-28 + 493: 78,-28 + 503: 74,-18 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineS + decals: + 71: -46,0 + 72: -47,0 + 73: -48,0 + 177: -37,-5 + 184: -33,-5 + 185: -29,-5 + 242: -25,-1 + 243: -23,-1 + 244: -21,-1 + 247: -17,4 + - node: + color: '#BC863FFF' + id: BrickTileSteelLineW + decals: + 458: 71,-21 + 471: 78,-23 + 483: 71,-25 + 484: 71,-26 + 485: 71,-27 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineW + decals: + 75: -49,1 + 76: -49,2 + 181: -38,-4 + 182: -34,-4 + 183: -30,-4 + 252: -19,6 + 253: -19,8 + - node: + color: '#765428FF' + id: BrickTileWhiteBox + decals: + 537: 82,-22 + - node: + color: '#765428FF' + id: BrickTileWhiteCornerNe + decals: + 545: 87,-20 + - node: + color: '#792DA9FF' + id: BrickTileWhiteCornerNe + decals: + 794: 22,-3 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteCornerNe + decals: + 189: -36,-3 + 197: -28,-3 + 198: -32,-3 + 258: -15,9 + - node: + color: '#765428FF' + id: BrickTileWhiteCornerNw + decals: + 538: 83,-20 + 585: 89,-18 + - node: + color: '#792DA9FF' + id: BrickTileWhiteCornerNw + decals: + 793: 20,-3 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteCornerNw + decals: + 190: -38,-3 + 199: -34,-3 + 200: -30,-3 + 259: -19,9 + - node: + color: '#765428FF' + id: BrickTileWhiteCornerSe + decals: + 553: 91,-24 + 589: 103,-20 + - node: + color: '#792DA9FF' + id: BrickTileWhiteCornerSe + decals: + 792: 22,-6 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteCornerSe + decals: + 192: -36,-5 + 193: -32,-5 + 194: -28,-5 + - node: + color: '#765428FF' + id: BrickTileWhiteCornerSw + decals: + 536: 83,-22 + 557: 87,-24 + - node: + color: '#792DA9FF' + id: BrickTileWhiteCornerSw + decals: + 791: 20,-6 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteCornerSw + decals: + 191: -38,-5 + 195: -34,-5 + 196: -30,-5 + - node: + color: '#765428FF' + id: BrickTileWhiteEndN + decals: + 541: 85,-19 + - node: + color: '#765428FF' + id: BrickTileWhiteEndS + decals: + 544: 84,-23 + - node: + color: '#726F6AFF' + id: BrickTileWhiteInnerNe + decals: + 799: 20,-6 + - node: + color: '#765428FF' + id: BrickTileWhiteInnerNe + decals: + 539: 85,-20 + 549: 87,-22 + 622: 89,-20 + 623: 93,-20 + 624: 97,-20 + - node: + color: '#774194FF' + id: BrickTileWhiteInnerNe + decals: + 654: 78,-48 + 655: 82,-48 + - node: + color: '#726F6AFF' + id: BrickTileWhiteInnerNw + decals: + 798: 22,-6 + - node: + color: '#765428FF' + id: BrickTileWhiteInnerNw + decals: + 540: 85,-20 + 616: 93,-20 + 617: 97,-20 + 618: 101,-20 + - node: + color: '#774194FF' + id: BrickTileWhiteInnerNw + decals: + 652: 86,-48 + 653: 82,-48 + - node: + color: '#726F6AFF' + id: BrickTileWhiteInnerSe + decals: + 797: 20,-3 + - node: + color: '#765428FF' + id: BrickTileWhiteInnerSe + decals: + 543: 84,-22 + 625: 97,-18 + 626: 93,-18 + 627: 89,-18 + - node: + color: '#774194FF' + id: BrickTileWhiteInnerSe + decals: + 650: 78,-45 + 651: 82,-45 + - node: + color: '#726F6AFF' + id: BrickTileWhiteInnerSw + decals: + 796: 22,-3 + - node: + color: '#765428FF' + id: BrickTileWhiteInnerSw + decals: + 542: 84,-22 + 546: 87,-22 + 619: 93,-18 + 620: 97,-18 + 621: 101,-18 + - node: + color: '#774194FF' + id: BrickTileWhiteInnerSw + decals: + 648: 82,-45 + 649: 86,-45 + - node: + color: '#765428FF' + id: BrickTileWhiteLineE + decals: + 548: 87,-21 + 552: 91,-23 + 588: 103,-19 + - node: + color: '#774194FF' + id: BrickTileWhiteLineE + decals: + 610: 97,-19 + 611: 93,-19 + 612: 89,-19 + 640: 82,-47 + 641: 82,-46 + 642: 78,-47 + 643: 78,-46 + - node: + color: '#792DA9FF' + id: BrickTileWhiteLineE + decals: + 788: 20,-4 + 795: 20,-5 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 805: 22,-4 + 806: 22,-5 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteLineE + decals: + 256: -15,5 + 257: -15,7 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteLineN + decals: + 236: -25,0 + 237: -23,0 + 238: -21,0 + - node: + color: '#765428FF' + id: BrickTileWhiteLineN + decals: + 532: 84,-20 + 533: 86,-20 + 550: 88,-22 + 551: 90,-22 + 574: 100,-18 + 575: 99,-18 + 576: 98,-18 + 577: 97,-18 + 578: 96,-18 + 579: 95,-18 + 580: 94,-18 + 581: 93,-18 + 582: 92,-18 + 583: 91,-18 + 584: 90,-18 + 587: 102,-18 + 592: 90,-20 + 593: 92,-20 + 594: 94,-20 + 595: 96,-20 + 596: 98,-20 + 597: 100,-20 + 632: 79,-48 + 633: 81,-48 + 634: 83,-48 + 635: 85,-48 + - node: + color: '#774194FF' + id: BrickTileWhiteLineN + decals: + 607: 91,-20 + 608: 95,-20 + 609: 99,-20 + 636: 80,-48 + 637: 84,-48 + - node: + color: '#9C2020FF' + id: BrickTileWhiteLineN + decals: + 91: -45,-3 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 800: 21,-6 + 804: 21,-3 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteLineN + decals: + 233: -26,0 + 234: -24,0 + 235: -22,0 + 260: -17,9 + - node: + color: '#765428FF' + id: BrickTileWhiteLineS + decals: + 534: 85,-22 + 535: 86,-22 + 554: 90,-24 + 555: 89,-24 + 556: 88,-24 + 562: 90,-20 + 563: 92,-20 + 564: 93,-20 + 565: 94,-20 + 566: 95,-20 + 567: 96,-20 + 568: 97,-20 + 569: 98,-20 + 570: 99,-20 + 571: 100,-20 + 572: 101,-20 + 573: 102,-20 + 598: 90,-18 + 599: 92,-18 + 600: 94,-18 + 601: 96,-18 + 602: 98,-18 + 603: 100,-18 + 628: 79,-45 + 629: 81,-45 + 630: 83,-45 + 631: 85,-45 + - node: + color: '#774194FF' + id: BrickTileWhiteLineS + decals: + 604: 91,-18 + 605: 95,-18 + 606: 99,-18 + 638: 80,-45 + 639: 84,-45 + - node: + color: '#9C2020FF' + id: BrickTileWhiteLineS + decals: + 33: -47,-4 + 34: -46,-4 + 35: -44,-4 + 36: -43,-4 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineS + decals: + 801: 21,-3 + 807: 21,-6 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteLineS + decals: + 239: -26,-1 + 240: -24,-1 + 241: -22,-1 + 245: -18,4 + 246: -16,4 + - node: + color: '#765428FF' + id: BrickTileWhiteLineW + decals: + 547: 87,-23 + 586: 89,-19 + - node: + color: '#774194FF' + id: BrickTileWhiteLineW + decals: + 613: 93,-19 + 614: 97,-19 + 615: 101,-19 + 644: 82,-47 + 645: 82,-46 + 646: 86,-47 + 647: 86,-46 + - node: + color: '#792DA9FF' + id: BrickTileWhiteLineW + decals: + 789: 22,-5 + 790: 22,-4 + - node: + color: '#9C2020FF' + id: BrickTileWhiteLineW + decals: + 31: -48,-3 + 32: -48,-4 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 802: 20,-5 + 803: 20,-4 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteLineW + decals: + 254: -19,5 + 255: -19,7 + - node: + color: '#FFFFFFFF' + id: Bushb2 + decals: + 908: 54.713455,19.873753 + 2312: -71.7704,0.87206304 + - node: + color: '#FFFFFFFF' + id: Bushf1 + decals: + 906: 56.308395,19.936253 + - node: + color: '#FFFFFFFF' + id: Bushg1 + decals: + 735: 68.95899,15.3158455 + 736: 67.31715,15.9252205 + - node: + color: '#FFFFFFFF' + id: Bushg2 + decals: + 907: 56.292755,18.764378 + - node: + color: '#FFFFFFFF' + id: Bushg4 + decals: + 737: 68.63062,16.14397 + - node: + color: '#FFFFFFFF' + id: Bushi2 + decals: + 734: 67.28587,16.83147 + - node: + color: '#FFFFFFFF' + id: Bushl4 + decals: + 905: 56.120754,17.889378 + - node: + color: '#FFFFFFFF' + id: Bushn1 + decals: + 738: 67.03568,15.0970955 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 2542: 70,-45 + - node: + cleanable: True + color: '#00D2FFFF' + id: Clandestine + decals: + 2540: 62.98458,-42.58558 + - node: + cleanable: True + color: '#FF0000FF' + id: Cyber + decals: + 2539: 67.76583,-43.52308 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 0: -44,1 + 1: -44,2 + 2: -42,-2 + 284: 53,-26 + 285: 55,-26 + 286: 64,-5 + 287: 64,-3 + 326: 72,-25 + 327: 73,-25 + 328: 74,-25 + 329: 75,-25 + 330: 76,-25 + 331: 77,-25 + 332: 77,-27 + 333: 76,-27 + 334: 75,-27 + 335: 74,-27 + 336: 73,-27 + 337: 72,-27 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Delivery + decals: + 2685: 45,24 + 2686: 45,23 + 2687: 44,23 + 2688: 44,24 + 2689: 43,24 + 2690: 43,23 + 2691: 42,23 + 2692: 42,24 + 2693: 41,24 + 2694: 41,23 + 2695: 40,23 + 2696: 40,24 + - node: + color: '#F98AFFFF' + id: DeliveryGreyscale + decals: + 2949: 51,27 + 2950: 52,27 + 2951: 53,27 + 2952: 54,27 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 665: 73,-47 + 666: 74,-46 + 667: 76,-47 + 668: 76,-46 + 669: 75,-47 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 95: -49,-5 + 96: -41,-4 + 106: -48,6 + 107: -48,5 + 108: -45,7 + 109: -46,6 + 110: -43,7 + 111: -48,7 + 159: -37,7 + 160: -32,8 + 161: -31,8 + 162: -30,5 + 163: -31,5 + 164: -35,4 + 165: -35,3 + 166: -34,0 + 167: -35,0 + 168: -36,-1 + 169: -38,-1 + 170: -37,-1 + 171: -33,-1 + 172: -31,-1 + 173: -30,0 + 174: -30,-1 + 175: -29,0 + 176: -28,-1 + 201: -38,-3 + 202: -36,-5 + 203: -33,-4 + 204: -32,-3 + 205: -29,-5 + 206: -29,-3 + 263: -18,7 + 264: -16,5 + 270: -18,5 + 275: -16,2 + 424: 74,-16 + 425: 73,-17 + 426: 74,-17 + 427: 74,-17 + 428: 73,-17 + 429: 72,-18 + 430: 72,-17 + 431: 72,-17 + 432: 72,-17 + 433: 72,-16 + 434: 72,-15 + 435: 72,-15 + 436: 75,-18 + 437: 74,-18 + 438: 74,-17 + 439: 75,-16 + 440: 75,-17 + 441: 76,-18 + 442: 71,-18 + 443: 71,-17 + 444: 71,-15 + 445: 72,-15 + 670: 74,-20 + 671: 75,-21 + 685: 72,-24 + 686: 73,-26 + 687: 75,-27 + 688: 76,-27 + 689: 86,-21 + 690: 85,-22 + 693: 87,-23 + 694: 89,-23 + 695: 90,-22 + 946: 82,-35 + 947: 83,-34 + 948: 83,-35 + 949: 83,-36 + 950: 84,-35 + 951: 85,-34 + 2080: 43,31 + 2081: 44,31 + 2082: 45,31 + 2083: 46,31 + 2084: 47,31 + 2085: 48,31 + 2086: 48,32 + 2087: 47,32 + 2088: 47,33 + 2089: 48,33 + 2090: 45,30 + 2337: 18,-27 + 2338: 19,-27 + 2339: 19,-23 + 2340: 17,-22 + 2341: 14,-21 + 2342: 13,-22 + 2343: 13,-27 + 2344: 14,-26 + 2345: 16,-27 + 2367: 27,-27 + 2368: 28,-26 + 2369: 26,-25 + 2370: 26,-23 + 2371: 30,-22 + 2372: 31,-23 + 2373: 32,-25 + 2374: 29,-27 + 2375: 25,-28 + 2376: 22,-27 + 2377: 22,-28 + 2378: 21,-26 + 2379: 22,-23 + 2380: 22,-24 + 2381: 22,-25 + 2382: 23,-22 + 2383: 21,-22 + 2384: 22,-21 + 2385: 26,-25 + 2386: 29,-27 + 2387: 29,-29 + 2388: 30,-29 + 2389: 31,-27 + 2390: 32,-26 + 2391: 33,-26 + 2409: 35,-25 + 2410: 36,-25 + 2411: 38,-25 + 2412: 38,-25 + 2413: 39,-25 + 2414: 38,-23 + 2415: 37,-23 + 2416: 36,-23 + 2417: 36,-23 + 2418: 38,-23 + 2419: 38,-24 + 2420: 36,-24 + 2421: 35,-23 + 2422: 38,-22 + 2423: 39,-22 + 2424: 38,-24 + 2425: 37,-25 + 2426: 36,-24 + 2427: 36,-24 + 2428: 37,-24 + 2429: 39,-24 + 2430: 39,-23 + 2431: 35,-24 + 2432: 19,-25 + 2450: 35,-30 + 2451: 38,-27 + 2452: 40,-28 + 2453: 40,-30 + 2454: 43,-24 + 2455: 46,-25 + 2456: 45,-27 + 2457: 46,-27 + 2458: 47,-22 + 2554: 51,-29 + 2555: 50,-31 + 2556: 52,-32 + 2557: 58,-32 + 2558: 60,-32 + 2559: 61,-32 + 2560: 63,-32 + 2561: 64,-32 + 2562: 68,-27 + 2563: 66,-28 + 2564: 68,-34 + 2565: 73,-34 + 2596: 97,-44 + 2597: 97,-45 + 2598: 97,-46 + 2599: 98,-47 + 2600: 97,-47 + 2601: 97,-48 + 2602: 98,-48 + 2603: 99,-48 + 2604: 99,-47 + 2605: 100,-47 + 2606: 100,-48 + 2607: 102,-47 + 2608: 101,-47 + 2609: 103,-47 + 2610: 103,-46 + 2611: 102,-46 + 2612: 103,-48 + 2613: 99,-43 + 2614: 98,-43 + 2615: 97,-43 + 2616: 98,-42 + 2617: 97,-42 + 2618: 81,-31 + 2619: 80,-32 + 2620: 85,-31 + 2621: 90,-30 + 2622: 88,-32 + 2623: 87,-32 + 2624: 92,-26 + 2625: 93,-27 + 2626: 94,-29 + 2627: 94,-30 + 2628: 95,-23 + 2629: 95,-30 + 2630: 87,-35 + 2631: 87,-37 + 2632: 87,-38 + 2633: 87,-39 + 2634: 87,-40 + 2635: 87,-42 + 2636: 87,-44 + 2637: 88,-43 + 2638: 88,-44 + 2639: 88,-45 + 2640: 91,-46 + 2641: 92,-46 + 2642: 94,-46 + 2643: 95,-45 + 2644: 94,-43 + 2645: 92,-42 + 2646: 90,-42 + 2647: 94,-49 + 2648: 91,-49 + 2649: 90,-48 + 2711: 38,24 + 2712: 38,23 + 2718: 44,13 + 2719: 44,15 + 2720: 46,17 + 2721: 44,17 + 2722: 48,19 + 2723: 49,17 + 2724: 48,24 + 2725: 44,28 + 2726: 51,31 + 2727: 52,33 + 2728: 58,31 + 2729: 60,33 + 2730: 63,31 + 2731: 41,28 + 2732: 40,31 + 2733: 37,28 + 2734: 35,32 + 2735: 34,24 + 2736: 31,30 + 2737: 28,29 + 2738: 27,25 + 2739: 28,23 + 2740: 30,24 + 2741: 29,24 + 2742: 28,24 + 2743: 29,23 + 2744: 31,25 + 2745: 30,25 + 2746: 28,25 + 2747: 28,25 + 2795: 40,30 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 2459: 47,-23 + 2460: 44,-23 + 2461: 43,-26 + 2462: 42,-25 + 2463: 42,-25 + 2464: 40,-28 + 2465: 39,-28 + 2466: 37,-28 + 2467: 35,-29 + 2468: 34,-30 + 2566: 73,-33 + 2567: 70,-34 + 2568: 66,-32 + 2569: 67,-27 + 2570: 59,-32 + 2571: 50,-32 + 2572: 50,-28 + 2748: 48,20 + 2749: 44,13 + 2750: 44,14 + 2751: 49,19 + 2752: 47,25 + 2753: 46,28 + 2754: 43,28 + 2755: 41,30 + 2756: 35,31 + 2757: 34,25 + 2758: 28,28 + 2759: 32,31 + 2812: 31,23 + 2813: 31,24 + 2814: 30,24 + 2815: 29,25 + 2816: 29,23 + 2817: 27,23 + 2818: 27,24 + 2819: 29,26 + 2820: 28,26 + 2821: 27,26 + 2822: 30,26 + 2823: 31,26 + 2824: 65,32 + 2825: 65,33 + 2905: -35,-10 + 2906: -29,-8 + 2907: -24,-10 + 2908: -21,-7 + 2909: -16,-10 + 2910: -8,-11 + 2911: -4,-8 + 2912: -5,0 + 2913: 0,2 + 2914: 5,4 + 2915: 5,11 + 2916: -2,13 + 2917: -7,12 + 2918: -16,12 + 2919: 11,-1 + 2920: 17,-1 + 2921: 22,0 + 2922: 30,2 + 2923: 38,2 + 2924: 41,-1 + 2925: 36,-4 + 2926: 34,-6 + 2927: 45,0 + 2928: 50,2 + 2929: 51,5 + 2930: 48,8 + 2931: 58,2 + 2932: 61,0 + 2933: 70,2 + 2934: 73,0 + 2935: 79,3 + 2936: 78,6 + 2937: 81,12 + 2938: 76,-9 + 2939: 70,-7 + 2940: 69,-16 + 2941: 69,-21 + 2942: 68,-22 + 2943: 68,-18 + 2944: 81,-18 + 2945: 81,-11 + 2946: 79,-9 + - node: + cleanable: True + angle: 2.0943951023931953 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 2447: 39,-29 + 2448: 47,-24 + 2449: 48,-24 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 2469: 44,-31 + 2470: 45,-30 + 2471: 47,-31 + 2472: 45,-24 + 2473: 48,-22 + 2474: 46,-18 + 2475: 47,-17 + 2476: 47,-15 + 2477: 44,-15 + 2478: 43,-15 + 2479: 39,-11 + 2480: 37,-11 + 2481: 36,-12 + 2482: 31,-12 + 2483: 29,-11 + 2484: 44,-16 + 2485: 48,-24 + 2486: 47,-26 + 2487: 51,-26 + 2488: 50,-27 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 656: 73,-47 + 657: 74,-46 + 658: 75,-47 + 659: 76,-47 + 660: 76,-46 + 661: 76,-45 + 662: 76,-46 + 663: 76,-46 + 664: 75,-47 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 85: -46,1 + 92: -45,-4 + 104: -49,6 + 136: -37,7 + 137: -35,5 + 152: -33,-1 + 156: -32,8 + 157: -31,8 + 158: -29,5 + 207: -38,-3 + 208: -37,-4 + 209: -36,-5 + 210: -37,-5 + 211: -33,-4 + 212: -32,-4 + 213: -30,-4 + 214: -29,-5 + 215: -28,-4 + 265: -17,6 + 276: -16,2 + 338: 73,-18 + 339: 73,-18 + 340: 74,-17 + 341: 74,-17 + 342: 74,-17 + 343: 73,-17 + 344: 73,-17 + 345: 74,-16 + 346: 74,-16 + 347: 75,-15 + 348: 75,-15 + 349: 75,-16 + 350: 73,-15 + 351: 73,-15 + 352: 72,-15 + 353: 72,-16 + 354: 72,-16 + 355: 75,-17 + 356: 75,-17 + 357: 74,-18 + 358: 75,-18 + 672: 80,-21 + 673: 78,-22 + 674: 72,-21 + 691: 84,-21 + 692: 83,-22 + 696: 87,-23 + 697: 89,-20 + 698: 93,-19 + 699: 97,-20 + 700: 102,-19 + 701: 101,-20 + 952: 82,-35 + 953: 82,-34 + 954: 83,-34 + 955: 83,-35 + 956: 83,-36 + 957: 84,-35 + 958: 83,-34 + 959: 82,-34 + 960: 84,-35 + 961: 85,-36 + 962: 85,-36 + 963: 83,-36 + 964: 83,-36 + 965: 83,-40 + 966: 83,-40 + 967: 84,-40 + 968: 85,-40 + 2093: 45,33 + 2346: 19,-27 + 2347: 18,-23 + 2348: 15,-27 + 2349: 11,-27 + 2350: 12,-21 + 2489: 47,-25 + 2490: 44,-26 + 2491: 43,-23 + 2492: 38,-28 + 2493: 35,-29 + 2494: 34,-31 + 2573: 50,-25 + 2574: 51,-31 + 2575: 54,-31 + 2576: 58,-32 + 2577: 65,-32 + 2578: 67,-28 + 2579: 69,-26 + 2580: 67,-34 + 2785: 43,25 + 2786: 41,25 + 2787: 32,30 + 2788: 33,24 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 2495: 27,-28 + 2496: 32,-23 + 2497: 36,-29 + 2498: 37,-28 + 2499: 39,-28 + 2500: 41,-31 + 2501: 44,-31 + 2502: 43,-24 + 2503: 45,-24 + 2504: 46,-25 + 2505: 47,-26 + 2506: 48,-19 + 2507: 47,-18 + 2508: 46,-15 + 2509: 43,-15 + 2510: 40,-13 + 2511: 38,-12 + 2512: 36,-12 + 2581: 65,-33 + 2582: 57,-32 + 2583: 51,-32 + 2760: 45,17 + 2761: 49,20 + 2762: 46,27 + 2763: 51,32 + 2764: 58,33 + 2765: 41,31 + 2766: 35,30 + 2767: 34,23 + 2768: 27,29 + 2826: 65,32 + 2830: -46,-9 + 2831: -40,-7 + 2832: -38,-9 + 2833: -35,-7 + 2834: -33,-8 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 2513: 30,-12 + 2514: 35,-11 + 2769: 41,29 + 2770: 41,28 + 2771: 49,29 + 2772: 51,28 + 2773: 52,32 + 2774: 50,33 + 2775: 60,33 + 2776: 62,31 + 2777: 47,25 + 2778: 48,23 + 2779: 49,20 + 2780: 49,16 + 2781: 44,17 + 2782: 44,14 + 2783: 41,14 + 2784: 42,28 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 93: -42,-5 + 94: -41,-4 + 101: -46,6 + 105: -48,5 + 138: -34,2 + 139: -37,-1 + 144: -31,6 + 145: -30,-1 + 146: -29,0 + 216: -37,-4 + 217: -36,-5 + 218: -33,-5 + 219: -32,-4 + 220: -29,-5 + 221: -28,-4 + 222: -29,-3 + 223: -30,-4 + 277: -16,-1 + 278: -19,-1 + 359: 73,-18 + 360: 73,-18 + 361: 74,-18 + 362: 74,-18 + 363: 74,-17 + 364: 73,-17 + 365: 73,-17 + 366: 74,-16 + 367: 74,-16 + 368: 75,-16 + 369: 75,-16 + 370: 75,-17 + 371: 75,-15 + 372: 75,-15 + 373: 74,-15 + 374: 73,-15 + 375: 73,-15 + 376: 72,-15 + 377: 71,-17 + 378: 71,-17 + 379: 72,-17 + 380: 72,-17 + 381: 72,-18 + 382: 72,-18 + 675: 72,-21 + 676: 80,-21 + 677: 78,-22 + 678: 78,-25 + 679: 77,-26 + 969: 83,-40 + 970: 83,-40 + 971: 84,-40 + 972: 84,-40 + 973: 83,-36 + 974: 83,-36 + 975: 82,-35 + 976: 82,-34 + 977: 83,-35 + 978: 84,-35 + 979: 84,-35 + 980: 85,-36 + 981: 85,-36 + 982: 85,-40 + 983: 85,-40 + 984: 84,-40 + 985: 84,-40 + 986: 83,-40 + 2091: 46,32 + 2092: 43,33 + 2097: 43,32 + 2351: 18,-25 + 2352: 14,-26 + 2353: 13,-22 + 2354: 17,-22 + 2393: 31,-26 + 2394: 33,-23 + 2395: 32,-22 + 2396: 26,-22 + 2397: 28,-22 + 2398: 26,-24 + 2399: 28,-27 + 2400: 24,-28 + 2587: 60,-32 + 2588: 71,-34 + 2650: 94,-49 + 2651: 90,-49 + 2652: 89,-48 + 2653: 94,-43 + 2654: 93,-42 + 2655: 87,-39 + 2656: 87,-37 + 2657: 87,-33 + 2658: 83,-31 + 2659: 81,-31 + 2660: 80,-32 + 2661: 89,-31 + 2662: 91,-31 + 2663: 95,-30 + 2664: 94,-28 + 2665: 93,-27 + 2666: 92,-27 + 2667: 91,-26 + 2668: 95,-24 + 2669: 88,-32 + 2713: 37,23 + 2714: 38,25 + 2789: 45,25 + 2790: 44,25 + 2791: 43,23 + 2794: 40,25 + 2796: 34,26 + 2797: 32,29 + 2798: 28,28 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 2515: 47,-19 + 2516: 42,-14 + 2517: 47,-24 + 2518: 45,-26 + 2519: 41,-31 + 2520: 35,-29 + 2584: 50,-29 + 2835: -41,-8 + 2836: -33,-10 + 2837: -29,-8 + 2838: -25,-10 + 2839: -22,-7 + 2840: -17,-9 + 2841: -20,-10 + 2842: -11,-9 + 2843: -8,-10 + 2844: -6,-8 + 2845: -4,-5 + 2846: -5,-2 + 2847: -9,1 + 2848: 2,1 + 2849: 5,0 + 2850: 5,10 + 2851: 5,6 + 2852: -1,12 + 2853: -8,12 + 2854: -14,13 + 2855: -17,12 + 2856: 12,0 + 2857: 14,1 + 2858: 18,-1 + 2859: 23,1 + 2860: 27,0 + 2861: 33,1 + 2862: 36,-1 + 2863: 25,-5 + 2864: 25,-10 + 2865: 35,-8 + 2866: 46,-1 + 2867: 49,1 + 2868: 49,6 + 2869: 48,8 + 2870: 57,0 + 2871: 60,1 + 2872: 66,-1 + 2873: 71,1 + 2874: 75,-1 + 2875: 80,5 + 2876: 78,12 + 2877: 80,-6 + 2878: 73,-8 + 2879: 69,-11 + 2880: 81,-16 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 2521: 40,-27 + 2522: 47,-25 + 2523: 47,-26 + 2524: 47,-18 + 2525: 45,-15 + 2526: 43,-14 + 2527: 40,-13 + 2528: 34,-12 + 2529: 33,-11 + 2530: 29,-12 + 2585: 50,-30 + 2586: 66,-31 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 86: -47,-3 + 102: -46,6 + 140: -37,-1 + 141: -34,2 + 142: -37,7 + 143: -31,6 + 147: -30,-1 + 148: -29,0 + 149: -34,0 + 150: -30,5 + 151: -37,6 + 266: -18,4 + 267: -16,4 + 279: -19,1 + 280: -18,-1 + 281: -19,-1 + 383: 72,-18 + 384: 72,-18 + 385: 73,-18 + 386: 73,-18 + 387: 74,-18 + 388: 74,-18 + 389: 75,-16 + 390: 75,-16 + 391: 72,-17 + 392: 71,-17 + 393: 72,-15 + 394: 72,-16 + 395: 72,-16 + 396: 71,-16 + 397: 72,-17 + 398: 72,-16 + 399: 71,-15 + 400: 71,-15 + 401: 72,-15 + 2094: 44,32 + 2355: 18,-24 + 2356: 18,-25 + 2357: 13,-27 + 2358: 14,-21 + 2401: 23,-26 + 2402: 22,-24 + 2403: 22,-22 + 2404: 29,-28 + 2405: 27,-26 + 2406: 26,-25 + 2407: 26,-24 + 2408: 32,-24 + 2589: 68,-26 + 2590: 54,-32 + 2591: 52,-30 + 2592: 72,-34 + 2670: 80,-31 + 2671: 83,-32 + 2672: 87,-37 + 2673: 87,-40 + 2674: 88,-45 + 2675: 91,-43 + 2676: 95,-44 + 2677: 91,-49 + 2678: 92,-49 + 2715: 37,24 + 2799: 46,28 + 2800: 53,33 + 2801: 57,33 + 2802: 55,29 + 2803: 54,30 + 2804: 48,25 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 2827: 64,32 + 2828: 63,34 + 2829: -42,-9 + 2881: 79,-11 + 2882: 72,-8 + 2883: 79,-3 + 2884: 75,2 + 2885: 70,0 + 2886: 63,1 + 2887: 55,-1 + 2888: 48,1 + 2889: 43,0 + 2890: 36,-1 + 2891: 32,1 + 2892: 24,1 + 2893: 18,0 + 2894: 13,1 + 2895: 5,5 + 2896: 3,11 + 2897: -4,13 + 2898: -12,12 + 2899: -13,0 + 2900: -3,-3 + 2901: -5,-9 + 2902: -13,-10 + 2903: -22,-9 + 2904: -31,-8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 87: -48,2 + 103: -43,7 + 153: -34,3 + 154: -32,8 + 155: -31,8 + 224: -29,-5 + 225: -28,-4 + 226: -29,-3 + 227: -32,-4 + 228: -33,-4 + 229: -33,-5 + 230: -36,-5 + 231: -37,-4 + 232: -38,-4 + 268: -19,6 + 269: -18,9 + 402: 75,-18 + 403: 75,-18 + 404: 76,-18 + 405: 76,-18 + 406: 76,-17 + 407: 76,-17 + 408: 76,-17 + 409: 76,-18 + 410: 75,-18 + 411: 75,-17 + 412: 75,-17 + 413: 75,-17 + 414: 71,-15 + 415: 71,-15 + 416: 72,-15 + 417: 76,-15 + 418: 76,-15 + 419: 76,-15 + 420: 76,-16 + 421: 76,-16 + 422: 76,-17 + 423: 76,-17 + 680: 77,-26 + 681: 78,-25 + 682: 74,-26 + 683: 72,-24 + 684: 78,-27 + 987: 83,-40 + 988: 84,-40 + 989: 84,-40 + 990: 85,-40 + 991: 85,-40 + 2095: 45,32 + 2096: 46,33 + 2359: 19,-26 + 2360: 11,-21 + 2361: 10,-21 + 2392: 33,-27 + 2531: 41,-15 + 2532: 46,-16 + 2679: 91,-42 + 2680: 88,-45 + 2681: 87,-35 + 2682: 88,-31 + 2683: 90,-30 + 2684: 92,-26 + 2792: 40,23 + 2793: 42,25 + 2805: 48,20 + 2806: 43,17 + 2807: 45,28 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 2533: 48,-26 + 2534: 43,-26 + 2535: 37,-30 + 2717: 37,25 + 2808: 37,32 + 2809: 34,25 + 2810: 34,24 + 2811: 27,29 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 2536: 39,-27 + 2537: 46,-31 + 2538: 46,-22 + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 770: 65,10 + 2324: -71.83161,3.9620152 + - node: + color: '#FFFFFFFF' + id: FlowersBRThree + decals: + 300: -70,2 + 301: -71,3 + 302: -71,2 + 303: -70,1 + 304: -71,-1 + 899: 52.61815,17.014378 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 2322: -70.702126,-1.6958468 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 768: 65,10 + 1722: 74.14191,48.003735 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 900: 55.68293,18.998753 + - node: + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 305: -71,1 + 306: -71,0 + 307: -72,0 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 767: 65,10 + 893: 54.776,16.326878 + 901: 55.698563,18.155003 + 1721: 75.04883,47.42561 + 2320: -71.23626,-2.524719 + 2321: -70.33137,-1.7209642 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 294: -72,-1 + 295: -70,1 + 296: -71,2 + 902: 52.36796,18.983128 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 297: -70,0 + 298: -71,-1 + 299: -70,4 + 769: 65,10 + 2323: -71.68243,-1.8653889 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 739: 68.22407,16.878345 + 898: 54.463272,17.405003 + 1720: 74.18881,46.98811 + - node: + color: '#9C202097' + id: Gene + decals: + 945: 85,-38 + - node: + color: '#FFFFFFFF' + id: Grassa3 + decals: + 896: 52.539963,19.076878 + 897: 54.056717,19.280003 + - node: + color: '#FFFFFFFF' + id: Grassa5 + decals: + 894: 56.0113,16.920628 + 895: 54.744728,17.639378 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 904: 54.682182,18.858128 + - node: + color: '#FFFFFFFF' + id: Grassc2 + decals: + 740: 69.06845,16.61272 + - node: + color: '#FFFFFFFF' + id: Grassc4 + decals: + 903: 53.86908,18.436253 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 886: 52,17 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 885: 54,16 + 1719: 74.14191,47.878735 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 883: 52,16 + 888: 52,18 + 890: 53.040337,17.311253 + 891: 52.399235,16.655003 + 1717: 74.04808,47.003735 + 2316: -70.2811,-2.0035343 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 308: -70,-1 + 309: -73,-1 + 310: -72,2 + 311: -70,3 + 312: -71,4 + 313: -71,1 + 314: -72,0 + 315: -72,-1 + 316: -70,2 + 884: 53,16 + 889: 52.36796,17.576878 + 1718: 75.017555,47.36311 + 2317: -71.192276,-1.9281822 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 887: 54,17 + 2319: -71.41222,-2.7884512 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 317: -70,0 + 892: 53.14979,16.701878 + 2313: -71.79554,1.1860298 + 2318: -71.75155,-2.1040037 + - node: + color: '#52B4E996' + id: LPPDiagonalCheckerAOverlayS + decals: + 2098: 38,-8 + 2099: 38,-9 + 2100: 39,-9 + 2101: 39,-8 + 2102: 40,-8 + 2103: 40,-9 + 2104: 41,-9 + 2105: 41,-8 + 2106: 42,-8 + 2107: 42,-9 + 2108: 43,-8 + 2109: 43,-7 + 2110: 42,-7 + 2111: 42,-6 + 2112: 43,-6 + 2113: 43,-5 + 2114: 42,-5 + 2115: 42,-4 + 2116: 43,-4 + 2117: 43,-3 + 2118: 42,-3 + 2119: 43,-9 + 2120: 44,-9 + 2121: 44,-8 + 2122: 45,-8 + 2123: 45,-9 + 2124: 46,-12 + 2125: 46,-9 + 2126: 46,-8 + 2127: 47,-8 + 2128: 47,-9 + 2129: 48,-9 + 2130: 48,-8 + 2131: 49,-9 + 2132: 49,-8 + 2133: 50,-9 + 2134: 50,-8 + 2135: 51,-9 + 2136: 51,-8 + 2137: 52,-8 + 2138: 52,-9 + 2139: 52,-7 + 2140: 53,-9 + 2141: 53,-8 + 2142: 53,-7 + 2143: 54,-7 + 2144: 54,-8 + 2145: 54,-9 + 2146: 55,-9 + 2147: 55,-8 + 2148: 55,-7 + 2149: 56,-7 + 2150: 56,-8 + 2151: 56,-9 + 2152: 57,-9 + 2153: 57,-8 + 2154: 57,-7 + 2155: 58,-7 + 2156: 58,-9 + 2157: 58,-8 + 2158: 59,-9 + 2159: 59,-8 + 2160: 59,-7 + 2161: 60,-7 + 2162: 60,-8 + 2163: 60,-9 + 2164: 61,-9 + 2165: 62,-9 + 2166: 62,-8 + 2167: 61,-8 + 2168: 61,-7 + 2169: 62,-7 + 2170: 62,-6 + 2171: 61,-6 + 2172: 61,-5 + 2173: 62,-5 + 2174: 62,-4 + 2175: 61,-4 + 2176: 62,-3 + 2177: 61,-3 + 2178: 61,-2 + 2179: 62,-2 + 2180: 62,-10 + 2181: 61,-10 + 2182: 60,-10 + 2183: 60,-11 + 2184: 61,-11 + 2185: 62,-11 + 2186: 62,-12 + 2187: 61,-12 + 2188: 60,-12 + 2189: 60,-13 + 2190: 61,-13 + 2191: 62,-13 + 2192: 61,-14 + 2193: 60,-14 + 2194: 60,-15 + 2195: 61,-15 + 2196: 61,-16 + 2197: 60,-16 + 2198: 60,-17 + 2199: 61,-17 + 2200: 61,-18 + 2201: 60,-18 + 2202: 60,-19 + 2203: 61,-19 + 2204: 61,-20 + 2205: 60,-20 + 2206: 61,-21 + 2207: 60,-21 + 2208: 61,-22 + 2209: 60,-22 + 2210: 61,-23 + 2211: 60,-23 + 2212: 61,-24 + 2213: 60,-24 + 2214: 61,-25 + 2215: 60,-25 + 2216: 61,-26 + 2217: 60,-26 + - node: + color: '#D4D4D496' + id: LPPQuarterTileOverlayGreyscale180S + decals: + 755: 49,5 + 756: 50,6 + 757: 51,7 + 758: 52,8 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text1 + decals: + 1927: 1,2 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text11 + decals: + 1925: 11,2 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text12 + decals: + 1914: 1,1 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text13 + decals: + 1913: 2,1 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text14 + decals: + 1912: 3,1 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text15 + decals: + 1908: 4,1 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text16 + decals: + 1906: 5,1 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text17 + decals: + 1907: 6,1 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text18 + decals: + 1915: 7,1 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text19 + decals: + 1916: 8,1 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text2 + decals: + 1928: 2,2 + 1929: 3,2 + 1930: 7,2 + 1931: 8,2 + 1932: 9,2 + 1933: 9,2 + 1934: 10,2 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text20 + decals: + 1917: 9,1 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text21 + decals: + 1918: 10,1 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text22 + decals: + 1919: 11,1 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text23 + decals: + 1926: 1,0 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text26 + decals: + 1909: 4,0 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text27 + decals: + 1910: 5,0 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text28 + decals: + 1911: 6,0 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text31 + decals: + 1920: 7,0 + 1921: 8,0 + 1922: 9,0 + 1923: 10,0 + 1935: 2,0 + 1936: 3,0 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text33 + decals: + 1924: 11,0 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text4 + decals: + 1903: 4,2 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text5 + decals: + 1904: 5,2 + - node: + color: '#FFFFFFFF' + id: LPPlpsign-text6 + decals: + 1905: 6,2 + - node: + color: '#8C347FFF' + id: LPPthreshold3 + decals: + 783: 74,10 + 786: 75,10 + 787: 76,10 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 3: -43,2 + 4: -43,1 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 2282: 55,-18 + 2283: 52,-18 + - node: + angle: -1.5707963267948966 rad + color: '#DE3A3AFF' + id: LoadingAreaGreyscale + decals: + 81: -45,1 + 82: -45,2 + - node: + color: '#9C202097' + id: Omni + decals: + 944: 84,-37 + - node: + color: '#9C202097' + id: Psyke + decals: + 943: 84,-39 + - node: + color: '#FFFFFFFF' + id: Rock02 + decals: + 881: 55.698563,16.123753 + - node: + color: '#FFFFFFFF' + id: Rock03 + decals: + 882: 55.557835,19.889378 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1519: -14,11 + - node: + color: '#3EB38896' + id: TrimlineBoxOverlayGreyscale + decals: + 1792: 82,16 + - node: + color: '#52B4E996' + id: TrimlineCornerNeOverlayGreyscale + decals: + 1262: 37,-3 + 2260: 58,-11 + - node: + color: '#BE6BC399' + id: TrimlineCornerNeOverlayGreyscale + decals: + 823: 52,14 + - node: + color: '#D4D4D428' + id: TrimlineCornerNeOverlayGreyscale + decals: + 1088: -13,-7 + 1247: 26,-7 + 1488: 6,13 + 2025: 83,-7 + 2028: 80,1 + - node: + color: '#DE3A3A96' + id: TrimlineCornerNeOverlayGreyscale + decals: + 1172: -7,3 + 1183: 1,3 + - node: + color: '#EFB34196' + id: TrimlineCornerNeOverlayGreyscale + decals: + 1390: 81,14 + 1741: 87,14 + 1745: 89,13 + 1768: 87,21 + 1813: 87,34 + 1835: 91,33 + 1839: 95,31 + 1872: 77,45 + - node: + color: '#334E6DC8' + id: TrimlineCornerNwOverlayGreyscale + decals: + 992: -49,-7 + - node: + color: '#3EB38896' + id: TrimlineCornerNwOverlayGreyscale + decals: + 1879: 74,45 + - node: + color: '#52B4E996' + id: TrimlineCornerNwOverlayGreyscale + decals: + 1263: 33,-3 + 2261: 54,-11 + 2281: 56,-19 + - node: + color: '#BE6BC399' + id: TrimlineCornerNwOverlayGreyscale + decals: + 822: 46,14 + - node: + color: '#D4D4D428' + id: TrimlineCornerNwOverlayGreyscale + decals: + 1336: 69,-7 + 1402: 76,7 + 1508: -14,13 + 1513: -19,12 + 2024: 82,-7 + 2026: 79,1 + - node: + color: '#DE3A3A96' + id: TrimlineCornerNwOverlayGreyscale + decals: + 1157: -13,2 + 1173: -8,3 + 1182: -5,3 + - node: + color: '#EFB34196' + id: TrimlineCornerNwOverlayGreyscale + decals: + 1391: 78,14 + 1740: 83,14 + 1744: 88,13 + 1769: 84,21 + 1796: 83,27 + 1812: 86,34 + 1834: 89,33 + - node: + color: '#3EB38896' + id: TrimlineCornerSeOverlayGreyscale + decals: + 1789: 81,16 + 1878: 77,42 + - node: + color: '#52B4E996' + id: TrimlineCornerSeOverlayGreyscale + decals: + 1264: 37,-9 + 2262: 58,-13 + - node: + color: '#A4610696' + id: TrimlineCornerSeOverlayGreyscale + decals: + 1362: 81,-18 + - node: + color: '#BE6BC399' + id: TrimlineCornerSeOverlayGreyscale + decals: + 821: 52,11 + - node: + color: '#D4D4D428' + id: TrimlineCornerSeOverlayGreyscale + decals: + 1101: -2,-11 + 1343: 70,-13 + 2023: 83,-8 + 2027: 80,0 + - node: + color: '#EFB34196' + id: TrimlineCornerSeOverlayGreyscale + decals: + 1739: 86,5 + 1742: 87,12 + 1743: 89,12 + 1770: 87,16 + 1795: 87,23 + 1832: 91,23 + 1838: 95,25 + - node: + color: '#334E6DC8' + id: TrimlineCornerSwOverlayGreyscale + decals: + 993: -49,-9 + - node: + color: '#3EB38896' + id: TrimlineCornerSwOverlayGreyscale + decals: + 1782: 84,16 + 1790: 78,16 + - node: + color: '#52B4E996' + id: TrimlineCornerSwOverlayGreyscale + decals: + 1257: 33,-1 + 1265: 33,-9 + 2259: 54,-13 + 2280: 56,-17 + - node: + color: '#BE6BC399' + id: TrimlineCornerSwOverlayGreyscale + decals: + 824: 46,11 + - node: + color: '#D4D4D428' + id: TrimlineCornerSwOverlayGreyscale + decals: + 1038: -38,-10 + 1073: -19,-11 + 1342: 69,-13 + 1514: -19,11 + 2022: 82,-8 + 2029: 79,0 + - node: + color: '#DE3A3A96' + id: TrimlineCornerSwOverlayGreyscale + decals: + 1158: -13,-1 + - node: + color: '#EFB34196' + id: TrimlineCornerSwOverlayGreyscale + decals: + 1738: 83,5 + 1746: 88,12 + 1794: 83,23 + 1833: 89,23 + 1875: 74,42 + - node: + color: '#37789BFF' + id: TrimlineCornerWarnNeOverlayGreyscale + decals: + 909: 53,26 + - node: + color: '#BC863FFF' + id: TrimlineCornerWarnNeOverlayGreyscale + decals: + 932: 79,-15 + - node: + color: '#EFB34196' + id: TrimlineCornerWarnNeOverlayGreyscale + decals: + 2036: 69,-15 + - node: + color: '#37789BFF' + id: TrimlineCornerWarnNwOverlayGreyscale + decals: + 910: 51,26 + - node: + color: '#EFB34196' + id: TrimlineCornerWarnNwOverlayGreyscale + decals: + 2037: 67,-15 + - node: + color: '#37789BFF' + id: TrimlineCornerWarnSeOverlayGreyscale + decals: + 912: 53,24 + - node: + color: '#EFB34196' + id: TrimlineCornerWarnSeOverlayGreyscale + decals: + 2038: 69,-23 + - node: + color: '#37789BFF' + id: TrimlineCornerWarnSwOverlayGreyscale + decals: + 911: 51,24 + - node: + color: '#EFB34196' + id: TrimlineCornerWarnSwOverlayGreyscale + decals: + 2039: 67,-23 + - node: + color: '#52B4E996' + id: TrimlineEndEOverlayGreyscale + decals: + 2272: 58,-18 + - node: + color: '#334E6DC8' + id: TrimlineEndNOverlayGreyscale + decals: + 1856: 95,33 + 1857: 95,24 + - node: + color: '#334E6DC8' + id: TrimlineEndSOverlayGreyscale + decals: + 1858: 95,23 + 1859: 95,32 + - node: + color: '#52B4E996' + id: TrimlineEndWOverlayGreyscale + decals: + 2273: 56,-18 + - node: + color: '#334E6DC8' + id: TrimlineInnerNeOverlayGreyscale + decals: + 1248: 25,-7 + - node: + color: '#52B4E996' + id: TrimlineInnerNeOverlayGreyscale + decals: + 1261: 36,-3 + - node: + color: '#52B4E9BE' + id: TrimlineInnerNeOverlayGreyscale + decals: + 753: 57,5 + - node: + color: '#9FED5896' + id: TrimlineInnerNeOverlayGreyscale + decals: + 1477: 6,2 + - node: + color: '#D4D4D428' + id: TrimlineInnerNeOverlayGreyscale + decals: + 1090: -13,-8 + - node: + color: '#DE3A3A96' + id: TrimlineInnerNeOverlayGreyscale + decals: + 1174: -7,2 + 1189: 1,2 + - node: + color: '#EFB34196' + id: TrimlineInnerNeOverlayGreyscale + decals: + 1836: 91,31 + - node: + color: '#52B4E996' + id: TrimlineInnerNwOverlayGreyscale + decals: + 1260: 34,-3 + - node: + color: '#D4D4D428' + id: TrimlineInnerNwOverlayGreyscale + decals: + 1102: -5,-8 + 1327: 78,-7 + 1400: 78,7 + 1407: 76,2 + 1520: -14,12 + 1550: 3,2 + - node: + color: '#DE3A3A96' + id: TrimlineInnerNwOverlayGreyscale + decals: + 1171: -8,2 + 1184: -5,2 + - node: + color: '#EFB34196' + id: TrimlineInnerNwOverlayGreyscale + decals: + 1797: 86,27 + - node: + color: '#334E6DC8' + id: TrimlineInnerSeOverlayGreyscale + decals: + 1224: 25,0 + - node: + color: '#3EB38896' + id: TrimlineInnerSeOverlayGreyscale + decals: + 1962: 81,17 + - node: + color: '#49C423FF' + id: TrimlineInnerSeOverlayGreyscale + decals: + 747: 57,5 + - node: + color: '#52B4E996' + id: TrimlineInnerSeOverlayGreyscale + decals: + 1280: 36,-1 + - node: + color: '#52B4E9BE' + id: TrimlineInnerSeOverlayGreyscale + decals: + 754: 57,7 + - node: + color: '#9FED5896' + id: TrimlineInnerSeOverlayGreyscale + decals: + 1197: -2,-1 + - node: + color: '#D4D4D428' + id: TrimlineInnerSeOverlayGreyscale + decals: + 1347: 70,-9 + 1522: -14,12 + 1523: -14.497582,11.505664 + - node: + color: '#EFB34196' + id: TrimlineInnerSeOverlayGreyscale + decals: + 1761: 86,12 + 1837: 91,25 + - node: + color: '#334E6DC8' + id: TrimlineInnerSwOverlayGreyscale + decals: + 1256: 33,0 + - node: + color: '#3EB38896' + id: TrimlineInnerSwOverlayGreyscale + decals: + 1793: 78,17 + 1885: 79,40 + - node: + color: '#52B4E996' + id: TrimlineInnerSwOverlayGreyscale + decals: + 1279: 34,-1 + - node: + color: '#9FED5896' + id: TrimlineInnerSwOverlayGreyscale + decals: + 1223: 24,-1 + - node: + color: '#D4D4D428' + id: TrimlineInnerSwOverlayGreyscale + decals: + 1039: -38,-9 + 1075: -19,-10 + 1355: 78,-9 + 1540: 3,12 + - node: + color: '#DE3A3A96' + id: TrimlineInnerSwOverlayGreyscale + decals: + 1185: -5,-1 + - node: + color: '#334E6DC8' + id: TrimlineLineEOverlayGreyscale + decals: + 1225: 25,-1 + 1226: 25,-2 + 1227: 25,-3 + 1228: 25,-4 + 1229: 25,-5 + 1230: 25,-6 + - node: + color: '#3EB38896' + id: TrimlineLineEOverlayGreyscale + decals: + 1881: 77,44 + - node: + color: '#49C423FF' + id: TrimlineLineEOverlayGreyscale + decals: + 746: 57,4 + - node: + color: '#52B4E996' + id: TrimlineLineEOverlayGreyscale + decals: + 1259: 36,-2 + 1274: 37,-8 + 1275: 37,-7 + 1276: 37,-6 + 1277: 37,-5 + 1278: 37,-4 + 2257: 58,-12 + - node: + color: '#52B4E9BE' + id: TrimlineLineEOverlayGreyscale + decals: + 752: 57,6 + - node: + color: '#9FED5896' + id: TrimlineLineEOverlayGreyscale + decals: + 1191: -2,-4 + 1192: -2,-3 + 1193: -2,-7 + 1194: -2,-6 + 1195: -2,-5 + 1196: -2,-2 + 1478: 6,3 + 1479: 6,4 + 1480: 6,5 + 1481: 6,7 + 1482: 6,6 + 1483: 6,8 + 1484: 6,10 + 1485: 6,9 + 1486: 6,11 + - node: + color: '#A4610696' + id: TrimlineLineEOverlayGreyscale + decals: + 1363: 81,-17 + 1364: 81,-16 + 1365: 81,-15 + 1366: 81,-14 + - node: + color: '#BE6BC399' + id: TrimlineLineEOverlayGreyscale + decals: + 830: 52,12 + 831: 52,13 + - node: + color: '#D4D4D428' + id: TrimlineLineEOverlayGreyscale + decals: + 1103: -2,-10 + 1104: -2,-9 + 1105: -2,-8 + 1242: 26,-12 + 1243: 26,-11 + 1244: 26,-10 + 1245: 26,-9 + 1246: 26,-8 + 1344: 70,-12 + 1345: 70,-11 + 1346: 70,-10 + 1367: 81,-13 + 1368: 81,-12 + 1369: 81,-11 + 1370: 81,-10 + 1371: 81,-9 + 1372: 81,-8 + 1373: 81,-7 + 1374: 81,-6 + 1375: 81,-5 + 1376: 81,-4 + 1377: 81,-3 + 1378: 81,-2 + 1379: 81,3 + 1380: 81,4 + 1381: 81,5 + 1382: 81,6 + 1383: 81,7 + 1384: 81,8 + 1487: 6,12 + - node: + color: '#EFB34196' + id: TrimlineLineEOverlayGreyscale + decals: + 1385: 81,9 + 1386: 81,10 + 1387: 81,11 + 1388: 81,12 + 1389: 81,13 + 1755: 86,6 + 1756: 86,7 + 1757: 86,8 + 1758: 86,9 + 1759: 86,10 + 1760: 86,11 + 1762: 87,13 + 1772: 87,17 + 1773: 87,18 + 1774: 87,19 + 1775: 87,20 + 1806: 87,24 + 1807: 87,25 + 1808: 87,26 + 1809: 87,28 + 1810: 87,32 + 1811: 87,33 + 1845: 91,24 + 1846: 91,32 + 1851: 95,30 + 1852: 95,29 + 1853: 95,28 + 1854: 95,27 + 1855: 95,26 + 1877: 77,43 + - node: + color: '#334E6DC8' + id: TrimlineLineNOverlayGreyscale + decals: + 1000: -48,-7 + 1001: -47,-7 + 1002: -46,-7 + 1003: -45,-7 + 1004: -44,-7 + - node: + color: '#3EB38896' + id: TrimlineLineNOverlayGreyscale + decals: + 1880: 76,45 + - node: + color: '#52B4E996' + id: TrimlineLineNOverlayGreyscale + decals: + 2218: 42,-10 + 2219: 43,-10 + 2220: 44,-10 + 2221: 45,-10 + 2222: 46,-10 + 2251: 57,-11 + 2252: 56,-11 + 2253: 55,-11 + 2277: 57,-18 + 2278: 57,-19 + 2279: 58,-19 + - node: + color: '#52B4E9BE' + id: TrimlineLineNOverlayGreyscale + decals: + 748: 59,5 + 749: 58,5 + - node: + color: '#9FED5896' + id: TrimlineLineNOverlayGreyscale + decals: + 1441: 42,2 + 1442: 41,2 + 1443: 40,2 + 1444: 39,2 + 1445: 38,2 + 1446: 37,2 + 1447: 36,2 + 1448: 35,2 + 1449: 34,2 + 1450: 33,2 + 1451: 32,2 + 1452: 31,2 + 1453: 30,2 + 1454: 29,2 + 1455: 28,2 + 1456: 27,2 + 1457: 26,2 + 1458: 25,2 + 1459: 24,2 + 1460: 23,2 + 1461: 22,2 + 1462: 21,2 + 1463: 20,2 + 1464: 19,2 + 1465: 18,2 + 1466: 16,2 + 1467: 17,2 + 1468: 15,2 + 1469: 14,2 + 1470: 13,2 + 1471: 12,2 + 1472: 11,2 + 1473: 10,2 + 1474: 9,2 + 1475: 8,2 + 1476: 7,2 + - node: + color: '#BE6BC399' + id: TrimlineLineNOverlayGreyscale + decals: + 832: 51,14 + 833: 50,14 + 834: 49,14 + 835: 48,14 + 836: 47,14 + - node: + color: '#D381C996' + id: TrimlineLineNOverlayGreyscale + decals: + 1424: 59,2 + 1425: 58,2 + 1426: 57,2 + 1427: 56,2 + 1428: 55,2 + 1429: 54,2 + 1430: 53,2 + 1431: 52,2 + 1432: 51,2 + 1433: 50,2 + 1434: 49,2 + 1435: 48,2 + 1436: 47,2 + 1437: 46,2 + 1438: 45,2 + 1439: 44,2 + 1440: 43,2 + - node: + color: '#D4D4D428' + id: TrimlineLineNOverlayGreyscale + decals: + 1005: -43,-7 + 1006: -42,-7 + 1007: -41,-7 + 1008: -40,-7 + 1009: -39,-7 + 1010: -38,-7 + 1011: -37,-7 + 1012: -36,-7 + 1013: -35,-7 + 1014: -34,-7 + 1015: -33,-7 + 1016: -32,-7 + 1017: -31,-7 + 1018: -30,-7 + 1019: -28,-7 + 1020: -27,-7 + 1021: -29,-7 + 1060: -26,-7 + 1061: -25,-7 + 1062: -24,-7 + 1063: -23,-7 + 1064: -22,-7 + 1065: -21,-7 + 1066: -20,-7 + 1067: -19,-7 + 1068: -18,-7 + 1069: -17,-7 + 1070: -16,-7 + 1071: -15,-7 + 1072: -14,-7 + 1089: -12,-8 + 1091: -11,-8 + 1092: -10,-8 + 1093: -9,-8 + 1094: -8,-8 + 1095: -7,-8 + 1096: -6,-8 + 1328: 77,-7 + 1329: 76,-7 + 1330: 75,-7 + 1331: 74,-7 + 1332: 73,-7 + 1333: 72,-7 + 1334: 71,-7 + 1335: 70,-7 + 1401: 77,7 + 1408: 75,2 + 1409: 74,2 + 1410: 73,2 + 1411: 72,2 + 1412: 71,2 + 1413: 70,2 + 1414: 69,2 + 1415: 68,2 + 1416: 67,2 + 1417: 66,2 + 1418: 65,2 + 1419: 63,2 + 1420: 64,2 + 1421: 62,2 + 1422: 61,2 + 1423: 60,2 + 1489: 5,13 + 1490: 4,13 + 1491: 1,13 + 1492: 0,13 + 1493: -1,13 + 1494: 2,13 + 1495: 3,13 + 1496: 2,13 + 1497: -2,13 + 1498: -3,13 + 1499: -4,13 + 1500: -5,13 + 1501: -6,13 + 1502: -7,13 + 1503: -8,13 + 1504: -9,13 + 1505: -10,13 + 1506: -11,13 + 1507: -12,13 + 1509: -15,12 + 1510: -16,12 + 1511: -17,12 + 1512: -18,12 + 1521: -13,13 + - node: + color: '#DE3A3A96' + id: TrimlineLineNOverlayGreyscale + decals: + 1167: -12,2 + 1168: -10,2 + 1169: -11,2 + 1170: -9,2 + 1176: -6,2 + 1177: -4,3 + 1178: -3,3 + 1179: -2,3 + 1180: -1,3 + 1181: 0,3 + 1190: 2,2 + - node: + color: '#EFB34196' + id: TrimlineLineNOverlayGreyscale + decals: + 1392: 80,14 + 1393: 79,14 + 1765: 86,14 + 1766: 85,14 + 1767: 84,14 + 1776: 85,21 + 1777: 86,21 + 1804: 84,27 + 1805: 85,27 + 1847: 90,33 + 1848: 92,31 + 1849: 93,31 + 1850: 94,31 + 1873: 75,45 + - node: + color: '#334E6DC8' + id: TrimlineLineSOverlayGreyscale + decals: + 995: -48,-9 + 996: -47,-9 + 997: -46,-9 + 998: -45,-9 + 999: -44,-9 + 1249: 26,0 + 1250: 27,0 + 1251: 28,0 + 1252: 29,0 + 1253: 30,0 + 1254: 31,0 + 1255: 32,0 + - node: + color: '#3EB38896' + id: TrimlineLineSOverlayGreyscale + decals: + 1787: 79,16 + 1788: 80,16 + 1791: 82,17 + 1882: 75,42 + - node: + color: '#49C423FF' + id: TrimlineLineSOverlayGreyscale + decals: + 744: 59,5 + 745: 58,5 + - node: + color: '#52B4E996' + id: TrimlineLineSOverlayGreyscale + decals: + 1266: 34,-9 + 1267: 35,-9 + 1268: 36,-9 + 1281: 37,-1 + 1282: 38,-1 + 1283: 39,-1 + 1284: 40,-1 + 1285: 41,-1 + 1286: 43,-1 + 1287: 42,-1 + 1288: 44,-1 + 1289: 45,-1 + 1290: 46,-1 + 1291: 47,-1 + 1292: 48,-1 + 1293: 49,-1 + 1294: 50,-1 + 1295: 51,-1 + 1296: 52,-1 + 1297: 53,-1 + 1298: 54,-1 + 1299: 55,-1 + 1300: 56,-1 + 1301: 57,-1 + 1302: 58,-1 + 1303: 59,-1 + 1304: 60,-1 + 1305: 61,-1 + 1306: 62,-1 + 1307: 63,-1 + 1308: 64,-1 + 1309: 65,-1 + 1310: 66,-1 + 1311: 67,-1 + 1312: 68,-1 + 1313: 69,-1 + 2254: 55,-13 + 2255: 56,-13 + 2256: 57,-13 + 2274: 57,-18 + 2275: 57,-17 + 2276: 58,-17 + - node: + color: '#52B4E9BE' + id: TrimlineLineSOverlayGreyscale + decals: + 750: 58,7 + 751: 59,7 + - node: + color: '#9FED5896' + id: TrimlineLineSOverlayGreyscale + decals: + 1198: -1,-1 + 1199: 0,-1 + 1200: 1,-1 + 1201: 2,-1 + 1202: 3,-1 + 1203: 4,-1 + 1204: 5,-1 + 1205: 6,-1 + 1206: 7,-1 + 1207: 8,-1 + 1208: 10,-1 + 1209: 9,-1 + 1210: 11,-1 + 1211: 12,-1 + 1212: 13,-1 + 1213: 14,-1 + 1214: 15,-1 + 1215: 16,-1 + 1216: 17,-1 + 1217: 18,-1 + 1218: 19,-1 + 1219: 20,-1 + 1220: 21,-1 + 1221: 22,-1 + 1222: 23,-1 + - node: + color: '#A4610696' + id: TrimlineLineSOverlayGreyscale + decals: + 1361: 80,-18 + - node: + color: '#BE6BC399' + id: TrimlineLineSOverlayGreyscale + decals: + 825: 47,11 + 826: 48,11 + 827: 49,11 + 828: 51,11 + 829: 50,11 + - node: + color: '#D4D4D428' + id: TrimlineLineSOverlayGreyscale + decals: + 1022: -43,-9 + 1023: -42,-9 + 1024: -41,-9 + 1025: -40,-9 + 1026: -39,-9 + 1027: -37,-10 + 1028: -36,-10 + 1029: -35,-10 + 1030: -34,-10 + 1031: -33,-10 + 1032: -32,-10 + 1033: -31,-10 + 1034: -30,-10 + 1035: -29,-10 + 1036: -28,-10 + 1037: -27,-10 + 1054: -26,-10 + 1055: -25,-10 + 1056: -24,-10 + 1057: -23,-10 + 1058: -22,-10 + 1059: -21,-10 + 1074: -20,-10 + 1076: -18,-11 + 1077: -17,-11 + 1078: -16,-11 + 1079: -15,-11 + 1080: -14,-11 + 1081: -13,-11 + 1082: -12,-11 + 1083: -11,-11 + 1084: -10,-11 + 1085: -9,-11 + 1086: -8,-11 + 1087: -7,-11 + 1097: -6,-11 + 1098: -5,-11 + 1099: -4,-11 + 1100: -3,-11 + 1314: 70,-1 + 1315: 71,-1 + 1316: 72,-1 + 1317: 73,-1 + 1318: 74,-1 + 1319: 75,-1 + 1320: 76,-1 + 1321: 77,-1 + 1348: 71,-9 + 1349: 72,-9 + 1350: 73,-9 + 1351: 74,-9 + 1352: 75,-9 + 1353: 76,-9 + 1354: 77,-9 + 1515: -18,11 + 1516: -17,11 + 1517: -16,11 + 1518: -15,11 + 1524: -13,12 + 1525: -12,12 + 1526: -11,12 + 1527: -10,12 + 1528: -9,12 + 1529: -8,12 + 1530: -7,12 + 1531: -6,12 + 1532: -5,12 + 1533: -4,12 + 1534: -3,12 + 1535: -2,12 + 1536: -1,12 + 1537: 0,12 + 1538: 1,12 + 1539: 2,12 + - node: + color: '#DE3A3A96' + id: TrimlineLineSOverlayGreyscale + decals: + 1161: -12,-1 + 1162: -11,-1 + 1163: -10,-1 + 1164: -9,-1 + 1165: -8,-1 + 1166: -7,-1 + 1175: -6,-1 + - node: + color: '#EFB34196' + id: TrimlineLineSOverlayGreyscale + decals: + 1763: 84,5 + 1764: 85,5 + 1771: 86,16 + 1781: 85,16 + 1798: 84,23 + 1799: 85,23 + 1800: 86,23 + 1840: 94,25 + 1841: 93,25 + 1842: 92,25 + 1843: 90,23 + 1876: 76,42 + - node: + color: '#334E6DC8' + id: TrimlineLineWOverlayGreyscale + decals: + 994: -49,-8 + - node: + color: '#3EB38896' + id: TrimlineLineWOverlayGreyscale + decals: + 1783: 84,18 + 1883: 74,43 + - node: + color: '#52B4E996' + id: TrimlineLineWOverlayGreyscale + decals: + 1258: 34,-2 + 1269: 33,-8 + 1270: 33,-7 + 1271: 33,-6 + 1272: 33,-5 + 1273: 33,-4 + 2258: 54,-12 + 2267: 56,-21 + 2268: 56,-20 + 2269: 56,-18 + 2270: 56,-16 + 2271: 56,-15 + - node: + color: '#9FED5896' + id: TrimlineLineWOverlayGreyscale + decals: + 1231: 24,-2 + 1232: 24,-3 + 1233: 24,-4 + 1234: 24,-5 + 1235: 24,-6 + 1236: 24,-7 + 1237: 24,-8 + 1238: 24,-9 + 1239: 24,-10 + 1240: 24,-11 + 1241: 24,-12 + - node: + color: '#A4610696' + id: TrimlineLineWOverlayGreyscale + decals: + 1360: 78,-14 + - node: + color: '#BE6BC399' + id: TrimlineLineWOverlayGreyscale + decals: + 837: 46,12 + 838: 46,13 + - node: + color: '#D4D4D428' + id: TrimlineLineWOverlayGreyscale + decals: + 1106: -5,-7 + 1107: -5,-6 + 1108: -5,-5 + 1322: 78,-2 + 1323: 78,-3 + 1324: 78,-4 + 1325: 78,-5 + 1326: 78,-6 + 1337: 69,-8 + 1338: 69,-9 + 1339: 69,-10 + 1340: 69,-11 + 1341: 69,-12 + 1356: 78,-10 + 1357: 78,-11 + 1358: 78,-12 + 1359: 78,-13 + 1399: 78,8 + 1403: 76,6 + 1404: 76,5 + 1405: 76,4 + 1406: 76,3 + 1541: 3,11 + 1542: 3,10 + 1543: 3,9 + 1544: 3,8 + 1545: 3,7 + 1546: 3,6 + 1547: 3,5 + 1548: 3,4 + 1549: 3,3 + - node: + color: '#DE3A3A96' + id: TrimlineLineWOverlayGreyscale + decals: + 1159: -13,0 + 1160: -13,1 + 1186: -5,-2 + 1187: -5,-3 + 1188: -5,-4 + - node: + color: '#EFB34196' + id: TrimlineLineWOverlayGreyscale + decals: + 1394: 78,13 + 1395: 78,12 + 1396: 78,11 + 1397: 78,10 + 1398: 78,9 + 1747: 83,6 + 1748: 83,7 + 1749: 83,8 + 1750: 83,9 + 1751: 83,10 + 1752: 83,11 + 1753: 83,12 + 1754: 83,13 + 1778: 84,17 + 1779: 84,19 + 1780: 84,20 + 1801: 83,24 + 1802: 83,25 + 1803: 83,26 + 1814: 86,28 + 1815: 86,29 + 1816: 86,30 + 1817: 86,31 + 1818: 86,32 + 1819: 86,33 + 1828: 89,32 + 1829: 89,28 + 1830: 89,26 + 1831: 89,25 + 1844: 89,24 + 1874: 74,44 + - node: + color: '#37789BFF' + id: TrimlineLineWarnEOverlayGreyscale + decals: + 914: 53,25 + - node: + color: '#BC863FFF' + id: TrimlineLineWarnEOverlayGreyscale + decals: + 929: 79,-18 + 930: 79,-17 + 931: 79,-16 + - node: + color: '#EFB34196' + id: TrimlineLineWarnEOverlayGreyscale + decals: + 1820: 87,31 + 1821: 87,30 + 1822: 87,29 + 1823: 87,27 + 2040: 69,-22 + 2041: 69,-21 + 2042: 69,-20 + 2043: 69,-19 + 2044: 69,-18 + 2045: 69,-16 + 2046: 69,-17 + - node: + color: '#37789BFF' + id: TrimlineLineWarnNOverlayGreyscale + decals: + 913: 52,26 + - node: + color: '#3EB38896' + id: TrimlineLineWarnNOverlayGreyscale + decals: + 1784: 79,21 + 1785: 81,21 + 1786: 80,21 + 2231: 52,-10 + 2232: 50,-10 + 2233: 48,-10 + - node: + color: '#52B4E996' + id: TrimlineLineWarnNOverlayGreyscale + decals: + 2234: 51,-10 + 2235: 49,-10 + - node: + color: '#BC863FFF' + id: TrimlineLineWarnNOverlayGreyscale + decals: + 933: 78,-15 + - node: + color: '#EFB34196' + id: TrimlineLineWarnNOverlayGreyscale + decals: + 2047: 68,-15 + - node: + color: '#37789BFF' + id: TrimlineLineWarnSOverlayGreyscale + decals: + 915: 52,24 + - node: + color: '#8C347F96' + id: TrimlineLineWarnSOverlayGreyscale + decals: + 780: 74,11 + 781: 75,11 + 782: 76,11 + - node: + color: '#EFB34196' + id: TrimlineLineWarnSOverlayGreyscale + decals: + 2055: 68,-23 + - node: + color: '#37789BFF' + id: TrimlineLineWarnWOverlayGreyscale + decals: + 916: 51,25 + - node: + color: '#3EB38896' + id: TrimlineLineWarnWOverlayGreyscale + decals: + 1884: 79,39 + - node: + color: '#EFB34196' + id: TrimlineLineWarnWOverlayGreyscale + decals: + 1824: 89,27 + 1825: 89,29 + 1826: 89,30 + 1827: 89,31 + 2048: 67,-16 + 2049: 67,-17 + 2050: 67,-18 + 2051: 67,-19 + 2052: 67,-20 + 2053: 67,-21 + 2054: 67,-22 + - node: + color: '#52B4E996' + id: TrimlineThinBoxOverlayGreyscale + decals: + 1710: 35,-6 + - node: + color: '#D4D4D428' + id: TrimlineThinBoxOverlayGreyscale + decals: + 1697: 79,5 + - node: + color: '#EFB34196' + id: TrimlineThinBoxOverlayGreyscale + decals: + 1988: 85,25 + 2021: 92,28 + - node: + color: '#52B4E996' + id: TrimlineThinCornerNeOverlayGreyscale + decals: + 1698: 36,-4 + - node: + color: '#BE6BC399' + id: TrimlineThinCornerNeOverlayGreyscale + decals: + 845: 51,13 + - node: + color: '#BE6BC3FF' + id: TrimlineThinCornerNeOverlayGreyscale + decals: + 809: 52,9 + - node: + color: '#D4D4D428' + id: TrimlineThinCornerNeOverlayGreyscale + decals: + 1645: 80,6 + - node: + color: '#EFB34196' + id: TrimlineThinCornerNeOverlayGreyscale + decals: + 1646: 80,11 + 2012: 94,30 + - node: + color: '#52B4E996' + id: TrimlineThinCornerNwOverlayGreyscale + decals: + 1699: 34,-4 + 2289: 53,-3 + - node: + color: '#BE6BC399' + id: TrimlineThinCornerNwOverlayGreyscale + decals: + 844: 47,13 + - node: + color: '#D4D4D428' + id: TrimlineThinCornerNwOverlayGreyscale + decals: + 1644: 78,6 + - node: + color: '#EFB34196' + id: TrimlineThinCornerNwOverlayGreyscale + decals: + 1647: 79,11 + - node: + color: '#52B4E996' + id: TrimlineThinCornerSeOverlayGreyscale + decals: + 1701: 36,-8 + 2294: 57,-4 + - node: + color: '#BE6BC399' + id: TrimlineThinCornerSeOverlayGreyscale + decals: + 840: 51,12 + - node: + color: '#D4D4D428' + id: TrimlineThinCornerSeOverlayGreyscale + decals: + 1693: 80,-13 + 1694: 80,4 + - node: + color: '#EFB34196' + id: TrimlineThinCornerSeOverlayGreyscale + decals: + 1649: 80,8 + 2011: 94,26 + - node: + color: '#52B4E996' + id: TrimlineThinCornerSwOverlayGreyscale + decals: + 1700: 34,-8 + 2291: 53,-5 + - node: + color: '#BE6BC399' + id: TrimlineThinCornerSwOverlayGreyscale + decals: + 839: 47,12 + - node: + color: '#D4D4D428' + id: TrimlineThinCornerSwOverlayGreyscale + decals: + 1127: -15,-9 + 1692: 79,-13 + 1695: 78,4 + - node: + color: '#EFB34196' + id: TrimlineThinCornerSwOverlayGreyscale + decals: + 1648: 79,8 + - node: + color: '#52B4E996' + id: TrimlineThinCornerWarnNeOverlayGreyscale + decals: + 2236: 51,-11 + - node: + color: '#BE6BC399' + id: TrimlineThinCornerWarnNeOverlayGreyscale + decals: + 866: 73,10 + - node: + color: '#EFB34196' + id: TrimlineThinCornerWarnNeOverlayGreyscale + decals: + 1952: 85,13 + 1980: 86,26 + 2013: 93,29 + - node: + color: '#52B4E996' + id: TrimlineThinCornerWarnNwOverlayGreyscale + decals: + 2237: 49,-11 + - node: + color: '#BE6BC399' + id: TrimlineThinCornerWarnNwOverlayGreyscale + decals: + 865: 71,10 + - node: + color: '#EFB34196' + id: TrimlineThinCornerWarnNwOverlayGreyscale + decals: + 1937: 84,13 + 1981: 84,26 + 2016: 91,29 + - node: + color: '#52B4E996' + id: TrimlineThinCornerWarnSeOverlayGreyscale + decals: + 2238: 51,-12 + - node: + color: '#BE6BC399' + id: TrimlineThinCornerWarnSeOverlayGreyscale + decals: + 868: 73,8 + - node: + color: '#EFB34196' + id: TrimlineThinCornerWarnSeOverlayGreyscale + decals: + 1945: 85,6 + 1982: 86,24 + 2014: 93,27 + - node: + color: '#52B4E996' + id: TrimlineThinCornerWarnSwOverlayGreyscale + decals: + 2239: 49,-12 + - node: + color: '#BE6BC399' + id: TrimlineThinCornerWarnSwOverlayGreyscale + decals: + 867: 71,8 + - node: + color: '#EFB34196' + id: TrimlineThinCornerWarnSwOverlayGreyscale + decals: + 1944: 84,6 + 1983: 84,24 + 2015: 91,27 + - node: + color: '#52B4E996' + id: TrimlineThinEndEOverlayGreyscale + decals: + 2263: 57,-12 + - node: + color: '#EFB34196' + id: TrimlineThinEndEOverlayGreyscale + decals: + 1953: 86,17 + - node: + color: '#52B4E996' + id: TrimlineThinEndNOverlayGreyscale + decals: + 2225: 45,-10 + 2226: 43,-10 + - node: + color: '#EFB34196' + id: TrimlineThinEndNOverlayGreyscale + decals: + 1989: 90,32 + 2057: 68,-16 + - node: + color: '#52B4E996' + id: TrimlineThinEndSOverlayGreyscale + decals: + 2223: 45,-12 + 2224: 43,-12 + - node: + color: '#EFB34196' + id: TrimlineThinEndSOverlayGreyscale + decals: + 1990: 90,24 + 2056: 68,-22 + - node: + color: '#52B4E996' + id: TrimlineThinEndWOverlayGreyscale + decals: + 2264: 55,-12 + - node: + color: '#EFB34196' + id: TrimlineThinEndWOverlayGreyscale + decals: + 1954: 85,17 + - node: + color: '#52B4E996' + id: TrimlineThinInnerNeOverlayGreyscale + decals: + 1588: 32,0 + 1596: 43,0 + 1613: 55,0 + 2246: 49,-12 + - node: + color: '#9FED5896' + id: TrimlineThinInnerNeOverlayGreyscale + decals: + 1572: 19,0 + - node: + color: '#BE6BC399' + id: TrimlineThinInnerNeOverlayGreyscale + decals: + 864: 71,14 + 879: 71,8 + - node: + color: '#D4D4D428' + id: TrimlineThinInnerNeOverlayGreyscale + decals: + 1051: -34,-9 + 1118: -24,-9 + 1132: -9,-10 + 1154: -4,-8 + 1639: 67,0 + 1680: 69,-13 + 2031: 79,0 + 2326: -16,-10 + - node: + color: '#DE3A3A96' + id: TrimlineThinInnerNeOverlayGreyscale + decals: + 1558: -9,0 + - node: + color: '#EFB34196' + id: TrimlineThinInnerNeOverlayGreyscale + decals: + 1999: 90,30 + - node: + color: '#52B4E996' + id: TrimlineThinInnerNwOverlayGreyscale + decals: + 1587: 38,0 + 2247: 51,-12 + - node: + color: '#9FED5896' + id: TrimlineThinInnerNwOverlayGreyscale + decals: + 1571: 25,0 + - node: + color: '#BE6BC399' + id: TrimlineThinInnerNwOverlayGreyscale + decals: + 863: 72,14 + 880: 73,8 + - node: + color: '#D381C996' + id: TrimlineThinInnerNwOverlayGreyscale + decals: + 1603: 50,0 + 1608: 62,0 + - node: + color: '#D4D4D428' + id: TrimlineThinInnerNwOverlayGreyscale + decals: + 1050: -28,-9 + 1117: -19,-9 + 1130: -12,-10 + 1133: -5,-10 + 1153: -3,-8 + 1681: 70,-13 + 2030: 80,0 + - node: + color: '#DE3A3A96' + id: TrimlineThinInnerNwOverlayGreyscale + decals: + 1557: -5,0 + - node: + color: '#52B4E996' + id: TrimlineThinInnerSeOverlayGreyscale + decals: + 2244: 49,-11 + - node: + color: '#9FED5896' + id: TrimlineThinInnerSeOverlayGreyscale + decals: + 1574: 19,1 + 1581: 32,1 + - node: + color: '#BE6BC399' + id: TrimlineThinInnerSeOverlayGreyscale + decals: + 862: 71,21 + 878: 71,10 + - node: + color: '#D381C996' + id: TrimlineThinInnerSeOverlayGreyscale + decals: + 1604: 43,1 + 1612: 55,1 + - node: + color: '#D4D4D428' + id: TrimlineThinInnerSeOverlayGreyscale + decals: + 1053: -34,-8 + 1120: -24,-8 + 1125: -16,-8 + 1131: -9,-9 + 1156: -4,-1 + 1640: 67,1 + 1683: 69,-9 + 2033: 79,1 + - node: + color: '#DE3A3A96' + id: TrimlineThinInnerSeOverlayGreyscale + decals: + 1560: -9,1 + - node: + color: '#EFB34196' + id: TrimlineThinInnerSeOverlayGreyscale + decals: + 1998: 90,26 + - node: + color: '#52B4E996' + id: TrimlineThinInnerSwOverlayGreyscale + decals: + 1592: 50,1 + 1614: 62,1 + 2245: 51,-11 + - node: + color: '#9FED5896' + id: TrimlineThinInnerSwOverlayGreyscale + decals: + 1573: 25,1 + 1580: 38,1 + - node: + color: '#BE6BC399' + id: TrimlineThinInnerSwOverlayGreyscale + decals: + 861: 72,21 + 877: 73,10 + - node: + color: '#BE6BC3FF' + id: TrimlineThinInnerSwOverlayGreyscale + decals: + 921: 54,23 + - node: + color: '#D4D4D428' + id: TrimlineThinInnerSwOverlayGreyscale + decals: + 1052: -28,-8 + 1119: -19,-8 + 1126: -15,-8 + 1134: -5,-9 + 1155: -3,-1 + 1682: 70,-9 + 2032: 80,1 + 2325: -12,-9 + - node: + color: '#DE3A3A96' + id: TrimlineThinInnerSwOverlayGreyscale + decals: + 1559: -5,1 + - node: + color: '#3EB38896' + id: TrimlineThinLineEOverlayGreyscale + decals: + 1955: 81,19 + 1956: 81,20 + 1957: 81,21 + 1963: 81,18 + 1964: 81,17 + 1967: 81,16 + 1974: 79,16 + 1975: 79,17 + 1976: 79,18 + 1977: 79,19 + 1978: 79,20 + 1979: 79,21 + - node: + color: '#52B4E996' + id: TrimlineThinLineEOverlayGreyscale + decals: + 1704: 36,-7 + 1705: 36,-6 + 1706: 36,-5 + 2227: 45,-11 + 2228: 43,-11 + 2295: 57,-3 + - node: + color: '#BE6BC399' + id: TrimlineThinLineEOverlayGreyscale + decals: + 849: 71,15 + 850: 71,16 + 851: 71,17 + 852: 71,18 + 853: 71,19 + 854: 71,20 + 873: 71,9 + - node: + color: '#BE6BC3FF' + id: TrimlineThinLineEOverlayGreyscale + decals: + 816: 52,8 + 817: 52,7 + 818: 52,6 + 819: 52,5 + 820: 52,4 + - node: + color: '#D4D4D428' + id: TrimlineThinLineEOverlayGreyscale + decals: + 1124: -16,-9 + 1141: -4,-7 + 1142: -4,-6 + 1143: -4,-5 + 1144: -4,-4 + 1145: -4,-3 + 1146: -4,-2 + 1642: 80,5 + 1659: 79,-2 + 1660: 79,-3 + 1661: 79,-4 + 1662: 79,-5 + 1663: 79,-6 + 1677: 69,-12 + 1678: 69,-11 + 1679: 69,-10 + 1688: 80,-9 + 1689: 80,-10 + 1690: 80,-11 + 1691: 80,-12 + - node: + color: '#EFB34196' + id: TrimlineThinLineEOverlayGreyscale + decals: + 1650: 80,9 + 1651: 80,10 + 2000: 90,31 + 2001: 90,25 + 2008: 94,27 + 2009: 94,28 + 2010: 94,29 + 2058: 68,-21 + 2059: 68,-20 + 2060: 68,-19 + 2061: 68,-18 + 2062: 68,-17 + - node: + color: '#52B4E996' + id: TrimlineThinLineNOverlayGreyscale + decals: + 1582: 34,0 + 1583: 36,0 + 1593: 49,0 + 1594: 47,0 + 1595: 45,0 + 1618: 57,0 + 1619: 59,0 + 1620: 61,0 + 1702: 35,-4 + 2242: 50,-12 + 2265: 56,-12 + 2284: 56,-3 + 2285: 57,-3 + 2286: 58,-3 + 2287: 59,-3 + 2288: 54,-3 + - node: + color: '#9FED5896' + id: TrimlineThinLineNOverlayGreyscale + decals: + 1561: 20,0 + 1562: 21,0 + 1563: 22,0 + 1564: 23,0 + 1565: 24,0 + 1575: 33,0 + 1576: 35,0 + 1577: 37,0 + - node: + color: '#BE6BC399' + id: TrimlineThinLineNOverlayGreyscale + decals: + 846: 48,13 + 847: 49,13 + 848: 50,13 + 874: 72,8 + - node: + color: '#BE6BC3FF' + id: TrimlineThinLineNOverlayGreyscale + decals: + 810: 51,9 + 811: 50,9 + 812: 49,9 + 813: 48,9 + 814: 47,9 + 815: 46,9 + - node: + color: '#D381C996' + id: TrimlineThinLineNOverlayGreyscale + decals: + 1597: 44,0 + 1598: 46,0 + 1599: 48,0 + 1605: 56,0 + 1606: 58,0 + 1607: 60,0 + - node: + color: '#D4D4D428' + id: TrimlineThinLineNOverlayGreyscale + decals: + 1045: -33,-9 + 1046: -32,-9 + 1047: -31,-9 + 1048: -30,-9 + 1049: -29,-9 + 1109: -23,-9 + 1110: -22,-9 + 1111: -21,-9 + 1112: -20,-9 + 1121: -13,-10 + 1122: -14,-10 + 1123: -15,-10 + 1138: -8,-10 + 1139: -7,-10 + 1140: -6,-10 + 1630: 68,0 + 1631: 69,0 + 1632: 70,0 + 1633: 71,0 + 1634: 72,0 + 1635: 73,0 + 1636: 74,0 + 1637: 75,0 + 1638: 76,0 + 1643: 79,6 + 1669: 78,-8 + 1670: 77,-8 + 1671: 76,-8 + 1672: 73,-8 + 1673: 72,-8 + 2035: 77,0 + - node: + color: '#DE3A3A96' + id: TrimlineThinLineNOverlayGreyscale + decals: + 1554: -8,0 + 1555: -7,0 + 1556: -6,0 + - node: + color: '#EFB34196' + id: TrimlineThinLineNOverlayGreyscale + decals: + 2005: 91,30 + 2006: 92,30 + 2007: 93,30 + - node: + color: '#52B4E996' + id: TrimlineThinLineSOverlayGreyscale + decals: + 1584: 33,1 + 1585: 35,1 + 1586: 37,1 + 1589: 44,1 + 1590: 46,1 + 1591: 48,1 + 1615: 56,1 + 1616: 58,1 + 1617: 60,1 + 1703: 35,-8 + 2243: 50,-11 + 2266: 56,-12 + 2292: 54,-5 + 2293: 56,-4 + - node: + color: '#9FED5896' + id: TrimlineThinLineSOverlayGreyscale + decals: + 1566: 20,1 + 1567: 21,1 + 1568: 22,1 + 1569: 23,1 + 1570: 24,1 + 1578: 36,1 + 1579: 34,1 + - node: + color: '#BE6BC399' + id: TrimlineThinLineSOverlayGreyscale + decals: + 841: 48,12 + 842: 49,12 + 843: 50,12 + 875: 72,10 + - node: + color: '#BE6BC3FF' + id: TrimlineThinLineSOverlayGreyscale + decals: + 917: 50,23 + 918: 51,23 + 919: 52,23 + 920: 53,23 + - node: + color: '#D381C996' + id: TrimlineThinLineSOverlayGreyscale + decals: + 1600: 45,1 + 1601: 47,1 + 1602: 49,1 + 1609: 61,1 + 1610: 59,1 + 1611: 57,1 + - node: + color: '#D4D4D428' + id: TrimlineThinLineSOverlayGreyscale + decals: + 1040: -33,-8 + 1041: -32,-8 + 1042: -31,-8 + 1043: -30,-8 + 1044: -29,-8 + 1113: -22,-8 + 1114: -23,-8 + 1115: -21,-8 + 1116: -20,-8 + 1128: -14,-9 + 1129: -13,-9 + 1135: -8,-9 + 1136: -7,-9 + 1137: -6,-9 + 1621: 68,1 + 1622: 69,1 + 1623: 70,1 + 1624: 71,1 + 1625: 72,1 + 1626: 73,1 + 1627: 74,1 + 1628: 75,1 + 1629: 76,1 + 1664: 72,-8 + 1665: 73,-8 + 1666: 76,-8 + 1667: 77,-8 + 1668: 78,-8 + 1696: 79,4 + 2034: 77,1 + - node: + color: '#DE3A3A96' + id: TrimlineThinLineSOverlayGreyscale + decals: + 1551: -8,1 + 1552: -7,1 + 1553: -6,1 + - node: + color: '#EFB34196' + id: TrimlineThinLineSOverlayGreyscale + decals: + 2002: 91,26 + 2003: 92,26 + 2004: 93,26 + - node: + color: '#3EB38896' + id: TrimlineThinLineWOverlayGreyscale + decals: + 1958: 79,18 + 1959: 79,19 + 1960: 79,20 + 1961: 79,21 + 1965: 79,17 + 1966: 79,16 + 1968: 81,21 + 1969: 81,20 + 1970: 81,19 + 1971: 81,18 + 1972: 81,17 + 1973: 81,16 + - node: + color: '#52B4E996' + id: TrimlineThinLineWOverlayGreyscale + decals: + 1707: 34,-7 + 1708: 34,-6 + 1709: 34,-5 + 2229: 43,-11 + 2230: 45,-11 + 2290: 53,-4 + 2296: 59,-3 + 2297: 59,-4 + 2298: 59,-5 + - node: + color: '#BE6BC399' + id: TrimlineThinLineWOverlayGreyscale + decals: + 855: 72,15 + 856: 72,16 + 857: 72,17 + 858: 72,18 + 859: 72,19 + 860: 72,20 + 876: 73,9 + - node: + color: '#BE6BC3FF' + id: TrimlineThinLineWOverlayGreyscale + decals: + 922: 54,22 + - node: + color: '#D4D4D428' + id: TrimlineThinLineWOverlayGreyscale + decals: + 1147: -3,-2 + 1148: -3,-3 + 1149: -3,-4 + 1150: -3,-5 + 1151: -3,-6 + 1152: -3,-7 + 1641: 78,5 + 1654: 80,-3 + 1655: 80,-4 + 1656: 80,-5 + 1657: 80,-6 + 1658: 80,-2 + 1674: 70,-12 + 1675: 70,-11 + 1676: 70,-10 + 1684: 79,-9 + 1685: 79,-10 + 1686: 79,-11 + 1687: 79,-12 + - node: + color: '#EFB34196' + id: TrimlineThinLineWOverlayGreyscale + decals: + 1652: 79,9 + 1653: 79,10 + 1991: 90,25 + 1992: 90,26 + 1993: 90,27 + 1994: 90,28 + 1995: 90,29 + 1996: 90,30 + 1997: 90,31 + 2063: 68,-21 + 2064: 68,-20 + 2065: 68,-19 + 2066: 68,-18 + 2067: 68,-17 + - node: + color: '#BE6BC399' + id: TrimlineThinLineWarnEOverlayGreyscale + decals: + 872: 73,9 + - node: + color: '#BE6BC3FF' + id: TrimlineThinLineWarnEOverlayGreyscale + decals: + 923: 55,22 + 924: 55,23 + 925: 55,24 + 926: 55,25 + 927: 55,27 + 928: 55,26 + - node: + color: '#EFB34196' + id: TrimlineThinLineWarnEOverlayGreyscale + decals: + 1946: 85,7 + 1947: 85,8 + 1948: 85,9 + 1949: 85,10 + 1950: 85,11 + 1951: 85,12 + 1984: 86,25 + 2018: 93,28 + - node: + color: '#52B4E996' + id: TrimlineThinLineWarnNOverlayGreyscale + decals: + 2241: 50,-11 + - node: + color: '#BE6BC399' + id: TrimlineThinLineWarnNOverlayGreyscale + decals: + 871: 72,10 + - node: + color: '#EFB34196' + id: TrimlineThinLineWarnNOverlayGreyscale + decals: + 1987: 85,26 + 2020: 92,29 + - node: + color: '#52B4E996' + id: TrimlineThinLineWarnSOverlayGreyscale + decals: + 2240: 50,-12 + - node: + color: '#BE6BC399' + id: TrimlineThinLineWarnSOverlayGreyscale + decals: + 869: 72,8 + - node: + color: '#EFB34196' + id: TrimlineThinLineWarnSOverlayGreyscale + decals: + 1986: 85,24 + 2019: 92,27 + - node: + color: '#BE6BC399' + id: TrimlineThinLineWarnWOverlayGreyscale + decals: + 870: 71,9 + - node: + color: '#EFB34196' + id: TrimlineThinLineWarnWOverlayGreyscale + decals: + 1938: 84,12 + 1939: 84,11 + 1940: 84,10 + 1941: 84,9 + 1942: 84,8 + 1943: 84,7 + 1985: 84,25 + 2017: 91,28 + - node: + color: '#BC863FFF' + id: WarnBoxGreyscale + decals: + 934: 78,-16 + 935: 78,-17 + 936: 78,-18 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleNE + decals: + 2332: 17,-23 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleNW + decals: + 2331: 15,-23 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleSE + decals: + 2335: 17,-26 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleSW + decals: + 2336: 15,-26 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 558: 91,-22 + 591: 103,-18 + 775: 67,8 + 1887: 87,37 + 2947: 50,27 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 500: 73,-15 + 1888: 83,37 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 1889: 87,36 + 2948: 50,26 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 499: 73,-18 + 560: 89,-20 + 1886: 83,36 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 723: 72,19 + 724: 72,15 + 1871: 76,37 + 2307: 64,-13 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 721: 71,15 + 722: 71,19 + 766: 56,6 + 1870: 78,37 + 2306: 66,-13 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 743: 72,17 + 777: 63,7 + 1866: 86,11 + 1902: 81,39 + 2305: 64,-11 + - node: + color: '#DE3A3AFF' + id: WarnCornerSmallSW + decals: + 68: -48,2 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 742: 71,17 + 774: 67,8 + 2304: 66,-11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 2703: 46,25 + - node: + color: '#FFFFFFFF' + id: WarnEndS + decals: + 773: 67,7 + - node: + color: '#FFFFFFFF' + id: WarnEndW + decals: + 772: 66,8 + - node: + color: '#FFFFFFFF' + id: WarnFull + decals: + 2299: 65,-12 + - node: + color: '#9C2020FF' + id: WarnFullGreyscale + decals: + 37: -49,-3 + 38: -49,-4 + 39: -45,-2 + 40: -47,-5 + 41: -46,-5 + 42: -44,-5 + 43: -43,-5 + - node: + color: '#DE3A3AFF' + id: WarnFullGreyscale + decals: + 88: -47,-1 + - node: + color: '#951710FF' + id: WarnLineE + decals: + 97: -15,-1 + 98: -15,2 + 99: -15,1 + 100: -15,0 + - node: + color: '#DE3A3AFF' + id: WarnLineE + decals: + 83: -45,1 + 84: -45,2 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 717: 72,16 + 718: 72,20 + 776: 63,4 + 778: 63,5 + 779: 63,6 + 1860: 86,5 + 1861: 86,6 + 1862: 86,7 + 1863: 86,8 + 1864: 86,9 + 1865: 86,10 + 2300: 64,-12 + - node: + color: '#DE3A3AFF' + id: WarnLineGreyscaleE + decals: + 120: -38,1 + 121: -38,2 + 122: -38,3 + 123: -38,4 + 124: -34,4 + 125: -34,3 + 126: -34,2 + 127: -34,1 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleE + decals: + 2327: 17,-25 + 2333: 17,-24 + - node: + color: '#DE3A3AFF' + id: WarnLineGreyscaleN + decals: + 118: -37,0 + 119: -36,0 + 128: -33,0 + 129: -32,0 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 2329: 16,-23 + - node: + color: '#DE3A3AFF' + id: WarnLineGreyscaleS + decals: + 112: -37,5 + 113: -36,5 + 134: -33,5 + 135: -32,5 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 2330: 16,-26 + - node: + color: '#DE3A3AFF' + id: WarnLineGreyscaleW + decals: + 114: -35,4 + 115: -35,3 + 116: -35,2 + 117: -35,1 + 130: -31,1 + 131: -31,2 + 132: -31,3 + 133: -31,4 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleW + decals: + 2328: 15,-25 + 2334: 15,-24 + - node: + color: '#DE3A3AFF' + id: WarnLineN + decals: + 67: -49,2 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 6: -43,-1 + 7: -42,-1 + 8: -41,-1 + 561: 91,-20 + 1890: 86,36 + 1891: 85,36 + 1892: 84,36 + 1896: 87,39 + 1897: 86,39 + 1898: 85,39 + 1899: 84,39 + 1900: 83,39 + 1901: 82,39 + 2303: 65,-11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnLineN + decals: + 2697: 45,25 + 2698: 44,25 + 2699: 43,25 + 2700: 42,25 + 2701: 41,25 + 2702: 40,25 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnLineN + decals: + 5: -44,-1 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: WarnLineN + decals: + 9: -43,-1 + 10: -43,0 + 11: -43,1 + 12: -43,2 + 13: -43,3 + - node: + color: '#DE3A3AFF' + id: WarnLineS + decals: + 65: -48,0 + 66: -48,1 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 501: 73,-16 + 502: 73,-17 + 719: 71,16 + 720: 71,20 + 763: 56,7 + 764: 56,8 + 765: 56,9 + 2302: 66,-12 + - node: + color: '#9C2020FF' + id: WarnLineW + decals: + 54: -47,-2 + 55: -42,-3 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 559: 89,-22 + 590: 101,-18 + 761: 54,6 + 762: 55,6 + 1867: 86,34 + 1868: 87,34 + 1869: 77,37 + 1893: 84,37 + 1894: 85,37 + 1895: 86,37 + 2301: 65,-13 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinBox + decals: + 523: 88,-27 + 524: 87,-26 + 525: 89,-26 + 526: 87,-28 + 527: 89,-28 + 528: 85,-26 + 529: 83,-28 + 530: 81,-26 + 531: 83,-24 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 2077: -9,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 1729: 69,44 + 1730: 63,43 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 520: 81,-25 + 521: 81,-26 + 522: 81,-27 + 1726: 69,45 + 1727: 69,46 + 1728: 69,47 + 1731: 63,44 + 1732: 63,45 + 1733: 63,46 + 1734: 63,47 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 511: 82,-28 + 512: 83,-28 + 513: 84,-28 + 1723: 72,44 + 1724: 71,44 + 1725: 70,44 + 1735: 64,43 + 1736: 65,43 + 1737: 66,43 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 517: 84,-24 + 518: 83,-24 + 519: 82,-24 + 2075: -7,9 + 2076: -8,9 + 2593: 99,-43 + 2594: 98,-43 + 2595: 97,-43 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 514: 85,-27 + 515: 85,-26 + 516: 85,-25 + 1711: 29,-9 + 1712: 29,-8 + 1713: 29,-7 + 2078: -9,10 + - node: + color: '#FFFF00FF' + id: a + decals: + 2551: 73.57434,-42.89082 + - node: + color: '#0E7F1BFF' + id: arrow + decals: + 293: 31,0 + - node: + angle: 3.141592653589793 rad + color: '#0E7F1BFF' + id: arrow + decals: + 292: 27,0 + - node: + color: '#FFFF00FF' + id: b + decals: + 2550: 73.27434,-42.94707 + - node: + color: '#FFFF00FF' + id: e + decals: + 2549: 74.23059,-42.47832 + - node: + color: '#FFFFFFFF' + id: grasssnow02 + decals: + 741: 74.25981,17.065845 + - node: + color: '#FFFFFFFF' + id: grasssnowa1 + decals: + 714: 76.13621,14.9877205 + 716: 75.291824,16.190845 + - node: + color: '#FFFFFFFF' + id: grasssnowb3 + decals: + 715: 74.181625,15.1908455 + - node: + cleanable: True + color: '#FF7B00FF' + id: i + decals: + 2363: -15.634036,-8.740187 + - node: + color: '#FFFF00FF' + id: i + decals: + 2547: 73.536835,-42.47832 + - node: + cleanable: True + color: '#FF7B00FF' + id: k + decals: + 2362: -15.934036,-8.796436 + 2366: -14.5465355,-8.758937 + - node: + color: '#FFFF00FF' + id: k + decals: + 2548: 73.83684,-42.44082 + - node: + color: '#FFFF00FF' + id: l + decals: + 2552: 73.911835,-42.90957 + 2553: 74.17434,-42.834568 + - node: + cleanable: True + color: '#DE3A3AFF' + id: like + decals: + 274: -16.839336,0.28211528 + - node: + cleanable: True + color: '#FF7B00FF' + id: o + decals: + 2364: -15.2965355,-8.796436 + - node: + color: '#FFFF00FF' + id: r + decals: + 2546: 73.27434,-42.53457 + - node: + color: '#9C202097' + id: rune1 + decals: + 937: 84,-38 + - node: + color: '#9C202097' + id: rune2 + decals: + 941: 85,-37 + - node: + color: '#9C202097' + id: rune3 + decals: + 940: 83,-39 + - node: + color: '#9C202097' + id: rune4 + decals: + 939: 85,-39 + - node: + color: '#9C202097' + id: rune6 + decals: + 938: 83,-37 + - node: + cleanable: True + color: '#FF7B00FF' + id: s + decals: + 2365: -14.902786,-8.796436 + - node: + color: '#FFFF00FF' + id: s + decals: + 2543: 72.58059,-42.53457 + - node: + cleanable: True + angle: 2.0943951023931953 rad + color: '#571212FF' + id: shortline + decals: + 2442: 42.859104,-31.088911 + - node: + cleanable: True + angle: 2.0943951023931953 rad + color: '#9C2020FF' + id: shortline + decals: + 2441: 42.937286,-31.104536 + - node: + color: '#FFFF00FF' + id: shotgun + decals: + 2544: 73.76184,-42.02832 + - node: + cleanable: True + color: '#FFFF00FF' + id: shotgun + decals: + 2541: 69.98783,-45.37278 + - node: + cleanable: True + color: '#000000AD' + id: smallbrush + decals: + 2437: 45.601143,-31.34115 + 2438: 45.78878,-29.950525 + 2439: 45.38223,-31.481775 + 2440: 45.491684,-31.544275 + - node: + cleanable: True + color: '#A46106C2' + id: smallbrush + decals: + 2707: 37.984398,24.929403 + 2708: 38.01456,24.66567 + - node: + cleanable: True + color: '#A46106FF' + id: smallbrush + decals: + 2710: 38.135216,24.718418 + - node: + cleanable: True + color: '#000000AD' + id: splatter + decals: + 2436: 45.507324,-31.544275 + - node: + cleanable: True + color: '#571212FF' + id: splatter + decals: + 2434: 44.64731,-30.34115 + 2435: 44.381485,-30.231775 + - node: + cleanable: True + angle: 2.0943951023931953 rad + color: '#571212FF' + id: splatter + decals: + 2443: 42.655827,-31.354536 + 2444: 39.559772,-30.604536 + 2446: 39.778687,-30.354536 + - node: + angle: 4.71238898038469 rad + color: '#951710FF' + id: splatter + decals: + 30: -43.15912,4.9219623 + - node: + color: '#9C202097' + id: splatter + decals: + 942: 83,-38 + - node: + cleanable: True + color: '#9C2020FF' + id: splatter + decals: + 2433: 44.600395,-30.450525 + - node: + cleanable: True + angle: 2.0943951023931953 rad + color: '#9C2020FF' + id: splatter + decals: + 2445: 39.71614,-30.245161 + - node: + cleanable: True + color: '#A4610696' + id: splatter + decals: + 2705: 38.059807,25.072573 + 2706: 38.007023,24.944473 + - node: + color: '#D4D4D496' + id: splatter + decals: + 2079: 44.85398,31.83712 + - node: + cleanable: True + color: '#FA750096' + id: splatter + decals: + 2704: 38.007023,24.95201 + - node: + color: '#FFFF00FF' + id: t + decals: + 2545: 72.880585,-42.47832 + - node: + cleanable: True + color: '#DE3A3AFF' + id: u + decals: + 271: -17.566334,0.81379926 + 273: -16.817636,0.7269937 + - node: + cleanable: True + color: '#DE3A3AFF' + id: w + decals: + 272: -17.240812,0.6076361 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 49151 + 0,-1: + 0: 61695 + -1,0: + 0: 65535 + 0,1: + 0: 48059 + -1,1: + 0: 65535 + 0,2: + 0: 35771 + -1,2: + 0: 4095 + 0,3: + 0: 255 + -1,3: + 0: 255 + 1,0: + 0: 32767 + 1,1: + 0: 32767 + 1,2: + 0: 30711 + 1,3: + 0: 247 + 1,-1: + 0: 61695 + 2,0: + 0: 4095 + 2,1: + 0: 65535 + 2,2: + 0: 4095 + 2,3: + 0: 255 + 1: 4096 + 2,-1: + 0: 61695 + 2,4: + 1: 4369 + 3,0: + 0: 4095 + 3,1: + 0: 16383 + 3,2: + 0: 823 + 2: 2184 + 3,3: + 0: 253 + 3,-1: + 0: 61627 + 4,0: + 0: 16383 + 4,1: + 0: 4095 + 4,2: + 2: 273 + 0: 21508 + 4,3: + 0: 127 + 0,-3: + 0: 61692 + -1,-3: + 0: 30704 + 0,-2: + 0: 65535 + -1,-1: + 0: 63351 + 1,-3: + 0: 61687 + 1,-2: + 0: 65535 + 2,-3: + 0: 58623 + 2,-2: + 0: 65383 + 2,-4: + 1: 273 + 2,-5: + 1: 4368 + 3,-3: + 0: 28799 + 3,-2: + 0: 64263 + 4,-3: + 0: 47919 + 4,-2: + 0: 30475 + 4,-1: + 0: 62071 + -4,0: + 0: 8123 + -4,-1: + 0: 63999 + -5,0: + 0: 52975 + -4,1: + 0: 48059 + -5,1: + 0: 61166 + -4,2: + 0: 30899 + -5,2: + 0: 61678 + -4,3: + 0: 4575 + -5,3: + 0: 17486 + -3,0: + 0: 20479 + -3,1: + 0: 30583 + -3,2: + 0: 4080 + -3,3: + 0: 255 + -3,-1: + 0: 61678 + -2,0: + 0: 49151 + -2,1: + 0: 47290 + -2,2: + 0: 4027 + -2,3: + 0: 255 + -2,-1: + 0: 64187 + -4,-4: + 0: 4352 + -4,-3: + 0: 65521 + -5,-3: + 0: 65508 + -4,-2: + 0: 61692 + -5,-2: + 0: 57599 + -5,-1: + 0: 64750 + -3,-3: + 0: 65520 + -3,-2: + 0: 60943 + -2,-3: + 0: 65520 + -2,-2: + 0: 48015 + -1,-2: + 0: 30583 + -8,-4: + 1: 61440 + -9,-4: + 1: 61440 + -8,-3: + 0: 65280 + 1: 8 + -9,-3: + 0: 65280 + 1: 8 + -8,-2: + 0: 53503 + -9,-2: + 0: 53503 + -8,-1: + 0: 61917 + -9,-1: + 0: 61917 + -8,0: + 0: 47935 + -7,-4: + 1: 61440 + -7,-3: + 0: 65280 + 1: 8 + -7,-2: + 0: 53503 + -7,-1: + 0: 61917 + -7,0: + 0: 56607 + -6,-3: + 1: 15 + 0: 65280 + -6,-2: + 0: 53503 + -6,-1: + 0: 63965 + -6,0: + 0: 65327 + -5,-4: + 0: 17408 + -9,0: + 0: 65535 + -8,1: + 0: 16371 + -9,1: + 0: 65535 + -8,2: + 0: 62347 + -9,2: + 0: 57119 + -8,3: + 1: 3968 + -9,3: + 1: 3968 + -7,1: + 0: 53020 + -7,2: + 0: 61917 + -7,3: + 1: 3968 + -6,1: + 0: 65295 + -6,2: + 0: 61695 + -6,3: + 1: 240 + -12,0: + 0: 65535 + -13,0: + 0: 48059 + -12,1: + 0: 65520 + -13,1: + 0: 34944 + 1: 8736 + -12,2: + 0: 61455 + 1: 3840 + -13,2: + 0: 57352 + 1: 3618 + -12,3: + 1: 3840 + -13,3: + 1: 3857 + -11,1: + 0: 49072 + -11,2: + 0: 14347 + 1: 768 + -11,3: + 1: 3908 + -11,0: + 0: 61166 + -11,-1: + 0: 57599 + -10,0: + 0: 61422 + -10,1: + 0: 57308 + -10,2: + 0: 53005 + -10,3: + 1: 3872 + -10,-1: + 0: 61661 + -12,-4: + 1: 61440 + -13,-4: + 1: 61440 + -12,-3: + 0: 61440 + -12,-2: + 0: 61695 + -13,-3: + 0: 61440 + -13,-2: + 0: 45819 + -12,-1: + 0: 4095 + -13,-1: + 0: 15291 + -11,-4: + 1: 61440 + -11,-3: + 0: 61440 + 1: 68 + -11,-2: + 0: 61695 + -10,-4: + 1: 61440 + -10,-3: + 0: 64512 + 1: 2 + -10,-2: + 0: 53503 + -16,-3: + 1: 2191 + -17,-3: + 1: 559 + -16,-2: + 0: 65535 + -17,-2: + 0: 57308 + -16,-1: + 0: 12303 + -17,-1: + 0: 53533 + -16,0: + 0: 13107 + -15,-3: + 1: 1 + -15,-2: + 0: 55807 + -15,-1: + 0: 65485 + -15,0: + 0: 65535 + -14,-2: + 0: 63727 + -14,-1: + 0: 65535 + -14,-3: + 0: 57344 + 1: 136 + -14,0: + 0: 65535 + -14,-4: + 1: 49152 + -17,0: + 0: 56797 + -16,1: + 0: 65280 + -17,1: + 0: 64785 + -16,2: + 0: 255 + 1: 32768 + -17,2: + 0: 205 + 1: 8192 + -16,3: + 1: 248 + -17,3: + 1: 242 + -15,1: + 0: 56785 + -15,2: + 0: 223 + -15,3: + 1: 16 + -14,1: + 0: 57296 + -14,2: + 0: 3820 + -14,3: + 1: 3072 + -20,-1: + 1: 1792 + -21,-1: + 1: 19532 + -20,-3: + 1: 60544 + -20,-2: + 1: 10 + -19,-3: + 1: 2263 + -19,-2: + 1: 49 + 0: 51200 + -19,-1: + 0: 65518 + -19,0: + 0: 65535 + -19,-4: + 1: 27648 + -18,-3: + 1: 12544 + -18,-2: + 0: 65504 + -18,-1: + 0: 65535 + -18,0: + 0: 65535 + -20,0: + 1: 28672 + -21,0: + 1: 50244 + -20,2: + 1: 52896 + -19,2: + 1: 32787 + -20,3: + 1: 8 + -19,3: + 1: 50813 + -19,1: + 0: 36078 + -18,1: + 0: 65535 + -18,2: + 1: 4864 + 0: 14 + 5,-3: + 0: 30479 + 5,-2: + 0: 30479 + 5,-1: + 0: 62071 + 5,0: + 0: 20479 + 6,-3: + 0: 30711 + 6,-2: + 0: 62455 + 6,-1: + 0: 46011 + 6,0: + 0: 4095 + 7,-3: + 0: 61695 + 7,-2: + 0: 61951 + 7,-1: + 0: 61695 + 7,0: + 0: 4095 + 8,-3: + 0: 57583 + 5,1: + 0: 65535 + 5,2: + 0: 12287 + 5,3: + 0: 255 + 6,3: + 0: 254 + 6,1: + 0: 61166 + 6,2: + 0: 61166 + 7,1: + 0: 65535 + 7,2: + 0: 65535 + 7,3: + 0: 255 + 8,0: + 0: 4095 + 8,1: + 0: 56797 + 8,2: + 0: 64977 + 8,3: + 0: 221 + 8,-1: + 0: 60654 + 9,0: + 0: 20479 + 9,1: + 0: 65535 + 9,2: + 0: 30576 + 9,3: + 0: 20343 + 9,-1: + 0: 61951 + 10,0: + 0: 4095 + 10,1: + 0: 65535 + 10,2: + 0: 64435 + 10,3: + 0: 64433 + 10,-1: + 0: 61663 + 10,4: + 0: 201 + 11,0: + 0: 53247 + 11,1: + 0: 56797 + 11,2: + 0: 53724 + 11,3: + 0: 7676 + 11,-1: + 0: 62702 + 11,4: + 0: 36863 + 12,0: + 0: 28671 + 12,1: + 0: 65534 + 12,2: + 0: 61695 + 12,3: + 0: 4095 + 8,-2: + 0: 61166 + 9,-4: + 0: 29696 + 9,-3: + 0: 61951 + 9,-2: + 0: 64319 + 10,-4: + 0: 6140 + 10,-3: + 0: 64733 + 10,-2: + 0: 56783 + 11,-4: + 0: 2047 + 11,-3: + 0: 63351 + 11,-2: + 0: 61135 + 11,-5: + 0: 47240 + 12,-4: + 0: 61661 + 12,-3: + 0: 65535 + 12,-2: + 0: 30511 + 12,-1: + 0: 62071 + 12,4: + 0: 28775 + 13,0: + 0: 4095 + 13,1: + 0: 57341 + 13,2: + 0: 53471 + 13,3: + 0: 3551 + 13,-1: + 0: 62071 + 13,4: + 0: 65535 + 14,0: + 0: 4095 + 14,1: + 0: 65535 + 14,2: + 0: 61951 + 14,3: + 0: 65535 + 14,-1: + 0: 61951 + 14,4: + 0: 65535 + 15,0: + 0: 4095 + 15,2: + 0: 65263 + 15,3: + 0: 57599 + 15,-1: + 0: 63078 + 15,1: + 0: 61166 + 15,4: + 0: 41198 + 16,0: + 0: 4095 + 16,2: + 0: 64799 + 16,3: + 0: 45823 + 12,-5: + 0: 56799 + 13,-4: + 0: 53503 + 13,-3: + 0: 61917 + 13,-2: + 0: 29439 + 13,-5: + 0: 65535 + 14,-4: + 0: 28791 + 14,-3: + 0: 61567 + 14,-2: + 0: 61695 + 14,-5: + 0: 32631 + 15,-4: + 0: 29691 + 15,-3: + 0: 30711 + 15,-2: + 0: 26239 + 15,-5: + 0: 46011 + 16,-4: + 0: 61627 + 16,-3: + 0: 28927 + 16,-2: + 0: 62071 + 16,-1: + 0: 63743 + 12,-8: + 0: 61166 + 11,-8: + 0: 65535 + 12,-7: + 0: 56828 + 11,-7: + 0: 65520 + 12,-6: + 0: 53725 + 11,-6: + 0: 3583 + 13,-8: + 0: 12287 + 13,-7: + 0: 65034 + 13,-6: + 0: 61678 + 14,-8: + 0: 60943 + 14,-7: + 0: 63246 + 14,-6: + 0: 28791 + 15,-8: + 0: 65327 + 15,-7: + 0: 64319 + 15,-6: + 0: 62399 + 15,-9: + 0: 32768 + 16,-8: + 0: 23879 + 16,-7: + 0: 48013 + 16,-6: + 0: 47283 + 16,-5: + 0: 47291 + 8,-8: + 0: 61056 + 7,-8: + 0: 65280 + 8,-7: + 0: 45940 + 7,-7: + 0: 7099 + 8,-6: + 0: 3007 + 7,-6: + 0: 4061 + 9,-8: + 0: 48048 + 9,-7: + 0: 61695 + 9,-6: + 0: 4095 + 10,-8: + 0: 47608 + 10,-7: + 0: 60083 + 10,-6: + 0: 3823 + 12,5: + 0: 56599 + 11,5: + 0: 45192 + 12,6: + 0: 56797 + 11,6: + 0: 63739 + 12,7: + 0: 53488 + 11,7: + 0: 62207 + 12,8: + 0: 221 + 13,5: + 0: 65295 + 13,6: + 0: 65535 + 13,7: + 0: 40400 + 13,8: + 0: 191 + 1: 16384 + 14,5: + 0: 61167 + 14,6: + 0: 61422 + 14,7: + 0: 60974 + 14,8: + 0: 255 + 15,6: + 0: 61576 + 1: 34 + 15,5: + 0: 34984 + 1: 8192 + 15,7: + 0: 57582 + 15,8: + 0: 35007 + 1: 4096 + 16,4: + 0: 45499 + 16,5: + 0: 12475 + 1: 32768 + 16,6: + 0: 12339 + 1: 34952 + 16,7: + 0: 12339 + 1: 34952 + 8,5: + 0: 57344 + 7,5: + 0: 61440 + 8,6: + 0: 59134 + 7,6: + 0: 4095 + 8,7: + 0: 48059 + 7,7: + 0: 57309 + 9,6: + 0: 28774 + 9,7: + 0: 30711 + 8,8: + 0: 8 + 9,5: + 0: 24576 + 9,8: + 0: 7 + 10,5: + 0: 61440 + 10,6: + 0: 61695 + 10,7: + 0: 46079 + 10,8: + 0: 139 + 11,8: + 0: 255 + 4,5: + 0: 65280 + 3,5: + 0: 61184 + 4,6: + 0: 8190 + 3,6: + 0: 43686 + 4,7: + 0: 255 + 3,7: + 0: 139 + 5,5: + 0: 65280 + 5,6: + 0: 61153 + 5,7: + 0: 3313 + 6,6: + 0: 11150 + 6,5: + 0: 57344 + 6,7: + 0: 3822 + 13,9: + 1: 17476 + 14,10: + 0: 26112 + 14,11: + 0: 102 + 14,9: + 1: 12 + 15,9: + 1: 2287 + 15,10: + 0: 64432 + 15,11: + 0: 35832 + 14,12: + 1: 36488 + 16,8: + 0: 547 + 1: 34952 + 16,9: + 1: 53233 + 16,10: + 0: 63280 + 1: 8 + 16,11: + 0: 30583 + 2,5: + 1: 1 + 0: 3072 + 2,6: + 0: 3822 + 2,7: + 0: 12 + 14,-11: + 0: 26214 + 15,-12: + 0: 63488 + 15,-11: + 0: 64511 + 15,-10: + 0: 15 + 16,-12: + 0: 65280 + 16,-11: + 0: 64509 + 16,-10: + 0: 3 + 16,-9: + 0: 31744 + 4,-7: + 0: 65535 + 3,-7: + 0: 61176 + 4,-6: + 0: 65535 + 3,-6: + 0: 65262 + 5,-7: + 0: 65126 + 5,-6: + 0: 61180 + 5,-8: + 0: 16384 + 6,-8: + 0: 45056 + 6,-7: + 0: 65167 + 6,-6: + 0: 3694 + 2,-7: + 0: 57536 + 2,-6: + 0: 49390 + 16,1: + 0: 36590 + 17,0: + 0: 4095 + 17,2: + 0: 8142 + 17,3: + 0: 47359 + 17,-1: + 0: 62549 + 17,1: + 1: 546 + 0: 34952 + 17,4: + 0: 47291 + 18,0: + 0: 4095 + 18,1: + 0: 30583 + 18,2: + 0: 53239 + 18,3: + 0: 4573 + 2: 49152 + 18,-1: + 0: 61692 + 18,4: + 0: 53521 + 2: 204 + 19,0: + 0: 65535 + 19,1: + 0: 65535 + 19,2: + 0: 56796 + 19,3: + 0: 36061 + 2: 4096 + 19,-1: + 0: 64733 + 19,4: + 2: 17 + 0: 56524 + 20,0: + 0: 48051 + 20,1: + 0: 48051 + 20,2: + 0: 49083 + 20,3: + 0: 3071 + 17,5: + 0: 187 + 1: 28672 + 17,6: + 3: 224 + 4: 57344 + 17,7: + 5: 57568 + 18,5: + 0: 61661 + 18,6: + 0: 61166 + 18,7: + 0: 61166 + 18,8: + 0: 65262 + 19,5: + 0: 61661 + 19,6: + 0: 65535 + 19,7: + 0: 65535 + 19,8: + 0: 65535 + 20,4: + 0: 30711 + 20,5: + 0: 45431 + 20,6: + 0: 48059 + 20,7: + 0: 48051 + 17,-12: + 0: 61312 + 17,-11: + 0: 65527 + 17,-9: + 0: 4032 + 17,-8: + 0: 1911 + 18,-11: + 0: 30576 + 18,-9: + 0: 65466 + 18,-12: + 0: 61152 + 18,-8: + 0: 1905 + 19,-12: + 0: 57308 + 19,-11: + 0: 49136 + 19,-9: + 0: 16376 + 19,-10: + 0: 61160 + 19,-8: + 0: 7103 + 19,-13: + 0: 32768 + 1: 3276 + 20,-12: + 0: 65535 + 20,-11: + 0: 49136 + 20,-10: + 0: 48059 + 20,-9: + 0: 4089 + 17,-7: + 0: 48059 + 17,-6: + 0: 47929 + 17,-5: + 0: 47931 + 17,-4: + 0: 25275 + 18,-7: + 0: 65535 + 18,-6: + 0: 65295 + 18,-5: + 0: 65359 + 18,-4: + 0: 61695 + 19,-7: + 0: 65535 + 19,-6: + 0: 65359 + 19,-5: + 0: 56655 + 19,-4: + 0: 56541 + 20,-8: + 0: 4095 + 20,-7: + 0: 61422 + 20,-6: + 0: 48910 + 20,-5: + 0: 64299 + 17,-3: + 0: 63078 + 17,-2: + 0: 21759 + 18,-3: + 0: 63740 + 18,-2: + 0: 63743 + 19,-3: + 0: 64733 + 19,-2: + 0: 56575 + 20,-4: + 0: 62395 + 20,-3: + 0: 15291 + 20,-2: + 0: 62463 + 20,-1: + 0: 48051 + 17,8: + 1: 28672 + 6: 224 + 17,9: + 1: 65300 + 17,10: + 0: 65280 + 1: 8 + 17,11: + 0: 65535 + 18,9: + 0: 207 + 1: 61696 + 18,10: + 1: 15 + 0: 64768 + 18,11: + 0: 53725 + 17,12: + 0: 8 + 1: 4096 + 18,12: + 0: 13 + 1: 17408 + 19,9: + 0: 58111 + 19,10: + 0: 48043 + 19,11: + 0: 60091 + 19,12: + 0: 206 + 20,8: + 0: 2219 + 5: 8704 + 20,9: + 0: 61576 + 1: 32 + 20,10: + 0: 65535 + 20,11: + 0: 65535 + 19,-15: + 1: 52972 + 19,-14: + 1: 52428 + 20,-15: + 1: 56785 + 20,-14: + 1: 4607 + 20,-13: + 1: 4095 + 0: 4096 + 16,12: + 1: 63616 + 15,12: + 1: 61440 + 18,13: + 1: 15 + 19,13: + 1: 241 + 20,12: + 0: 255 + 1: 8192 + 20,13: + 1: 114 + 21,0: + 0: 48057 + 21,1: + 0: 30576 + 21,2: + 0: 32631 + 21,3: + 0: 12287 + 21,-1: + 0: 46009 + 21,4: + 0: 65535 + 22,0: + 0: 65535 + 22,1: + 0: 65522 + 22,2: + 0: 4095 + 22,3: + 0: 2235 + 22,-1: + 0: 62207 + 23,1: + 0: 30576 + 23,2: + 0: 1911 + 23,3: + 0: 827 + 23,0: + 0: 26214 + 23,-1: + 0: 26214 + 24,0: + 0: 30583 + 24,1: + 0: 1911 + 24,2: + 0: 1911 + 21,-4: + 0: 47359 + 21,-3: + 0: 35771 + 21,-2: + 0: 62190 + 21,-5: + 0: 65327 + 22,-3: + 0: 61167 + 22,-2: + 0: 65038 + 23,-2: + 0: 28672 + 1: 2 + 24,-2: + 0: 28672 + 24,-1: + 0: 30583 + 21,-8: + 0: 4027 + 21,-7: + 0: 15355 + 21,-6: + 0: 65435 + 21,-9: + 0: 39867 + 22,-8: + 0: 36863 + 22,-7: + 0: 3003 + 22,-6: + 0: 45055 + 22,-5: + 0: 3822 + 23,-7: + 0: 12286 + 23,-5: + 0: 4095 + 23,-8: + 0: 61064 + 23,-6: + 0: 2190 + 1: 512 + 24,-5: + 0: 4095 + 21,-12: + 0: 30583 + 21,-11: + 0: 35761 + 21,-10: + 0: 48063 + 22,-12: + 0: 65407 + 22,-11: + 0: 60625 + 22,-13: + 0: 61440 + 23,-12: + 0: 65295 + 23,-11: + 0: 16380 + 23,-13: + 0: 65280 + 24,-12: + 0: 61422 + 21,-15: + 1: 13104 + 21,-14: + 1: 17 + 21,8: + 0: 19933 + 21,9: + 0: 61951 + 21,10: + 0: 30591 + 21,11: + 0: 30583 + 21,7: + 0: 56796 + 21,12: + 0: 17527 + 22,10: + 5: 65280 + 22,11: + 5: 65535 + 22,8: + 0: 238 + 22,12: + 5: 36863 + 22,7: + 0: 61166 + 23,10: + 5: 62208 + 23,11: + 5: 65535 + 23,7: + 0: 65535 + 23,12: + 5: 65535 + 23,8: + 0: 136 + 24,10: + 5: 61440 + 1: 17 + 24,11: + 5: 16383 + 21,13: + 0: 68 + 24,12: + 5: 65343 + 24,13: + 5: 15 + 1: 8704 + 23,14: + 1: 8 + 24,14: + 1: 15 + 21,5: + 0: 62719 + 21,6: + 0: 65535 + 22,6: + 0: 65262 + 22,5: + 0: 57344 + 23,6: + 0: 65528 + 23,5: + 0: 32768 + 24,3: + 1: 4352 + 24,4: + 1: 4369 + 24,-11: + 0: 3822 + 25,-12: + 0: 60665 + 25,-11: + 0: 14 + 25,-13: + 0: 49152 + 26,-12: + 0: 60622 + 26,-11: + 0: 238 + 26,-13: + 0: 60928 + 24,-8: + 0: 61152 + 24,-7: + 0: 61166 + 24,-6: + 0: 238 + 25,-5: + 0: 45055 + 26,-6: + 0: 64 + 24,5: + 1: 17 + 24,6: + 0: 61166 + 24,7: + 0: 61166 + 24,8: + 0: 14 + 1: 4096 + 26,6: + 0: 16384 + 24,9: + 1: 4369 + 25,11: + 1: 61152 + 0: 8 + 25,12: + 5: 1 + 1: 61166 + 25,10: + 0: 34816 + 26,11: + 0: 52974 + 26,12: + 0: 61164 + 24,-13: + 0: 3822 + 25,14: + 1: 15 + 25,13: + 5: 8 + 1: 34816 + 26,14: + 1: 3 + -21,-2: + 1: 32768 + -21,1: + 1: 2244 + 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: + - 0 + - 0 + - 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: + - 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: GasTileOverlay + - type: RadiationGridResistance + - type: NavMap + - type: BecomesStation + id: Normandy +- proto: AcousticGuitarInstrument + entities: + - uid: 3 + components: + - type: Transform + pos: 17.421593,-8.518656 + parent: 2 +- proto: AirAlarm + entities: + - uid: 5068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 4073 + - 6375 + - 6257 + - uid: 9626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 6253 + - 6254 + - 6374 + - 6373 + - 4075 + - 4074 + - uid: 11541 + components: + - type: Transform + pos: 84.5,28.5 + parent: 2 + - type: DeviceList + devices: + - 4031 + - 4026 + - 4025 + - 4024 + - 4023 + - 3986 + - 6322 + - 6203 + - uid: 11613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 3985 + - 6216 + - 6336 + - uid: 15261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 4211 + - 4207 + - 6421 + - 6306 + - 6422 + - 6305 + - uid: 15266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 4208 + - 4211 + - 4209 + - 6307 + - 6423 + - uid: 15268 + components: + - type: Transform + pos: -55.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 4209 + - 4210 + - 6308 + - 6425 + - uid: 15269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 4210 + - 6309 + - 6424 + - uid: 15270 + components: + - type: Transform + pos: -58.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 4206 + - 4204 + - 4203 + - 4208 + - 6310 + - 6426 + - uid: 15272 + components: + - type: Transform + pos: -61.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 4206 + - 4205 + - 4207 + - 6311 + - 6427 + - uid: 15285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 4205 + - 4204 + - 4203 + - 4202 + - 4201 + - 15289 + - 15288 + - uid: 15293 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 4198 + - 4197 + - 4196 + - 4201 + - 4202 + - 6304 + - 6420 + - uid: 15295 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 4196 + - 4197 + - 4198 + - 4192 + - 4193 + - 4194 + - 4195 + - 6419 + - 6303 + - uid: 15297 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 4169 + - 4168 + - 14568 + - 4166 + - 4192 + - 4193 + - 4194 + - 4195 + - 6418 + - 6302 + - uid: 15299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 3987 + - 4169 + - 4168 + - 14568 + - 4166 + - 4216 + - 13217 + - 13218 + - 13219 + - 6394 + - 6289 + - uid: 15302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 4170 + - 6399 + - 6283 + - uid: 15305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 4171 + - 6400 + - 6284 + - uid: 15313 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 4159 + - 4170 + - 4160 + - 4161 + - 4162 + - 4171 + - 4174 + - 4173 + - 4172 + - 6404 + - 6288 + - uid: 15315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 4173 + - 4174 + - 4176 + - 4175 + - 4177 + - 4178 + - 6403 + - 6287 + - uid: 15316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 4175 + - 4172 + - 6402 + - 6286 + - uid: 15318 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 4176 + - 6401 + - 6285 + - uid: 15319 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 4180 + - 6406 + - 6290 + - uid: 15320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-1.5 + parent: 2 + - uid: 15321 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 4179 + - 6291 + - 6407 + - uid: 15322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 4181 + - 6408 + - 6292 + - uid: 15325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 4179 + - 4177 + - 4178 + - 4181 + - 4180 + - 4182 + - 4186 + - 4185 + - 4184 + - 4183 + - 4187 + - 4188 + - 4190 + - 4191 + - 6413 + - 6297 + - uid: 15326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 4186 + - 6410 + - 6293 + - uid: 15327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 4185 + - 6411 + - 6294 + - uid: 15328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 4184 + - 6412 + - 6295 + - uid: 15329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 4183 + - 4187 + - 6414 + - 6300 + - uid: 15330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 4189 + - 6298 + - 6415 + - uid: 15331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 4188 + - 4189 + - 6299 + - 6416 + - uid: 15332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 4191 + - 6301 + - 6417 + - uid: 15333 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 + - type: DeviceList + devices: + - 4157 + - 4212 + - 4213 + - 15334 + - uid: 15335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 4158 + - 6395 + - 6279 + - uid: 15336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 12344 + - 12345 + - 12340 + - 12343 + - 3970 + - 3969 + - 3968 + - 3967 + - 3966 + - 3971 + - 3972 + - 6396 + - 6280 + - uid: 15338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 4212 + - 4213 + - 4152 + - 4153 + - 4154 + - 4155 + - 12206 + - 12207 + - 12208 + - 12209 + - 3978 + - 12306 + - 13219 + - 13218 + - 13217 + - 4216 + - 4159 + - 4160 + - 4161 + - 4162 + - 3968 + - 3969 + - 6282 + - 6398 + - 6278 + - 6393 + - uid: 15340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 12311 + - 12310 + - 12308 + - 12309 + - 4164 + - 4165 + - 6388 + - 6271 + - 6390 + - 6199 + - uid: 15342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 4154 + - 4155 + - 4153 + - 4152 + - 4136 + - 4137 + - 4138 + - 6276 + - 6275 + - uid: 15349 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 4130 + - 4131 + - 4134 + - 4135 + - 4138 + - 4137 + - 4136 + - 6277 + - 6274 + - uid: 15351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 4132 + - 4133 + - 4128 + - 4129 + - 6382 + - 6264 + - uid: 15353 + components: + - type: Transform + pos: 37.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 4128 + - 4127 + - 6383 + - 6265 + - uid: 15354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 4015 + - 4125 + - 4126 + - 6380 + - 6263 + - uid: 15356 + components: + - type: Transform + pos: 43.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 4125 + - 6262 + - 6381 + - uid: 15357 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 4139 + - 6272 + - 6391 + - uid: 15358 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 4148 + - 6387 + - 6266 + - uid: 15359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 4146 + - 4147 + - 4149 + - 4148 + - 4145 + - 4144 + - 15361 + - 15362 + - uid: 15363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 4149 + - 15365 + - 6385 + - 6268 + - uid: 15364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 4150 + - 15365 + - 6269 + - 6384 + - uid: 15366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 12209 + - 12208 + - 12207 + - 12206 + - 4135 + - 4134 + - 4131 + - 4214 + - 4139 + - 4146 + - 4147 + - 4132 + - 4133 + - 4122 + - 4123 + - 4124 + - 4151 + - 6281 + - 6397 + - uid: 15368 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 4214 + - 4165 + - 6273 + - 6392 + - uid: 15369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 6222 + - 6341 + - 4113 + - 4112 + - 4111 + - 4116 + - 4115 + - 4114 + - 4109 + - 4108 + - uid: 15371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 4117 + - 4114 + - 4115 + - 4116 + - 6344 + - 6225 + - uid: 15373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 4103 + - 4107 + - 4106 + - 4104 + - 4105 + - 6221 + - 6340 + - uid: 15374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 4109 + - 4108 + - 4117 + - 3964 + - 3965 + - 4104 + - 4105 + - 4603 + - 6766 + - uid: 15375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 4099 + - 4098 + - 6339 + - 6220 + - uid: 15376 + components: + - type: Transform + pos: 59.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 4100 + - 6219 + - 6338 + - uid: 15377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 4085 + - 4084 + - 6342 + - 6223 + - uid: 15378 + components: + - type: Transform + pos: 60.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 7786 + - 6217 + - 4103 + - 3965 + - 3964 + - 4098 + - 4097 + - 4101 + - 4102 + - 4086 + - 4085 + - 4082 + - 4083 + - uid: 15380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 4097 + - 6227 + - 6346 + - uid: 15382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 4084 + - 4081 + - 6218 + - 6337 + - uid: 15383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-9.5 + parent: 2 + - uid: 15385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 6347 + - 6228 + - 4086 + - uid: 15388 + components: + - type: Transform + pos: 63.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 6232 + - 6352 + - 4087 + - uid: 15389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 4088 + - 6233 + - 6351 + - uid: 15390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 4102 + - 4101 + - 4087 + - 4095 + - 4088 + - 4089 + - 4090 + - 4092 + - 4091 + - 4093 + - 6429 + - 6313 + - uid: 15391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-26.5 + parent: 2 + - type: DeviceList + devices: + - 4093 + - 4094 + - 6348 + - 6229 + - uid: 15392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 4095 + - 4096 + - 6353 + - 6234 + - 6224 + - 6320 + - 6354 + - 6235 + - uid: 15394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,-26.5 + parent: 2 + - type: DeviceList + devices: + - 4090 + - 4089 + - 6231 + - 6349 + - uid: 15395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-30.5 + parent: 2 + - type: DeviceList + devices: + - 4092 + - 4091 + - 15396 + - 6230 + - 6350 + - uid: 15398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 4012 + - 4011 + - 4013 + - 4014 + - 4005 + - 4004 + - 4003 + - 4006 + - 4007 + - 4008 + - 6200 + - 6355 + - uid: 15400 + components: + - type: Transform + pos: 53.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 4122 + - 4123 + - 4124 + - 4015 + - 4113 + - 4112 + - 4111 + - 4106 + - 4107 + - 4014 + - 4013 + - 4011 + - 4012 + - 4100 + - 4099 + - 4118 + - 4119 + - 4121 + - 4120 + - 6379 + - 6261 + - uid: 15402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 4005 + - 4004 + - 4003 + - 4002 + - 4001 + - 6246 + - 6357 + - uid: 15404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 4010 + - 4009 + - 4006 + - 4007 + - 4008 + - 6356 + - 6245 + - uid: 15406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,14.5 + parent: 2 + - type: DeviceList + devices: + - 4002 + - 3961 + - 3962 + - 3963 + - 4010 + - 3991 + - 3990 + - 3989 + - 3988 + - 3992 + - 3993 + - 6241 + - 6358 + - 6242 + - 6362 + - 6318 + - 6435 + - uid: 15409 + components: + - type: Transform + pos: 53.5,28.5 + parent: 2 + - type: DeviceList + devices: + - 3988 + - 3989 + - 3990 + - 3991 + - 6363 + - 6243 + - uid: 15414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 3992 + - 6364 + - 6244 + - uid: 15415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 6361 + - 6236 + - 3995 + - 3994 + - uid: 15416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 3995 + - 3996 + - 6237 + - 6360 + - uid: 15420 + components: + - type: Transform + pos: 66.5,14.5 + parent: 2 + - type: DeviceList + devices: + - 3961 + - 3962 + - 3963 + - 3996 + - 4001 + - 4000 + - 3997 + - 3998 + - 3999 + - 6240 + - 6432 + - 6239 + - 6359 + - uid: 15423 + components: + - type: Transform + pos: 73.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 3999 + - 6315 + - 6431 + - uid: 15424 + components: + - type: Transform + pos: 71.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 3998 + - 3997 + - 6238 + - 6365 + - uid: 15425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 15422 + - uid: 15426 + components: + - type: Transform + pos: 70.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 4118 + - 4119 + - 4120 + - 4121 + - 4083 + - 4082 + - 4081 + - 4080 + - 4056 + - 4055 + - 4054 + - 4053 + - 6378 + - 6260 + - uid: 15428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 4052 + - 4051 + - 4050 + - 4049 + - 4056 + - 4055 + - 4054 + - 4053 + - 4045 + - 4046 + - 4047 + - 4048 + - 6428 + - 6312 + - uid: 15431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 4045 + - 4046 + - 4047 + - 4048 + - 4032 + - 4033 + - 4034 + - 4029 + - 6366 + - 6248 + - uid: 15437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 4032 + - 4035 + - 4036 + - 4037 + - 4038 + - 4039 + - 4033 + - 4034 + - 4030 + - 6332 + - 6212 + - uid: 15438 + components: + - type: Transform + pos: 87.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 4028 + - 4030 + - 4031 + - 10329 + - uid: 15440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 4040 + - 4039 + - 4038 + - 4037 + - 4036 + - 4035 + - 6213 + - 6333 + - uid: 15441 + components: + - type: Transform + pos: 90.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 4041 + - 4043 + - 4042 + - 6331 + - 6211 + - uid: 15442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 4029 + - 4028 + - 4027 + - 6319 + - 6247 + - uid: 15445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 15453 + - uid: 15468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 4026 + - 4025 + - 4024 + - 4023 + - 6323 + - 6202 + - uid: 15478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 6314 + - 6430 + - 3986 + - 4016 + - uid: 15479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,38.5 + parent: 2 + - type: DeviceList + devices: + - 15455 + - 4016 + - 12166 + - 6204 + - 6324 + - uid: 15485 + components: + - type: Transform + pos: 76.5,46.5 + parent: 2 + - type: DeviceList + devices: + - 12169 + - 12166 + - 4018 + - 6209 + - 6325 + - uid: 15486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 4018 + - 4019 + - 6326 + - 6208 + - uid: 15487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,44.5 + parent: 2 + - type: DeviceList + devices: + - 4019 + - 4020 + - 4021 + - 6207 + - 6327 + - uid: 15490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 4052 + - 4051 + - 4050 + - 4049 + - 4057 + - 4058 + - 4059 + - 4060 + - 4061 + - 4062 + - 4063 + - 4044 + - 6249 + - 6367 + - uid: 15497 + components: + - type: Transform + pos: 71.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 4079 + - 4076 + - 4077 + - 4078 + - 4059 + - 4058 + - 4057 + - 6377 + - 6259 + - uid: 15499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 4077 + - 6335 + - 6214 + - uid: 15500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 4078 + - 6334 + - 6215 + - uid: 15501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 4076 + - 15504 + - 15502 + - uid: 15505 + components: + - type: Transform + pos: 86.5,-13.5 + parent: 2 + - uid: 15516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 12241 + - 4065 + - 12247 + - 4063 + - 4062 + - 4061 + - 4060 + - 3985 + - 6376 + - 6258 + - uid: 15529 + components: + - type: Transform + pos: 75.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 4066 + - 6251 + - 6370 + - uid: 15538 + components: + - type: Transform + pos: 75.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 4070 + - 4069 + - 4064 + - 4065 + - 4066 + - 6369 + - 6252 + - uid: 15539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 4069 + - 4071 + - 4067 + - 4074 + - 4075 + - 6255 + - 6372 + - uid: 15540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,-23.5 + parent: 2 + - type: DeviceList + devices: + - 4215 + - 4072 + - 4070 + - 6433 + - 6316 + - uid: 15541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 4071 + - 4073 + - 4072 + - 6256 + - 6371 +- proto: AirCanister + entities: + - uid: 4 + components: + - type: Transform + pos: 78.5,21.5 + parent: 2 + - uid: 5 + components: + - type: Transform + pos: 78.5,20.5 + parent: 2 + - uid: 6 + components: + - type: Transform + anchored: True + pos: 52.5,-12.5 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + bodyType: Static + - uid: 7 + components: + - type: Transform + pos: 78.5,19.5 + parent: 2 +- proto: Airlock + entities: + - uid: 8 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-5.5 + parent: 2 + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-9.5 + parent: 2 + - uid: 10 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-10.5 + parent: 2 + - uid: 11 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-12.5 + parent: 2 + - uid: 12 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-4.5 + parent: 2 + - uid: 13 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-2.5 + parent: 2 + - uid: 12175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,43.5 + parent: 2 + - uid: 12176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,45.5 + parent: 2 +- proto: AirlockArmoryGlassLocked + entities: + - uid: 14 + components: + - type: Transform + pos: -39.5,-0.5 + parent: 2 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 12202 + components: + - type: Transform + pos: 80.5,22.5 + parent: 2 + - uid: 12203 + components: + - type: Transform + pos: 83.5,17.5 + parent: 2 + - uid: 12204 + components: + - type: Transform + pos: 79.5,15.5 + parent: 2 +- proto: AirlockBarLocked + entities: + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 2 +- proto: AirlockCaptainLocked + entities: + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,8.5 + parent: 2 + - uid: 17 + components: + - type: Transform + pos: -54.5,6.5 + parent: 2 +- proto: AirlockCargoGlassLocked + entities: + - uid: 18 + components: + - type: Transform + pos: 81.5,-18.5 + parent: 2 + - uid: 19 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-22.5 + parent: 2 + - uid: 20 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-21.5 + parent: 2 +- proto: AirlockCargoLocked + entities: + - uid: 21 + components: + - type: Transform + pos: 74.5,-18.5 + parent: 2 +- proto: AirlockChapelLocked + entities: + - uid: 22 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 +- proto: AirlockChemistryGlassLocked + entities: + - uid: 23 + components: + - type: Transform + pos: 49.5,-6.5 + parent: 2 +- proto: AirlockChiefEngineerLocked + entities: + - uid: 47 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,41.5 + parent: 2 + - uid: 12172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,43.5 + parent: 2 + - uid: 12173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,46.5 + parent: 2 + - uid: 12174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,43.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerGlassLocked + entities: + - uid: 24 + components: + - type: Transform + pos: 59.5,-11.5 + parent: 2 +- proto: AirlockCommandGlassLocked + entities: + - uid: 27 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 28 + components: + - type: Transform + pos: -49.5,-8.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: -49.5,-6.5 + parent: 2 + - uid: 30 + components: + - type: Transform + pos: -52.5,-5.5 + parent: 2 +- proto: AirlockCommandLocked + entities: + - uid: 25 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,4.5 + parent: 2 + - uid: 26 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,7.5 + parent: 2 + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-5.5 + parent: 2 + - uid: 32 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-7.5 + parent: 2 + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-5.5 + parent: 2 + - uid: 34 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,-1.5 + parent: 2 + - uid: 35 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,4.5 + parent: 2 + - uid: 36 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,-4.5 + parent: 2 + - uid: 37 + components: + - type: Transform + pos: 84.5,0.5 + parent: 2 + - uid: 38 + components: + - type: Transform + pos: 84.5,-3.5 + parent: 2 +- proto: AirlockCorpsmanGlassLocked + entities: + - uid: 39 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 +- proto: AirlockDetectiveLocked + entities: + - uid: 40 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 +- proto: AirlockEngineeringLocked + entities: + - uid: 41 + components: + - type: Transform + pos: -27.5,10.5 + parent: 2 + - uid: 42 + components: + - type: Transform + pos: 53.5,-28.5 + parent: 2 + - uid: 3957 + components: + - type: Transform + pos: 85.5,15.5 + parent: 2 + - uid: 3958 + components: + - type: Transform + pos: 82.5,10.5 + parent: 2 + - uid: 11607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,31.5 + parent: 2 + - uid: 11608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,16.5 + parent: 2 + - uid: 11609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 2 + - uid: 11610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,11.5 + parent: 2 + - uid: 11634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-31.5 + parent: 2 + - uid: 12182 + components: + - type: Transform + pos: 87.5,10.5 + parent: 2 + - uid: 12197 + components: + - type: Transform + pos: 86.5,22.5 + parent: 2 + - uid: 12198 + components: + - type: Transform + pos: 88.5,27.5 + parent: 2 + - uid: 12199 + components: + - type: Transform + pos: 86.5,35.5 + parent: 2 + - uid: 12200 + components: + - type: Transform + pos: 84.5,38.5 + parent: 2 + - uid: 13334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 2 + - uid: 13344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-26.5 + parent: 2 +- proto: AirlockExternal + entities: + - uid: 43 + components: + - type: Transform + pos: -17.5,13.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 2 + - uid: 45 + components: + - type: Transform + pos: -15.5,13.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 +- proto: AirlockExternalAtmosphericsLocked + entities: + - uid: 48 + components: + - type: Transform + pos: 77.5,38.5 + parent: 2 + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,33.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: 76.5,40.5 + parent: 2 + - uid: 103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 103.5,44.5 + parent: 2 + - uid: 243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 103.5,42.5 + parent: 2 + - uid: 12102 + components: + - type: Transform + pos: 78.5,39.5 + parent: 2 +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,33.5 + parent: 2 + - uid: 55 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,35.5 + parent: 2 + - uid: 4619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,50.5 + parent: 2 +- proto: AirlockExternalGlassAtmosphericsLocked + entities: + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 100.5,48.5 + parent: 2 + - uid: 4316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,48.5 + parent: 2 +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 56 + components: + - type: Transform + pos: 91.5,-20.5 + parent: 2 + - uid: 57 + components: + - type: Transform + pos: 89.5,-20.5 + parent: 2 +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,15.5 + parent: 2 + - uid: 59 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,15.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 60 + components: + - type: Transform + pos: -17.5,-13.5 + parent: 2 + - uid: 61 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,53.5 + parent: 2 +- proto: AirlockExternalSalvageLocked + entities: + - uid: 63 + components: + - type: Transform + pos: 79.5,-48.5 + parent: 2 + - uid: 64 + components: + - type: Transform + pos: 80.5,-48.5 + parent: 2 +- proto: AirlockFreezer + entities: + - uid: 12131 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 12132 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 65 + components: + - type: Transform + pos: 69.5,-13.5 + parent: 2 + - uid: 3976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,3.5 + parent: 2 + - uid: 12321 + components: + - type: Transform + pos: 82.5,-12.5 + parent: 2 +- proto: AirlockGlassShuttle + entities: + - uid: 67 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 103.5,-16.5 + parent: 2 + - uid: 68 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 101.5,-16.5 + parent: 2 +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 69 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 70 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-5.5 + parent: 2 + - uid: 71 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-6.5 + parent: 2 +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 72 + components: + - type: Transform + pos: -26.5,6.5 + parent: 2 +- proto: AirlockHydroGlassLocked + entities: + - uid: 12145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,3.5 + parent: 2 +- proto: AirlockJanitorLocked + entities: + - uid: 73 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-1.5 + parent: 2 +- proto: AirlockKitchenGlassLocked + entities: + - uid: 12143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,4.5 + parent: 2 +- proto: AirlockKitchenLocked + entities: + - uid: 12139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 +- proto: AirlockLawyerLocked + entities: + - uid: 74 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 +- proto: AirlockLibraryLocked + entities: + - uid: 76 + components: + - type: Transform + pos: 42.5,11.5 + parent: 2 +- proto: AirlockMailGlassLocked + entities: + - uid: 77 + components: + - type: Transform + pos: 85.5,-18.5 + parent: 2 +- proto: AirlockMaint + entities: + - uid: 78 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-33.5 + parent: 2 + - uid: 79 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-34.5 + parent: 2 + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-40.5 + parent: 2 + - uid: 2603 + components: + - type: Transform + pos: 78.5,-31.5 + parent: 2 + - uid: 12425 + components: + - type: Transform + pos: 88.5,-11.5 + parent: 2 + - uid: 12543 + components: + - type: Transform + pos: 45.5,30.5 + parent: 2 + - uid: 13256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-23.5 + parent: 2 + - uid: 13257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-23.5 + parent: 2 + - uid: 13373 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - uid: 13374 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 2 + - uid: 13478 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 2 + - uid: 13528 + components: + - type: Transform + pos: 42.5,-30.5 + parent: 2 + - uid: 14262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,-45.5 + parent: 2 + - uid: 14276 + components: + - type: Transform + pos: 101.5,-46.5 + parent: 2 + - uid: 14313 + components: + - type: Transform + pos: 103.5,-47.5 + parent: 2 + - uid: 14485 + components: + - type: Transform + pos: 86.5,-29.5 + parent: 2 + - uid: 14607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,26.5 + parent: 2 + - uid: 14797 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - uid: 14993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,25.5 + parent: 2 +- proto: AirlockMaintBarLocked + entities: + - uid: 12334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 +- proto: AirlockMaintCargoLocked + entities: + - uid: 82 + components: + - type: Transform + pos: 87.5,-13.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: 76.5,-28.5 + parent: 2 +- proto: AirlockMaintChapelLocked + entities: + - uid: 84 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 +- proto: AirlockMaintCommandLocked + entities: + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-4.5 + parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 86 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 +- proto: AirlockMaintHydroLocked + entities: + - uid: 12144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,11.5 + parent: 2 +- proto: AirlockMaintLocked + entities: + - uid: 87 + components: + - type: Transform + pos: -19.5,11.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 + - uid: 89 + components: + - type: Transform + pos: 68.5,-23.5 + parent: 2 + - uid: 90 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 92 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 2 + - uid: 93 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 94 + components: + - type: Transform + pos: 40.5,12.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: 70.5,-5.5 + parent: 2 + - uid: 97 + components: + - type: Transform + pos: 70.5,-1.5 + parent: 2 + - uid: 98 + components: + - type: Transform + pos: 82.5,-4.5 + parent: 2 + - uid: 15301 + components: + - type: Transform + pos: 84.5,-32.5 + parent: 2 + - uid: 15303 + components: + - type: Transform + pos: 86.5,-39.5 + parent: 2 +- proto: AirlockMaintMedLocked + entities: + - uid: 99 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-24.5 + parent: 2 + - uid: 100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-19.5 + parent: 2 + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-30.5 + parent: 2 +- proto: AirlockMaintRnDLocked + entities: + - uid: 102 + components: + - type: Transform + pos: 45.5,13.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 +- proto: AirlockMaintSecLocked + entities: + - uid: 104 + components: + - type: Transform + pos: -35.5,9.5 + parent: 2 +- proto: AirlockMantisLocked + entities: + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,27.5 + parent: 2 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-1.5 + parent: 2 + - uid: 107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-14.5 + parent: 2 + - uid: 108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-20.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: 62.5,-23.5 + parent: 2 + - uid: 110 + components: + - type: Transform + pos: 60.5,-26.5 + parent: 2 + - uid: 112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-1.5 + parent: 2 + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-8.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 2 + - uid: 115 + components: + - type: Transform + pos: 53.5,-5.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: 53.5,-1.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: 63.5,-10.5 + parent: 2 + - uid: 118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-7.5 + parent: 2 + - uid: 119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-24.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: 61.5,-26.5 + parent: 2 + - uid: 121 + components: + - type: Transform + pos: 59.5,-24.5 + parent: 2 + - uid: 238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-7.5 + parent: 2 +- proto: AirlockMedicalLocked + entities: + - uid: 122 + components: + - type: Transform + pos: 59.5,-17.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: 56.5,-1.5 + parent: 2 + - uid: 124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-1.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: 65.5,-5.5 + parent: 2 +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,-25.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: 84.5,-22.5 + parent: 2 +- proto: AirlockQuartermasterLocked + entities: + - uid: 128 + components: + - type: Transform + pos: 86.5,-26.5 + parent: 2 +- proto: AirlockReporterGlassLocked + entities: + - uid: 129 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 2 +- proto: AirlockResearchDirectorLocked + entities: + - uid: 130 + components: + - type: Transform + pos: 65.5,14.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: 64.5,18.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: 63.5,22.5 + parent: 2 +- proto: AirlockSalvageLocked + entities: + - uid: 133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-43.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: 77.5,-45.5 + parent: 2 +- proto: AirlockScienceGlass + entities: + - uid: 135 + components: + - type: Transform + pos: 71.5,14.5 + parent: 2 + - uid: 136 + components: + - type: Transform + pos: 72.5,14.5 + parent: 2 +- proto: AirlockScienceLocked + entities: + - uid: 137 + components: + - type: Transform + pos: 60.5,8.5 + parent: 2 + - uid: 138 + components: + - type: Transform + pos: 56.5,10.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: 53.5,8.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: 53.5,12.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 69.5,10.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: 65.5,8.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: 67.5,7.5 + parent: 2 + - uid: 14713 + components: + - type: Transform + pos: 46.5,25.5 + parent: 2 +- proto: AirlockSecurity + entities: + - uid: 144 + components: + - type: Transform + pos: -38.5,6.5 + parent: 2 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 463: [] + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-1.5 + parent: 2 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-1.5 + parent: 2 + - uid: 148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,1.5 + parent: 2 + - uid: 149 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: -41.5,6.5 + parent: 2 +- proto: AirlockSecurityLawyerGlassLocked + entities: + - uid: 152 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: -13.5,2.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 2 +- proto: AirlockSecurityLawyerLocked + entities: + - uid: 156 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 +- proto: AirlockShuttle + entities: + - uid: 15469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-57.5 + parent: 2 + - uid: 15471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-58.5 + parent: 2 +- proto: AirlockTheatreLocked + entities: + - uid: 160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 2 + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 2 +- proto: AirSensor + entities: + - uid: 10329 + components: + - type: Transform + pos: 87.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15438 + - uid: 15334 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15333 + - uid: 15422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15425 + - uid: 15453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15445 + - uid: 15502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15501 +- proto: AltarConvertFestival + entities: + - uid: 12935 + components: + - type: Transform + pos: 34.5,13.5 + parent: 2 +- proto: AltarSpawner + entities: + - uid: 162 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 + - uid: 163 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 +- proto: AltarToolbox + entities: + - uid: 12357 + components: + - type: Transform + pos: 69.5,-18.5 + parent: 2 +- proto: AmeJar + entities: + - uid: 166 + components: + - type: Transform + parent: 3262 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 167 + components: + - type: Transform + parent: 3262 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: AnomalyScanner + entities: + - uid: 168 + components: + - type: Transform + pos: 74.63379,6.9812365 + parent: 2 + - uid: 169 + components: + - type: Transform + pos: 74.60251,7.2624865 + parent: 2 + - uid: 170 + components: + - type: Transform + pos: 74.571236,7.5437365 + parent: 2 +- proto: APCBasic + entities: + - uid: 171 + components: + - type: Transform + pos: -46.5,4.5 + parent: 2 + - uid: 172 + components: + - type: Transform + pos: -42.5,4.5 + parent: 2 + - uid: 173 + components: + - type: Transform + pos: 59.5,-26.5 + parent: 2 + - uid: 174 + components: + - type: Transform + pos: 56.5,-5.5 + parent: 2 + - uid: 175 + components: + - type: Transform + pos: 65.5,-9.5 + parent: 2 + - uid: 176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-7.5 + parent: 2 + - uid: 177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-21.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: 55.5,-9.5 + parent: 2 + - uid: 179 + components: + - type: Transform + pos: 54.5,-13.5 + parent: 2 + - uid: 180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-26.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 2 + - uid: 182 + components: + - type: Transform + pos: 47.5,-1.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: -68.5,9.5 + parent: 2 + - uid: 185 + components: + - type: Transform + pos: -63.5,-2.5 + parent: 2 + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,0.5 + parent: 2 + - uid: 187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,6.5 + parent: 2 + - uid: 188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 2 + - uid: 189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-1.5 + parent: 2 + - uid: 190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - uid: 191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,8.5 + parent: 2 + - uid: 192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,8.5 + parent: 2 + - uid: 193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,9.5 + parent: 2 + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,9.5 + parent: 2 + - uid: 195 + components: + - type: Transform + pos: 45.5,3.5 + parent: 2 + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,21.5 + parent: 2 + - uid: 197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,22.5 + parent: 2 + - uid: 198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,18.5 + parent: 2 + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,13.5 + parent: 2 + - uid: 200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,10.5 + parent: 2 + - uid: 201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,11.5 + parent: 2 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-5.5 + parent: 2 + - uid: 203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,0.5 + parent: 2 + - uid: 204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-1.5 + parent: 2 + - uid: 205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-11.5 + parent: 2 + - uid: 206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-28.5 + parent: 2 + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,-24.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: 88.5,-20.5 + parent: 2 + - uid: 209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,-26.5 + parent: 2 + - uid: 11653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,-43.5 + parent: 2 + - uid: 11690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,-3.5 + parent: 2 + - uid: 11769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,11.5 + parent: 2 + - uid: 11770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,22.5 + parent: 2 + - uid: 11847 + components: + - type: Transform + pos: 62.5,33.5 + parent: 2 + - uid: 11873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,28.5 + parent: 2 + - uid: 11924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,38.5 + parent: 2 + - uid: 12027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,44.5 + parent: 2 + - uid: 12850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-30.5 + parent: 2 + - uid: 12882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,17.5 + parent: 2 + - uid: 13789 + components: + - type: Transform + pos: 70.5,-39.5 + parent: 2 + - uid: 13926 + components: + - type: Transform + pos: 54.5,-28.5 + parent: 2 + - uid: 14235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 104.5,-45.5 + parent: 2 + - uid: 14676 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 14680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,25.5 + parent: 2 + - uid: 14983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,28.5 + parent: 2 +- proto: APCElectronics + entities: + - uid: 211 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 212 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 213 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: AppraisalTool + entities: + - uid: 237 + components: + - type: Transform + pos: 57.527363,9.592978 + parent: 2 + - uid: 13525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.820427,-28.46615 + parent: 2 +- proto: AtmosDeviceFanTiny + entities: + - uid: 239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,53.5 + parent: 2 + - uid: 240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,40.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 2 + - uid: 242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,33.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: -17.5,-13.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: -17.5,15.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: -15.5,15.5 + parent: 2 + - uid: 247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 101.5,-16.5 + parent: 2 + - uid: 248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 103.5,-16.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: 80.5,-48.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: 79.5,-48.5 + parent: 2 + - uid: 251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,35.5 + parent: 2 + - uid: 252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,11.5 + parent: 2 + - uid: 253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,8.5 + parent: 2 + - uid: 4356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,48.5 + parent: 2 + - uid: 6180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,47.5 + parent: 2 + - uid: 14633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,27.5 + parent: 2 +- proto: AtmosFixBlockerMarker + entities: + - uid: 52 + components: + - type: Transform + pos: 96.5,48.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: 89.5,43.5 + parent: 2 + - uid: 255 + components: + - type: Transform + pos: 88.5,44.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: 88.5,46.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: 88.5,47.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: 88.5,50.5 + parent: 2 + - uid: 259 + components: + - type: Transform + pos: 88.5,45.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: 89.5,42.5 + parent: 2 + - uid: 261 + components: + - type: Transform + pos: 88.5,48.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: 88.5,49.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: 69.5,29.5 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: 70.5,29.5 + parent: 2 + - uid: 265 + components: + - type: Transform + pos: 71.5,29.5 + parent: 2 + - uid: 266 + components: + - type: Transform + pos: 71.5,31.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: 70.5,31.5 + parent: 2 + - uid: 268 + components: + - type: Transform + pos: 69.5,31.5 + parent: 2 + - uid: 269 + components: + - type: Transform + pos: 81.5,34.5 + parent: 2 + - uid: 270 + components: + - type: Transform + pos: 81.5,35.5 + parent: 2 + - uid: 1595 + components: + - type: Transform + pos: 96.5,49.5 + parent: 2 + - uid: 1599 + components: + - type: Transform + pos: 97.5,47.5 + parent: 2 + - uid: 1600 + components: + - type: Transform + pos: 97.5,49.5 + parent: 2 + - uid: 1601 + components: + - type: Transform + pos: 97.5,48.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + pos: 97.5,45.5 + parent: 2 + - uid: 2270 + components: + - type: Transform + pos: 93.5,42.5 + parent: 2 + - uid: 2271 + components: + - type: Transform + pos: 93.5,43.5 + parent: 2 + - uid: 2272 + components: + - type: Transform + pos: 97.5,46.5 + parent: 2 + - uid: 2273 + components: + - type: Transform + pos: 93.5,46.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: 93.5,44.5 + parent: 2 + - uid: 2280 + components: + - type: Transform + pos: 94.5,45.5 + parent: 2 + - uid: 2281 + components: + - type: Transform + pos: 93.5,47.5 + parent: 2 + - uid: 2282 + components: + - type: Transform + pos: 93.5,45.5 + parent: 2 + - uid: 2808 + components: + - type: Transform + pos: 94.5,46.5 + parent: 2 + - uid: 2809 + components: + - type: Transform + pos: 99.5,50.5 + parent: 2 + - uid: 2810 + components: + - type: Transform + pos: 99.5,51.5 + parent: 2 + - uid: 2811 + components: + - type: Transform + pos: 99.5,52.5 + parent: 2 + - uid: 2812 + components: + - type: Transform + pos: 98.5,50.5 + parent: 2 + - uid: 3269 + components: + - type: Transform + pos: 88.5,42.5 + parent: 2 + - uid: 4312 + components: + - type: Transform + pos: 95.5,48.5 + parent: 2 + - uid: 4313 + components: + - type: Transform + pos: 91.5,48.5 + parent: 2 + - uid: 4314 + components: + - type: Transform + pos: 88.5,43.5 + parent: 2 + - uid: 4337 + components: + - type: Transform + pos: 89.5,44.5 + parent: 2 + - uid: 4338 + components: + - type: Transform + pos: 89.5,46.5 + parent: 2 + - uid: 4339 + components: + - type: Transform + pos: 89.5,47.5 + parent: 2 + - uid: 4340 + components: + - type: Transform + pos: 89.5,45.5 + parent: 2 + - uid: 4341 + components: + - type: Transform + pos: 89.5,48.5 + parent: 2 + - uid: 4342 + components: + - type: Transform + pos: 89.5,49.5 + parent: 2 + - uid: 4357 + components: + - type: Transform + pos: 96.5,51.5 + parent: 2 + - uid: 4359 + components: + - type: Transform + pos: 96.5,47.5 + parent: 2 + - uid: 4606 + components: + - type: Transform + pos: 89.5,50.5 + parent: 2 + - uid: 4607 + components: + - type: Transform + pos: 90.5,42.5 + parent: 2 + - uid: 4608 + components: + - type: Transform + pos: 90.5,45.5 + parent: 2 + - uid: 4609 + components: + - type: Transform + pos: 94.5,47.5 + parent: 2 + - uid: 4610 + components: + - type: Transform + pos: 96.5,43.5 + parent: 2 + - uid: 4611 + components: + - type: Transform + pos: 96.5,44.5 + parent: 2 + - uid: 4612 + components: + - type: Transform + pos: 94.5,48.5 + parent: 2 + - uid: 4613 + components: + - type: Transform + pos: 97.5,50.5 + parent: 2 + - uid: 4614 + components: + - type: Transform + pos: 96.5,50.5 + parent: 2 + - uid: 4615 + components: + - type: Transform + pos: 90.5,43.5 + parent: 2 + - uid: 4616 + components: + - type: Transform + pos: 90.5,44.5 + parent: 2 + - uid: 4618 + components: + - type: Transform + pos: 90.5,46.5 + parent: 2 + - uid: 4678 + components: + - type: Transform + pos: 95.5,50.5 + parent: 2 + - uid: 4679 + components: + - type: Transform + pos: 96.5,52.5 + parent: 2 + - uid: 4681 + components: + - type: Transform + pos: 97.5,52.5 + parent: 2 + - uid: 4682 + components: + - type: Transform + pos: 98.5,51.5 + parent: 2 + - uid: 4683 + components: + - type: Transform + pos: 98.5,52.5 + parent: 2 + - uid: 6179 + components: + - type: Transform + pos: 97.5,51.5 + parent: 2 + - uid: 6226 + components: + - type: Transform + pos: 94.5,49.5 + parent: 2 + - uid: 6321 + components: + - type: Transform + pos: 94.5,51.5 + parent: 2 + - uid: 6765 + components: + - type: Transform + pos: 95.5,51.5 + parent: 2 + - uid: 6770 + components: + - type: Transform + pos: 94.5,50.5 + parent: 2 + - uid: 6771 + components: + - type: Transform + pos: 92.5,50.5 + parent: 2 + - uid: 6772 + components: + - type: Transform + pos: 90.5,49.5 + parent: 2 + - uid: 6773 + components: + - type: Transform + pos: 91.5,42.5 + parent: 2 + - uid: 6774 + components: + - type: Transform + pos: 99.5,44.5 + parent: 2 + - uid: 6775 + components: + - type: Transform + pos: 91.5,49.5 + parent: 2 + - uid: 6776 + components: + - type: Transform + pos: 92.5,43.5 + parent: 2 + - uid: 6777 + components: + - type: Transform + pos: 91.5,46.5 + parent: 2 + - uid: 6779 + components: + - type: Transform + pos: 95.5,47.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + pos: 95.5,43.5 + parent: 2 + - uid: 6781 + components: + - type: Transform + pos: 97.5,43.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + pos: 99.5,45.5 + parent: 2 + - uid: 6914 + components: + - type: Transform + pos: 92.5,51.5 + parent: 2 + - uid: 6916 + components: + - type: Transform + pos: 92.5,45.5 + parent: 2 + - uid: 6917 + components: + - type: Transform + pos: 95.5,45.5 + parent: 2 + - uid: 6918 + components: + - type: Transform + pos: 93.5,50.5 + parent: 2 + - uid: 8065 + components: + - type: Transform + pos: 96.5,45.5 + parent: 2 + - uid: 8067 + components: + - type: Transform + pos: 90.5,47.5 + parent: 2 + - uid: 8068 + components: + - type: Transform + pos: 98.5,43.5 + parent: 2 + - uid: 8069 + components: + - type: Transform + pos: 92.5,48.5 + parent: 2 + - uid: 8070 + components: + - type: Transform + pos: 91.5,47.5 + parent: 2 + - uid: 8071 + components: + - type: Transform + pos: 93.5,48.5 + parent: 2 + - uid: 8072 + components: + - type: Transform + pos: 93.5,51.5 + parent: 2 + - uid: 8073 + components: + - type: Transform + pos: 98.5,44.5 + parent: 2 + - uid: 8074 + components: + - type: Transform + pos: 94.5,44.5 + parent: 2 + - uid: 8076 + components: + - type: Transform + pos: 92.5,47.5 + parent: 2 + - uid: 8077 + components: + - type: Transform + pos: 90.5,48.5 + parent: 2 + - uid: 8078 + components: + - type: Transform + pos: 98.5,46.5 + parent: 2 + - uid: 8079 + components: + - type: Transform + pos: 95.5,44.5 + parent: 2 + - uid: 8080 + components: + - type: Transform + pos: 98.5,45.5 + parent: 2 + - uid: 8081 + components: + - type: Transform + pos: 94.5,43.5 + parent: 2 + - uid: 8107 + components: + - type: Transform + pos: 92.5,49.5 + parent: 2 + - uid: 8305 + components: + - type: Transform + pos: 99.5,43.5 + parent: 2 + - uid: 8420 + components: + - type: Transform + pos: 97.5,44.5 + parent: 2 + - uid: 8423 + components: + - type: Transform + pos: 93.5,49.5 + parent: 2 + - uid: 8683 + components: + - type: Transform + pos: 91.5,43.5 + parent: 2 + - uid: 8701 + components: + - type: Transform + pos: 90.5,50.5 + parent: 2 + - uid: 9102 + components: + - type: Transform + pos: 99.5,46.5 + parent: 2 + - uid: 9103 + components: + - type: Transform + pos: 96.5,46.5 + parent: 2 + - uid: 9104 + components: + - type: Transform + pos: 95.5,49.5 + parent: 2 + - uid: 10176 + components: + - type: Transform + pos: 92.5,42.5 + parent: 2 + - uid: 10177 + components: + - type: Transform + pos: 92.5,44.5 + parent: 2 + - uid: 10178 + components: + - type: Transform + pos: 91.5,50.5 + parent: 2 + - uid: 11478 + components: + - type: Transform + pos: 92.5,46.5 + parent: 2 + - uid: 11538 + components: + - type: Transform + pos: 95.5,46.5 + parent: 2 + - uid: 11539 + components: + - type: Transform + pos: 91.5,51.5 + parent: 2 + - uid: 11998 + components: + - type: Transform + pos: 91.5,45.5 + parent: 2 + - uid: 12008 + components: + - type: Transform + pos: 91.5,44.5 + parent: 2 + - uid: 12639 + components: + - type: Transform + pos: 98.5,48.5 + parent: 2 + - uid: 12640 + components: + - type: Transform + pos: 99.5,48.5 + parent: 2 + - uid: 12641 + components: + - type: Transform + pos: 100.5,48.5 + parent: 2 + - uid: 12642 + components: + - type: Transform + pos: 103.5,52.5 + parent: 2 + - uid: 12643 + components: + - type: Transform + pos: 87.5,48.5 + parent: 2 + - uid: 12644 + components: + - type: Transform + pos: 87.5,47.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 271 + components: + - type: Transform + pos: 76.5,17.5 + parent: 2 + - uid: 272 + components: + - type: Transform + pos: 76.5,16.5 + parent: 2 + - uid: 273 + components: + - type: Transform + pos: 76.5,15.5 + parent: 2 + - uid: 274 + components: + - type: Transform + pos: 75.5,17.5 + parent: 2 + - uid: 275 + components: + - type: Transform + pos: 75.5,16.5 + parent: 2 + - uid: 276 + components: + - type: Transform + pos: 75.5,15.5 + parent: 2 + - uid: 277 + components: + - type: Transform + pos: 74.5,17.5 + parent: 2 + - uid: 278 + components: + - type: Transform + pos: 74.5,16.5 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: 74.5,15.5 + parent: 2 + - uid: 12517 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 12519 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 + - uid: 12520 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 12521 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 12522 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - uid: 12528 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 280 + components: + - type: Transform + pos: 69.5,25.5 + parent: 2 + - uid: 281 + components: + - type: Transform + pos: 70.5,25.5 + parent: 2 + - uid: 282 + components: + - type: Transform + pos: 71.5,25.5 + parent: 2 +- proto: AtmosFixOxygenMarker + entities: + - uid: 283 + components: + - type: Transform + pos: 69.5,27.5 + parent: 2 + - uid: 284 + components: + - type: Transform + pos: 70.5,27.5 + parent: 2 + - uid: 285 + components: + - type: Transform + pos: 71.5,27.5 + parent: 2 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 286 + components: + - type: Transform + pos: 69.5,33.5 + parent: 2 + - uid: 287 + components: + - type: Transform + pos: 70.5,33.5 + parent: 2 + - uid: 288 + components: + - type: Transform + pos: 71.5,33.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 164 + components: + - type: Transform + pos: 67.5,-22.5 + parent: 2 + - uid: 289 + components: + - type: Transform + pos: 59.5,6.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: 74.5,-21.5 + parent: 2 + - uid: 291 + components: + - type: Transform + pos: 83.5,14.5 + parent: 2 +- proto: AutolatheMachineCircuitboard + entities: + - uid: 214 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BannerCargo + entities: + - uid: 292 + components: + - type: Transform + pos: 73.5,-17.5 + parent: 2 + - uid: 293 + components: + - type: Transform + pos: 76.5,-19.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: 71.5,-23.5 + parent: 2 + - uid: 295 + components: + - type: Transform + pos: 71.5,-27.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: 83.5,-23.5 + parent: 2 + - uid: 297 + components: + - type: Transform + pos: 78.5,-49.5 + parent: 2 +- proto: BannerEngineering + entities: + - uid: 298 + components: + - type: Transform + pos: 85.5,27.5 + parent: 2 +- proto: BannerScience + entities: + - uid: 300 + components: + - type: Transform + pos: 61.5,17.5 + parent: 2 + - uid: 392 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 +- proto: BannerSecurity + entities: + - uid: 301 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 + - uid: 303 + components: + - type: Transform + pos: -15.5,3.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 +- proto: Barricade + entities: + - uid: 305 + components: + - type: Transform + pos: 76.5,-45.5 + parent: 2 + - uid: 306 + components: + - type: Transform + pos: 75.5,-46.5 + parent: 2 + - uid: 307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-34.5 + parent: 2 + - uid: 13589 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 + - uid: 13725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-26.5 + parent: 2 + - uid: 13726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-20.5 + parent: 2 + - uid: 14422 + components: + - type: Transform + pos: 87.5,-40.5 + parent: 2 + - uid: 14423 + components: + - type: Transform + pos: 87.5,-32.5 + parent: 2 + - uid: 14881 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 +- proto: BarricadeBlock + entities: + - uid: 308 + components: + - type: Transform + pos: 74.5,-18.5 + parent: 2 + - uid: 309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-43.5 + parent: 2 + - uid: 310 + components: + - type: Transform + pos: 77.5,-45.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: 83.5,-40.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: 81.5,-33.5 + parent: 2 + - uid: 12384 + components: + - type: Transform + pos: 84.5,-3.5 + parent: 2 + - uid: 12385 + components: + - type: Transform + pos: 84.5,0.5 + parent: 2 + - uid: 13588 + components: + - type: Transform + pos: 40.5,-23.5 + parent: 2 + - uid: 13724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-24.5 + parent: 2 + - uid: 14421 + components: + - type: Transform + pos: 96.5,-45.5 + parent: 2 +- proto: BarricadeDirectional + entities: + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-19.5 + parent: 2 + - uid: 314 + components: + - type: Transform + pos: 73.5,-17.5 + parent: 2 + - uid: 315 + components: + - type: Transform + pos: 74.5,-17.5 + parent: 2 + - uid: 316 + components: + - type: Transform + pos: 73.5,-15.5 + parent: 2 + - uid: 317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-44.5 + parent: 2 + - uid: 318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-45.5 + parent: 2 + - uid: 319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-46.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: 76.5,-46.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: 75.5,-45.5 + parent: 2 + - uid: 322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-45.5 + parent: 2 + - uid: 323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-46.5 + parent: 2 + - uid: 324 + components: + - type: Transform + pos: 74.5,-46.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: 76.5,-44.5 + parent: 2 + - uid: 326 + components: + - type: Transform + pos: 78.5,-42.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: 77.5,-42.5 + parent: 2 + - uid: 328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-33.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: 83.5,-39.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: 82.5,-34.5 + parent: 2 + - uid: 331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-33.5 + parent: 2 + - uid: 332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-33.5 + parent: 2 + - uid: 333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-33.5 + parent: 2 + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-39.5 + parent: 2 + - uid: 335 + components: + - type: Transform + pos: 85.5,-39.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: 81.5,-40.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: 77.5,-38.5 + parent: 2 + - uid: 13890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-40.5 + parent: 2 +- proto: BaseBallBat + entities: + - uid: 338 + components: + - type: Transform + pos: -42.528946,8.562815 + parent: 2 +- proto: BaseChemistryEmptyVial + entities: + - uid: 14931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.677868,23.338121 + parent: 2 +- proto: Bed + entities: + - uid: 339 + components: + - type: Transform + pos: -54.5,10.5 + parent: 2 + - uid: 340 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 + - uid: 341 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - uid: 342 + components: + - type: Transform + pos: -37.5,-4.5 + parent: 2 + - uid: 343 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 + - uid: 344 + components: + - type: Transform + pos: -46.5,5.5 + parent: 2 + - uid: 345 + components: + - type: Transform + pos: -48.5,8.5 + parent: 2 + - uid: 347 + components: + - type: Transform + pos: -48.5,5.5 + parent: 2 + - uid: 348 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 349 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: 88.5,-25.5 + parent: 2 + - uid: 351 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 353 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 +- proto: BedsheetBlack + entities: + - uid: 354 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 + - uid: 355 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 2 +- proto: BedsheetBrigmedic + entities: + - uid: 357 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 +- proto: BedsheetClown + entities: + - uid: 358 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 +- proto: BedsheetCosmos + entities: + - uid: 359 + components: + - type: Transform + pos: -37.5,-4.5 + parent: 2 + - uid: 15525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-57.5 + parent: 2 +- proto: BedsheetHOS + entities: + - uid: 360 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 +- proto: BedsheetMedical + entities: + - uid: 361 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 2 + - uid: 362 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: 46.5,-9.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: 46.5,-11.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 +- proto: BedsheetMime + entities: + - uid: 366 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 +- proto: BedsheetNT + entities: + - uid: 367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,10.5 + parent: 2 +- proto: BedsheetOrange + entities: + - uid: 368 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - uid: 12440 + components: + - type: Transform + pos: -48.5,5.5 + parent: 2 + - uid: 12442 + components: + - type: Transform + pos: -46.5,5.5 + parent: 2 + - uid: 12444 + components: + - type: Transform + pos: -48.5,8.5 + parent: 2 +- proto: BedsheetQM + entities: + - uid: 369 + components: + - type: Transform + pos: 88.5,-25.5 + parent: 2 +- proto: BedsheetRainbow + entities: + - uid: 370 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 +- proto: BenchBlueComfy + entities: + - uid: 12548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,31.5 + parent: 2 + - uid: 12549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,32.5 + parent: 2 +- proto: BenchParkLeft + entities: + - uid: 66 + components: + - type: Transform + pos: 55.5,19.5 + parent: 2 + - uid: 371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,17.5 + parent: 2 + - uid: 13266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 2 +- proto: BenchParkMiddle + entities: + - uid: 373 + components: + - type: Transform + pos: 54.5,19.5 + parent: 2 + - uid: 375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,17.5 + parent: 2 +- proto: BenchParkRight + entities: + - uid: 372 + components: + - type: Transform + pos: 53.5,19.5 + parent: 2 + - uid: 374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,17.5 + parent: 2 + - uid: 13267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 2 +- proto: BenchRedComfy + entities: + - uid: 12550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,31.5 + parent: 2 + - uid: 12552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,31.5 + parent: 2 +- proto: BenchSofaCorner + entities: + - uid: 14784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,25.5 + parent: 2 + - uid: 14851 + components: + - type: Transform + pos: 23.5,23.5 + parent: 2 +- proto: BenchSofaLeft + entities: + - uid: 14785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,26.5 + parent: 2 + - uid: 14832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,22.5 + parent: 2 + - uid: 15144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,30.5 + parent: 2 + - uid: 15145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,31.5 + parent: 2 +- proto: BenchSofaMiddle + entities: + - uid: 14860 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 +- proto: BenchSofaRight + entities: + - uid: 14786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,25.5 + parent: 2 + - uid: 14861 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 15143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,31.5 + parent: 2 + - uid: 15146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,30.5 + parent: 2 +- proto: BenchSteelLeft + entities: + - uid: 13442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-10.5 + parent: 2 + - uid: 13445 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 2 +- proto: BenchSteelMiddle + entities: + - uid: 13441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-10.5 + parent: 2 + - uid: 13444 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 +- proto: BenchSteelRight + entities: + - uid: 13443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-10.5 + parent: 2 + - uid: 13446 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 2 +- proto: Bible + entities: + - uid: 377 + components: + - type: Transform + pos: 29.268353,10.602113 + parent: 2 +- proto: BikeHornInstrument + entities: + - uid: 378 + components: + - type: Transform + pos: -62.620186,2.4947977 + parent: 2 +- proto: BlastDoor + entities: + - uid: 379 + components: + - type: Transform + pos: -43.5,1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6990 + - uid: 380 + components: + - type: Transform + pos: -43.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6990 + - uid: 381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,36.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6991 + - uid: 383 + components: + - type: Transform + pos: 68.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7007 + - uid: 384 + components: + - type: Transform + pos: 68.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7007 + - uid: 385 + components: + - type: Transform + pos: 68.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7007 + - uid: 386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,16.5 + parent: 2 + - uid: 387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,20.5 + parent: 2 + - uid: 388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,20.5 + parent: 2 + - uid: 389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,16.5 + parent: 2 + - uid: 9949 + components: + - type: Transform + pos: 44.5,-32.5 + parent: 2 + - uid: 10341 + components: + - type: Transform + pos: 46.5,-32.5 + parent: 2 +- proto: BlastDoorFrame + entities: + - uid: 13437 + components: + - type: Transform + anchored: True + pos: 28.5,-22.5 + parent: 2 +- proto: Bloodpack + entities: + - uid: 13358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.440355,-20.359945 + parent: 2 +- proto: BookBase + entities: + - uid: 390 + components: + - type: MetaData + desc: Кодекс, который был создан основателями клоунской организации "Цирк и Радостный Край" + name: Кодекс чести клоуна + - type: Transform + pos: 18.406813,-3.3412611 + parent: 2 + - type: Paper + content: > + КОДЕКС ПОВЕДЕНИЯ КЛОУНОВ: + + 0. ХОНК! + + 1. Быть весёлым и смешным(Самое важное у клоунов!) + + 2. Клоун клоуна не обижает. Клоун клоуна уважает(помогайте своим братья клоунам и не обижайте их) + + 3. Слушать Хонко Матерь и её желания.(Выполняйте ее задания и желательно не заставлять её краснеть за вас!) + + 4. Пранки должны быть не убийственными!(цель клоуна смешить а не кромсать в томатный соус людей.) + + 5. Воровать-плохо! (Не воруйте со станции вещи. А если взяли на время, то возвращайте через 10 минут максимум. Есть исключения если это экстренная ситуация. ) + + 6. Не обижать людей на выступлениях! + + 7. Будь креативным! (придумывай свои безопасные приколы, шутки, а может даже устраивай конкурсы, люди это любят.) + + 8.Вид прежде всего!(Не снимайте свой клоунский мундир. Лишь для выступлений!) + + 9.Не мешайте во время каждых кодов кроме зелёного сотрудникам которым в эти нужно больше работать.(НЕ МЕШАТЬ СБ В:КРАСНЫЙ, СИНИЙ КОД. НЕ МЕШАТЬ МЕДИКАМ В:ФИОЛЕТОВЫЙ КОД. НЕ МЕШАТЬ ИНЖЕНЕРАМ:В ЖЁЛТЫЙ КОД!) + + 10.Все Сотрудники Безопасности наши братья клоуны!(ГСБ, варден, детектив в том числе) +- proto: BookChefGaming + entities: + - uid: 12527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.166248,7.1206226 + parent: 2 +- proto: BookMedicalReferenceBook + entities: + - uid: 391 + components: + - type: Transform + pos: 38.58527,-4.60493 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 393 + components: + - type: Transform + pos: 35.5,7.5 + parent: 2 + - uid: 394 + components: + - type: Transform + pos: 36.5,7.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: 37.5,7.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: 39.5,7.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: 41.5,4.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: -25.5,9.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: -10.5,7.5 + parent: 2 + - uid: 405 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: 66.5,42.5 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 2 + - uid: 14846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,22.5 + parent: 2 +- proto: BorgCharger + entities: + - uid: 299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,5.5 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: -27.5,5.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: 84.5,23.5 + parent: 2 + - uid: 412 + components: + - type: Transform + pos: -59.5,-1.5 + parent: 2 + - uid: 413 + components: + - type: Transform + pos: -37.5,-9.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: 54.5,14.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: 76.5,7.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: 85.5,-12.5 + parent: 2 + - uid: 418 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 +- proto: BorgModuleTool + entities: + - uid: 419 + components: + - type: Transform + pos: 74.48585,5.028 + parent: 2 +- proto: BoxBeaker + entities: + - uid: 12155 + components: + - type: Transform + pos: 11.485557,6.678301 + parent: 2 +- proto: BoxBodyBag + entities: + - uid: 420 + components: + - type: Transform + pos: 50.310368,-20.156765 + parent: 2 + - uid: 421 + components: + - type: Transform + pos: 50.727467,-20.392273 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: -22.188974,4.7952156 + parent: 2 +- proto: BoxCartridgeBB + entities: + - uid: 13628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.62025,-42.43838 + parent: 2 + - uid: 13629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.32025,-42.43838 + parent: 2 + - uid: 13633 + components: + - type: Transform + pos: 69.2015,-42.569633 + parent: 2 + - uid: 13634 + components: + - type: Transform + pos: 69.539,-42.53213 + parent: 2 +- proto: BoxCartridgeCap + entities: + - uid: 13630 + components: + - type: Transform + pos: 62.43275,-42.81338 + parent: 2 + - uid: 13635 + components: + - type: Transform + pos: 69.329704,-42.06338 + parent: 2 +- proto: BoxCleanerGrenades + entities: + - uid: 423 + components: + - type: Transform + pos: 20.59203,-5.0155325 + parent: 2 + - uid: 424 + components: + - type: Transform + pos: 20.607655,-5.2499075 + parent: 2 +- proto: BoxDonkSoftBox + entities: + - uid: 13923 + components: + - type: Transform + pos: 69.735176,-41.859543 + parent: 2 + - uid: 13924 + components: + - type: Transform + pos: 61.614506,-42.497044 + parent: 2 +- proto: BoxFolderBlack + entities: + - uid: 425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5849602,8.54171 + parent: 2 +- proto: BoxFolderBlue + entities: + - uid: 426 + components: + - type: Transform + pos: -4.067155,6.5717053 + parent: 2 + - uid: 427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.70575,27.499767 + parent: 2 + - uid: 11586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.51242,1.6051087 + parent: 2 +- proto: BoxFolderRed + entities: + - uid: 428 + components: + - type: Transform + pos: 71.32694,-21.331148 + parent: 2 + - uid: 429 + components: + - type: Transform + pos: 1.0330693,6.5951233 + parent: 2 +- proto: BoxFolderWhite + entities: + - uid: 430 + components: + - type: Transform + pos: 56.54409,-14.364498 + parent: 2 + - uid: 431 + components: + - type: Transform + pos: 52.493553,-3.2962394 + parent: 2 + - uid: 432 + components: + - type: Transform + pos: 57.757072,-10.242875 + parent: 2 + - uid: 433 + components: + - type: Transform + pos: 38.45612,-3.916494 + parent: 2 + - uid: 434 + components: + - type: Transform + pos: 38.673737,-4.0070734 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: 56.72544,-14.509426 + parent: 2 +- proto: BoxFolderYellow + entities: + - uid: 436 + components: + - type: Transform + pos: 71.3378,-20.354586 + parent: 2 + - uid: 437 + components: + - type: Transform + pos: 71.370346,-20.810314 + parent: 2 +- proto: BoxHolyWater + entities: + - uid: 14190 + components: + - type: Transform + pos: 34.20263,13.803482 + parent: 2 +- proto: BoxLethalshot + entities: + - uid: 439 + components: + - type: Transform + parent: 438 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 440 + components: + - type: Transform + parent: 438 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazineUniversalMagnumRubber + entities: + - uid: 453 + components: + - type: Transform + pos: -11.688046,5.6757274 + parent: 2 +- proto: BoxMouthSwab + entities: + - uid: 12153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.411194,8.762919 + parent: 2 +- proto: BoxMRE + entities: + - uid: 454 + components: + - type: Transform + pos: -35.34117,-4.391119 + parent: 2 + - uid: 455 + components: + - type: Transform + pos: -31.356794,-4.391119 + parent: 2 + - uid: 456 + components: + - type: Transform + pos: -27.35183,-4.417161 + parent: 2 +- proto: BoxShellTranquilizer + entities: + - uid: 441 + components: + - type: Transform + parent: 438 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BoxShotgunIncendiary + entities: + - uid: 442 + components: + - type: Transform + parent: 438 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BoxShotgunSlug + entities: + - uid: 443 + components: + - type: Transform + parent: 438 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 444 + components: + - type: Transform + parent: 438 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 457 + components: + - type: Transform + pos: 13.490356,-7.3165846 + parent: 2 +- proto: BrbSign + entities: + - uid: 458 + components: + - type: Transform + pos: 29.384247,-2.2822626 + parent: 2 +- proto: BriefcaseBrownFilled + entities: + - uid: 460 + components: + - type: Transform + pos: -9.658289,-3.856771 + parent: 2 + - uid: 12900 + components: + - type: Transform + pos: -6.353894,-5.818223 + parent: 2 + - uid: 13364 + components: + - type: Transform + pos: 15.893818,-20.25057 + parent: 2 +- proto: BrigTimer + entities: + - uid: 461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 147 + - uid: 462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-1.5 + parent: 2 + - uid: 463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 145 +- proto: Bucket + entities: + - uid: 464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.382504,5.3015966 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: 21.05793,-2.9301171 + parent: 2 + - uid: 14894 + components: + - type: Transform + pos: 17.608355,29.599392 + parent: 2 + - uid: 14981 + components: + - type: Transform + pos: 38.682304,25.526344 + parent: 2 +- proto: BulletBB + entities: + - uid: 2069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.81573,-44.109543 + parent: 2 + - uid: 13903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.265724,-42.572044 + parent: 2 + - uid: 13905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.196976,-39.890793 + parent: 2 + - uid: 13908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.65948,-42.309544 + parent: 2 + - uid: 13913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.00323,-43.415794 + parent: 2 + - uid: 13915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.44073,-44.503292 + parent: 2 + - uid: 13916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.259476,-40.078293 + parent: 2 +- proto: BulletFoam + entities: + - uid: 13722 + components: + - type: Transform + pos: 66.66477,-42.403057 + parent: 2 + - uid: 13723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.47168,-42.440556 + parent: 2 + - uid: 13925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.89032,-44.484543 + parent: 2 + - uid: 13927 + components: + - type: Transform + pos: 65.22782,-45.084545 + parent: 2 + - uid: 13929 + components: + - type: Transform + pos: 65.39657,-45.084545 + parent: 2 + - uid: 13939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.44529,-40.284306 + parent: 2 + - uid: 13940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.46404,-40.640556 + parent: 2 + - uid: 13948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.89488,-43.351906 + parent: 2 + - uid: 13949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.89488,-43.57691 + parent: 2 +- proto: ButtonFrameCaution + entities: + - uid: 466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,36.5 + parent: 2 + - uid: 467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-22.5 + parent: 2 + - uid: 468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-18.5 + parent: 2 + - uid: 469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,30.5 + parent: 2 + - uid: 470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,7.5 + parent: 2 + - uid: 471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,13.5 + parent: 2 + - uid: 3241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,28.5 + parent: 2 + - uid: 12110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,28.5 + parent: 2 + - uid: 13391 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 13393 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,12.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 459 + components: + - type: Transform + pos: 89.5,50.5 + parent: 2 + - uid: 473 + components: + - type: Transform + pos: 84.5,-20.5 + parent: 2 + - uid: 474 + components: + - type: Transform + pos: 85.5,-20.5 + parent: 2 + - uid: 475 + components: + - type: Transform + pos: 89.5,-21.5 + parent: 2 + - uid: 476 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 477 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - uid: 478 + components: + - type: Transform + pos: 49.5,-9.5 + parent: 2 + - uid: 479 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - uid: 480 + components: + - type: Transform + pos: -42.5,4.5 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: -42.5,3.5 + parent: 2 + - uid: 482 + components: + - type: Transform + pos: -42.5,2.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: -42.5,1.5 + parent: 2 + - uid: 484 + components: + - type: Transform + pos: -42.5,0.5 + parent: 2 + - uid: 485 + components: + - type: Transform + pos: -41.5,0.5 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - uid: 487 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - uid: 488 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - uid: 489 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: -43.5,-3.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: -44.5,-3.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: -45.5,-3.5 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: -46.5,-3.5 + parent: 2 + - uid: 495 + components: + - type: Transform + pos: -46.5,-2.5 + parent: 2 + - uid: 496 + components: + - type: Transform + pos: -46.5,-1.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: -46.5,0.5 + parent: 2 + - uid: 499 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: -39.5,-0.5 + parent: 2 + - uid: 501 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: -37.5,-0.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 2 + - uid: 504 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - uid: 505 + components: + - type: Transform + pos: -35.5,-1.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 518 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 521 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - uid: 522 + components: + - type: Transform + pos: -32.5,3.5 + parent: 2 + - uid: 523 + components: + - type: Transform + pos: -32.5,4.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: -32.5,5.5 + parent: 2 + - uid: 525 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - uid: 526 + components: + - type: Transform + pos: -30.5,5.5 + parent: 2 + - uid: 527 + components: + - type: Transform + pos: -29.5,5.5 + parent: 2 + - uid: 528 + components: + - type: Transform + pos: -28.5,5.5 + parent: 2 + - uid: 529 + components: + - type: Transform + pos: -28.5,6.5 + parent: 2 + - uid: 530 + components: + - type: Transform + pos: -27.5,6.5 + parent: 2 + - uid: 531 + components: + - type: Transform + pos: -26.5,6.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: -24.5,6.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 + - uid: 536 + components: + - type: Transform + pos: -22.5,7.5 + parent: 2 + - uid: 537 + components: + - type: Transform + pos: -22.5,8.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: -33.5,5.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: -34.5,5.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: -34.5,6.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: -34.5,7.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: -36.5,6.5 + parent: 2 + - uid: 543 + components: + - type: Transform + pos: -37.5,6.5 + parent: 2 + - uid: 544 + components: + - type: Transform + pos: -38.5,6.5 + parent: 2 + - uid: 545 + components: + - type: Transform + pos: -39.5,6.5 + parent: 2 + - uid: 546 + components: + - type: Transform + pos: -40.5,6.5 + parent: 2 + - uid: 547 + components: + - type: Transform + pos: -35.5,6.5 + parent: 2 + - uid: 548 + components: + - type: Transform + pos: -41.5,6.5 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: -42.5,6.5 + parent: 2 + - uid: 550 + components: + - type: Transform + pos: -43.5,6.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: -44.5,6.5 + parent: 2 + - uid: 552 + components: + - type: Transform + pos: -45.5,6.5 + parent: 2 + - uid: 553 + components: + - type: Transform + pos: -46.5,6.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: -47.5,6.5 + parent: 2 + - uid: 555 + components: + - type: Transform + pos: -47.5,7.5 + parent: 2 + - uid: 556 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 2 + - uid: 557 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 558 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - uid: 560 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 2 + - uid: 561 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - uid: 562 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: -22.5,2.5 + parent: 2 + - uid: 564 + components: + - type: Transform + pos: -23.5,2.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: -24.5,2.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - uid: 568 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - uid: 569 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - uid: 570 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 + - uid: 572 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 + - uid: 576 + components: + - type: Transform + pos: -16.5,1.5 + parent: 2 + - uid: 577 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 + - uid: 583 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: -15.5,2.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: -14.5,2.5 + parent: 2 + - uid: 586 + components: + - type: Transform + pos: -13.5,2.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: -11.5,2.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: -10.5,2.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: -9.5,2.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: -9.5,4.5 + parent: 2 + - uid: 593 + components: + - type: Transform + pos: -9.5,5.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 596 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 597 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - uid: 598 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 2 + - uid: 603 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 604 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 2 + - uid: 605 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 608 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 611 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 + - uid: 613 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: 44.5,-7.5 + parent: 2 + - uid: 615 + components: + - type: Transform + pos: 43.5,-7.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: 41.5,-7.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: 40.5,-7.5 + parent: 2 + - uid: 619 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 2 + - uid: 625 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: 47.5,-1.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: 47.5,-2.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: 47.5,-3.5 + parent: 2 + - uid: 630 + components: + - type: Transform + pos: 47.5,-4.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: 48.5,-4.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: 49.5,-4.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: 46.5,-4.5 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: 44.5,-8.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: 45.5,-8.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: 46.5,-8.5 + parent: 2 + - uid: 637 + components: + - type: Transform + pos: 47.5,-8.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: 48.5,-8.5 + parent: 2 + - uid: 639 + components: + - type: Transform + pos: 49.5,-8.5 + parent: 2 + - uid: 640 + components: + - type: Transform + pos: 44.5,-9.5 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: 44.5,-10.5 + parent: 2 + - uid: 642 + components: + - type: Transform + pos: 56.5,-5.5 + parent: 2 + - uid: 643 + components: + - type: Transform + pos: 56.5,-6.5 + parent: 2 + - uid: 644 + components: + - type: Transform + pos: 56.5,-7.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: 55.5,-7.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: 54.5,-7.5 + parent: 2 + - uid: 647 + components: + - type: Transform + pos: 53.5,-7.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: 53.5,-8.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: 53.5,-6.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: 53.5,-5.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: 53.5,-4.5 + parent: 2 + - uid: 652 + components: + - type: Transform + pos: 53.5,-3.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 2 + - uid: 654 + components: + - type: Transform + pos: 58.5,-7.5 + parent: 2 + - uid: 655 + components: + - type: Transform + pos: 59.5,-7.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: 60.5,-7.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: 61.5,-7.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: 61.5,-6.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: 61.5,-5.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: 61.5,-4.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: 61.5,-3.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: 56.5,-4.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: 56.5,-3.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: 57.5,-3.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: 67.5,-7.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: 66.5,-7.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: 65.5,-7.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: 65.5,-6.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: 65.5,-5.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: 65.5,-4.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: 65.5,-3.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: 66.5,-3.5 + parent: 2 + - uid: 673 + components: + - type: Transform + pos: 67.5,-3.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: 65.5,-9.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: 65.5,-10.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: 65.5,-11.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: 64.5,-11.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: 66.5,-11.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: 61.5,-8.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: 61.5,-9.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: 61.5,-10.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: 61.5,-11.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: 55.5,-9.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: 55.5,-10.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: 55.5,-11.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: 56.5,-11.5 + parent: 2 + - uid: 687 + components: + - type: Transform + pos: 57.5,-11.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: 62.5,-21.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: 61.5,-21.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: 61.5,-20.5 + parent: 2 + - uid: 691 + components: + - type: Transform + pos: 61.5,-19.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: 61.5,-18.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: 61.5,-17.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: 61.5,-16.5 + parent: 2 + - uid: 695 + components: + - type: Transform + pos: 61.5,-15.5 + parent: 2 + - uid: 696 + components: + - type: Transform + pos: 61.5,-14.5 + parent: 2 + - uid: 697 + components: + - type: Transform + pos: 62.5,-14.5 + parent: 2 + - uid: 698 + components: + - type: Transform + pos: 63.5,-14.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: 64.5,-14.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: 64.5,-15.5 + parent: 2 + - uid: 701 + components: + - type: Transform + pos: 62.5,-20.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: 63.5,-20.5 + parent: 2 + - uid: 703 + components: + - type: Transform + pos: 64.5,-20.5 + parent: 2 + - uid: 704 + components: + - type: Transform + pos: 64.5,-19.5 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: 61.5,-22.5 + parent: 2 + - uid: 706 + components: + - type: Transform + pos: 61.5,-23.5 + parent: 2 + - uid: 707 + components: + - type: Transform + pos: 62.5,-23.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: 63.5,-23.5 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: 64.5,-23.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: 64.5,-24.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: 59.5,-26.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: 59.5,-27.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: 59.5,-28.5 + parent: 2 + - uid: 714 + components: + - type: Transform + pos: 60.5,-28.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: 61.5,-28.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: 62.5,-28.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: 63.5,-28.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: 54.5,-13.5 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: 54.5,-14.5 + parent: 2 + - uid: 720 + components: + - type: Transform + pos: 54.5,-15.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: 54.5,-16.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: 54.5,-17.5 + parent: 2 + - uid: 723 + components: + - type: Transform + pos: 54.5,-18.5 + parent: 2 + - uid: 724 + components: + - type: Transform + pos: 54.5,-19.5 + parent: 2 + - uid: 725 + components: + - type: Transform + pos: 53.5,-17.5 + parent: 2 + - uid: 726 + components: + - type: Transform + pos: 52.5,-17.5 + parent: 2 + - uid: 727 + components: + - type: Transform + pos: 51.5,-17.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: 51.5,-18.5 + parent: 2 + - uid: 729 + components: + - type: Transform + pos: 51.5,-19.5 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: 51.5,-16.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: 51.5,-15.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: 55.5,-17.5 + parent: 2 + - uid: 733 + components: + - type: Transform + pos: 56.5,-17.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: 57.5,-17.5 + parent: 2 + - uid: 735 + components: + - type: Transform + pos: 57.5,-16.5 + parent: 2 + - uid: 736 + components: + - type: Transform + pos: 57.5,-15.5 + parent: 2 + - uid: 737 + components: + - type: Transform + pos: 57.5,-18.5 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: 57.5,-19.5 + parent: 2 + - uid: 739 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 + - uid: 740 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: -6.5,10.5 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - uid: 744 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 746 + components: + - type: Transform + pos: -9.5,9.5 + parent: 2 + - uid: 747 + components: + - type: Transform + pos: -10.5,9.5 + parent: 2 + - uid: 748 + components: + - type: Transform + pos: -11.5,9.5 + parent: 2 + - uid: 749 + components: + - type: Transform + pos: -3.5,9.5 + parent: 2 + - uid: 750 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 751 + components: + - type: Transform + pos: -1.5,9.5 + parent: 2 + - uid: 752 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 753 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 755 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: -3.5,7.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: 49.5,-10.5 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: 49.5,-11.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: 51.5,-10.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: 50.5,-11.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: 51.5,-11.5 + parent: 2 + - uid: 767 + components: + - type: Transform + pos: 51.5,-9.5 + parent: 2 + - uid: 768 + components: + - type: Transform + pos: 52.5,-9.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: -64.5,-5.5 + parent: 2 + - uid: 770 + components: + - type: Transform + pos: -63.5,-2.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: -63.5,-3.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 2 + - uid: 773 + components: + - type: Transform + pos: -63.5,-5.5 + parent: 2 + - uid: 774 + components: + - type: Transform + pos: -62.5,-5.5 + parent: 2 + - uid: 775 + components: + - type: Transform + pos: -61.5,-5.5 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: -60.5,-5.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: -59.5,-5.5 + parent: 2 + - uid: 778 + components: + - type: Transform + pos: -59.5,-6.5 + parent: 2 + - uid: 779 + components: + - type: Transform + pos: -58.5,-6.5 + parent: 2 + - uid: 780 + components: + - type: Transform + pos: -57.5,-6.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: -65.5,-5.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: -68.5,9.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: -68.5,8.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: -68.5,7.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: -68.5,6.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: -68.5,5.5 + parent: 2 + - uid: 787 + components: + - type: Transform + pos: -68.5,4.5 + parent: 2 + - uid: 788 + components: + - type: Transform + pos: -70.5,4.5 + parent: 2 + - uid: 789 + components: + - type: Transform + pos: -71.5,4.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: -72.5,4.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: -73.5,4.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: -69.5,4.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: -73.5,3.5 + parent: 2 + - uid: 794 + components: + - type: Transform + pos: -73.5,2.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: -73.5,1.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: -73.5,0.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: -71.5,-3.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: -74.5,-0.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: -70.5,-3.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: -69.5,-3.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: -73.5,-0.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: -72.5,-3.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: -71.5,-4.5 + parent: 2 + - uid: 804 + components: + - type: Transform + pos: -68.5,0.5 + parent: 2 + - uid: 805 + components: + - type: Transform + pos: -68.5,-0.5 + parent: 2 + - uid: 806 + components: + - type: Transform + pos: -67.5,-0.5 + parent: 2 + - uid: 807 + components: + - type: Transform + pos: -66.5,-0.5 + parent: 2 + - uid: 808 + components: + - type: Transform + pos: -65.5,-0.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: -64.5,-0.5 + parent: 2 + - uid: 810 + components: + - type: Transform + pos: -64.5,0.5 + parent: 2 + - uid: 811 + components: + - type: Transform + pos: -64.5,1.5 + parent: 2 + - uid: 812 + components: + - type: Transform + pos: -64.5,2.5 + parent: 2 + - uid: 813 + components: + - type: Transform + pos: -66.5,3.5 + parent: 2 + - uid: 814 + components: + - type: Transform + pos: -65.5,3.5 + parent: 2 + - uid: 815 + components: + - type: Transform + pos: -64.5,3.5 + parent: 2 + - uid: 816 + components: + - type: Transform + pos: -54.5,6.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: -53.5,9.5 + parent: 2 + - uid: 818 + components: + - type: Transform + pos: -55.5,6.5 + parent: 2 + - uid: 819 + components: + - type: Transform + pos: -56.5,6.5 + parent: 2 + - uid: 820 + components: + - type: Transform + pos: -52.5,6.5 + parent: 2 + - uid: 821 + components: + - type: Transform + pos: -53.5,6.5 + parent: 2 + - uid: 822 + components: + - type: Transform + pos: -51.5,6.5 + parent: 2 + - uid: 823 + components: + - type: Transform + pos: -53.5,8.5 + parent: 2 + - uid: 824 + components: + - type: Transform + pos: -53.5,7.5 + parent: 2 + - uid: 825 + components: + - type: Transform + pos: -56.5,7.5 + parent: 2 + - uid: 826 + components: + - type: Transform + pos: -56.5,8.5 + parent: 2 + - uid: 827 + components: + - type: Transform + pos: -54.5,-3.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: -49.5,0.5 + parent: 2 + - uid: 829 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 831 + components: + - type: Transform + pos: -52.5,0.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: -53.5,0.5 + parent: 2 + - uid: 833 + components: + - type: Transform + pos: -54.5,0.5 + parent: 2 + - uid: 834 + components: + - type: Transform + pos: -55.5,0.5 + parent: 2 + - uid: 835 + components: + - type: Transform + pos: -55.5,-0.5 + parent: 2 + - uid: 836 + components: + - type: Transform + pos: -55.5,-1.5 + parent: 2 + - uid: 837 + components: + - type: Transform + pos: -55.5,-2.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: -55.5,-3.5 + parent: 2 + - uid: 839 + components: + - type: Transform + pos: -53.5,-3.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: -52.5,-3.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: -52.5,-4.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: -52.5,-5.5 + parent: 2 + - uid: 843 + components: + - type: Transform + pos: -52.5,-6.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: -52.5,-7.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: -51.5,-7.5 + parent: 2 + - uid: 846 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: -55.5,1.5 + parent: 2 + - uid: 848 + components: + - type: Transform + pos: -55.5,2.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: -56.5,2.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: -57.5,2.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: -58.5,2.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: -56.5,-0.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: -57.5,-0.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: -58.5,-0.5 + parent: 2 + - uid: 855 + components: + - type: Transform + pos: -59.5,2.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: -59.5,3.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: -59.5,4.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: -59.5,5.5 + parent: 2 + - uid: 859 + components: + - type: Transform + pos: -59.5,6.5 + parent: 2 + - uid: 860 + components: + - type: Transform + pos: -59.5,7.5 + parent: 2 + - uid: 861 + components: + - type: Transform + pos: -60.5,7.5 + parent: 2 + - uid: 862 + components: + - type: Transform + pos: -61.5,7.5 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: -62.5,7.5 + parent: 2 + - uid: 864 + components: + - type: Transform + pos: -63.5,7.5 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: -64.5,7.5 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: -63.5,8.5 + parent: 2 + - uid: 867 + components: + - type: Transform + pos: -73.5,-1.5 + parent: 2 + - uid: 868 + components: + - type: Transform + pos: -72.5,-1.5 + parent: 2 + - uid: 869 + components: + - type: Transform + pos: -72.5,-2.5 + parent: 2 + - uid: 870 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 871 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 872 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 873 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 874 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - uid: 876 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 877 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 878 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 879 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 + - uid: 880 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 2 + - uid: 883 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 + - uid: 884 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 885 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 886 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 887 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 888 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 889 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - uid: 890 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 891 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - uid: 892 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - uid: 893 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 894 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 895 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - uid: 896 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 2 + - uid: 897 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 2 + - uid: 898 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 2 + - uid: 899 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 2 + - uid: 900 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - uid: 901 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 902 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 903 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 904 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 905 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 906 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 907 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 908 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 909 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 910 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 911 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 + - uid: 912 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 914 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 915 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 2 + - uid: 916 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 2 + - uid: 917 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 2 + - uid: 918 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 2 + - uid: 919 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 920 + components: + - type: Transform + pos: -39.5,-7.5 + parent: 2 + - uid: 921 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 2 + - uid: 922 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 + - uid: 923 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 + - uid: 924 + components: + - type: Transform + pos: -43.5,-7.5 + parent: 2 + - uid: 925 + components: + - type: Transform + pos: -44.5,-7.5 + parent: 2 + - uid: 926 + components: + - type: Transform + pos: -45.5,-7.5 + parent: 2 + - uid: 927 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 2 + - uid: 928 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 + - uid: 929 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 931 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 932 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 933 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 934 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - uid: 935 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 937 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 939 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 940 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 941 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 942 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 943 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 948 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 949 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 950 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 951 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 952 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 + - uid: 953 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 + - uid: 955 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 956 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 + - uid: 960 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 + - uid: 961 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - uid: 962 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 966 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 967 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 968 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 969 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 970 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 971 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 972 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 973 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 975 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 979 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 + - uid: 981 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 984 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - uid: 986 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 + - uid: 991 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 993 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 + - uid: 994 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 995 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 996 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - uid: 997 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 999 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - uid: 1002 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + pos: 19.5,1.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: 18.5,1.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 + - uid: 1009 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 1011 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: 13.5,1.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 1016 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + pos: 17.5,0.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 2 + - uid: 1019 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - uid: 1021 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 1022 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 + - uid: 1030 + components: + - type: Transform + pos: 20.5,1.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 + - uid: 1032 + components: + - type: Transform + pos: 22.5,1.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + pos: 24.5,1.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: 25.5,1.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: 26.5,1.5 + parent: 2 + - uid: 1037 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - uid: 1038 + components: + - type: Transform + pos: 28.5,1.5 + parent: 2 + - uid: 1039 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + pos: 30.5,1.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: 31.5,1.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: 32.5,1.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + pos: 33.5,1.5 + parent: 2 + - uid: 1044 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 1046 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 1047 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 1048 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 + - uid: 1049 + components: + - type: Transform + pos: 9.5,9.5 + parent: 2 + - uid: 1050 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 1051 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 1052 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 1055 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 1056 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - uid: 1057 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + pos: 20.5,9.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + pos: 21.5,9.5 + parent: 2 + - uid: 1061 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: 21.5,8.5 + parent: 2 + - uid: 1063 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - uid: 1064 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - uid: 1065 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + pos: 20.5,5.5 + parent: 2 + - uid: 1067 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + pos: 18.5,5.5 + parent: 2 + - uid: 1069 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 1073 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 1074 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 1076 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + pos: 29.5,12.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + pos: 26.5,6.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: 26.5,5.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: 26.5,4.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: 29.5,7.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: 29.5,6.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: 29.5,5.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: 29.5,4.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: 32.5,7.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: 32.5,6.5 + parent: 2 + - uid: 1097 + components: + - type: Transform + pos: 32.5,5.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: 32.5,4.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 + - uid: 1100 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + pos: 32.5,11.5 + parent: 2 + - uid: 1102 + components: + - type: Transform + pos: 32.5,12.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 + - uid: 1105 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + pos: 35.5,11.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: 37.5,11.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: 37.5,10.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: 37.5,12.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: 37.5,13.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + pos: 38.5,-7.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 2 + - uid: 1114 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 + - uid: 1115 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 2 + - uid: 1116 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 2 + - uid: 1119 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 + - uid: 1120 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 2 + - uid: 1122 + components: + - type: Transform + pos: 42.5,8.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: 41.5,8.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + pos: 41.5,9.5 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: 41.5,10.5 + parent: 2 + - uid: 1126 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 + - uid: 1127 + components: + - type: Transform + pos: 42.5,11.5 + parent: 2 + - uid: 1128 + components: + - type: Transform + pos: 43.5,11.5 + parent: 2 + - uid: 1129 + components: + - type: Transform + pos: 43.5,10.5 + parent: 2 + - uid: 1130 + components: + - type: Transform + pos: 41.5,7.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: 41.5,6.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: 40.5,5.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - uid: 1135 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 + - uid: 1136 + components: + - type: Transform + pos: 37.5,5.5 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: 36.5,5.5 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: 45.5,3.5 + parent: 2 + - uid: 1139 + components: + - type: Transform + pos: 45.5,2.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + pos: 45.5,1.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: 44.5,1.5 + parent: 2 + - uid: 1142 + components: + - type: Transform + pos: 43.5,1.5 + parent: 2 + - uid: 1143 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: 41.5,1.5 + parent: 2 + - uid: 1145 + components: + - type: Transform + pos: 40.5,1.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 1147 + components: + - type: Transform + pos: 38.5,1.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 + - uid: 1149 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 1150 + components: + - type: Transform + pos: 46.5,1.5 + parent: 2 + - uid: 1151 + components: + - type: Transform + pos: 47.5,1.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + pos: 48.5,1.5 + parent: 2 + - uid: 1153 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - uid: 1154 + components: + - type: Transform + pos: 50.5,1.5 + parent: 2 + - uid: 1155 + components: + - type: Transform + pos: 51.5,1.5 + parent: 2 + - uid: 1156 + components: + - type: Transform + pos: 52.5,1.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + pos: 53.5,1.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + pos: 54.5,1.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: 55.5,1.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: 56.5,1.5 + parent: 2 + - uid: 1161 + components: + - type: Transform + pos: 57.5,1.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + pos: 77.5,1.5 + parent: 2 + - uid: 1163 + components: + - type: Transform + pos: 78.5,1.5 + parent: 2 + - uid: 1164 + components: + - type: Transform + pos: 76.5,1.5 + parent: 2 + - uid: 1165 + components: + - type: Transform + pos: 61.5,1.5 + parent: 2 + - uid: 1166 + components: + - type: Transform + pos: 62.5,1.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + pos: 63.5,1.5 + parent: 2 + - uid: 1168 + components: + - type: Transform + pos: 64.5,1.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + pos: 65.5,1.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + pos: 66.5,1.5 + parent: 2 + - uid: 1171 + components: + - type: Transform + pos: 67.5,1.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + pos: 68.5,1.5 + parent: 2 + - uid: 1173 + components: + - type: Transform + pos: 69.5,1.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + pos: 70.5,1.5 + parent: 2 + - uid: 1175 + components: + - type: Transform + pos: 71.5,1.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: 72.5,1.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: 73.5,1.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + pos: 74.5,1.5 + parent: 2 + - uid: 1179 + components: + - type: Transform + pos: 75.5,1.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - uid: 1181 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + pos: 51.5,23.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: 52.5,23.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + pos: 53.5,23.5 + parent: 2 + - uid: 1185 + components: + - type: Transform + pos: 54.5,23.5 + parent: 2 + - uid: 1186 + components: + - type: Transform + pos: 54.5,24.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + pos: 54.5,25.5 + parent: 2 + - uid: 1188 + components: + - type: Transform + pos: 54.5,26.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + pos: 50.5,23.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + pos: 50.5,24.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: 50.5,25.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + pos: 50.5,26.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: 60.5,22.5 + parent: 2 + - uid: 1196 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - uid: 1197 + components: + - type: Transform + pos: 58.5,22.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: 58.5,23.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: 58.5,24.5 + parent: 2 + - uid: 1200 + components: + - type: Transform + pos: 58.5,25.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: 58.5,26.5 + parent: 2 + - uid: 1202 + components: + - type: Transform + pos: 58.5,27.5 + parent: 2 + - uid: 1203 + components: + - type: Transform + pos: 59.5,27.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + pos: 60.5,27.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + pos: 61.5,27.5 + parent: 2 + - uid: 1206 + components: + - type: Transform + pos: 62.5,27.5 + parent: 2 + - uid: 1207 + components: + - type: Transform + pos: 63.5,27.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + pos: 64.5,27.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + pos: 63.5,28.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + pos: 58.5,21.5 + parent: 2 + - uid: 1211 + components: + - type: Transform + pos: 58.5,20.5 + parent: 2 + - uid: 1212 + components: + - type: Transform + pos: 58.5,19.5 + parent: 2 + - uid: 1213 + components: + - type: Transform + pos: 58.5,18.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + pos: 58.5,17.5 + parent: 2 + - uid: 1215 + components: + - type: Transform + pos: 58.5,16.5 + parent: 2 + - uid: 1216 + components: + - type: Transform + pos: 57.5,18.5 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: 56.5,18.5 + parent: 2 + - uid: 1218 + components: + - type: Transform + pos: 55.5,18.5 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: 54.5,18.5 + parent: 2 + - uid: 1220 + components: + - type: Transform + pos: 53.5,18.5 + parent: 2 + - uid: 1221 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + pos: 52.5,13.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: 51.5,13.5 + parent: 2 + - uid: 1224 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 1225 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 1226 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + pos: 47.5,13.5 + parent: 2 + - uid: 1228 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 1229 + components: + - type: Transform + pos: 48.5,12.5 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: 48.5,11.5 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: 48.5,10.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: 48.5,9.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: 48.5,8.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: 48.5,7.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + pos: 48.5,6.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: 51.5,12.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: 51.5,11.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: 51.5,10.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: 51.5,9.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: 51.5,8.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: 51.5,7.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: 51.5,6.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: 51.5,5.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: 60.5,10.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: 59.5,12.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: 58.5,12.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: 57.5,12.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: 56.5,12.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: 58.5,15.5 + parent: 2 + - uid: 1253 + components: + - type: Transform + pos: 58.5,14.5 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + pos: 56.5,10.5 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: 56.5,9.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: 56.5,8.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + pos: 56.5,7.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: 56.5,6.5 + parent: 2 + - uid: 1260 + components: + - type: Transform + pos: 56.5,5.5 + parent: 2 + - uid: 1261 + components: + - type: Transform + pos: 57.5,5.5 + parent: 2 + - uid: 1262 + components: + - type: Transform + pos: 58.5,5.5 + parent: 2 + - uid: 1263 + components: + - type: Transform + pos: 59.5,5.5 + parent: 2 + - uid: 1264 + components: + - type: Transform + pos: 55.5,5.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: 54.5,5.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: 57.5,8.5 + parent: 2 + - uid: 1267 + components: + - type: Transform + pos: 58.5,8.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + pos: 55.5,8.5 + parent: 2 + - uid: 1269 + components: + - type: Transform + pos: 61.5,12.5 + parent: 2 + - uid: 1270 + components: + - type: Transform + pos: 62.5,12.5 + parent: 2 + - uid: 1271 + components: + - type: Transform + pos: 63.5,12.5 + parent: 2 + - uid: 1272 + components: + - type: Transform + pos: 63.5,11.5 + parent: 2 + - uid: 1273 + components: + - type: Transform + pos: 63.5,10.5 + parent: 2 + - uid: 1274 + components: + - type: Transform + pos: 63.5,9.5 + parent: 2 + - uid: 1275 + components: + - type: Transform + pos: 63.5,8.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: 63.5,7.5 + parent: 2 + - uid: 1277 + components: + - type: Transform + pos: 63.5,6.5 + parent: 2 + - uid: 1278 + components: + - type: Transform + pos: 63.5,5.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + pos: 62.5,8.5 + parent: 2 + - uid: 1280 + components: + - type: Transform + pos: 64.5,8.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: 65.5,8.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: 66.5,8.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: 67.5,8.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: 67.5,7.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: 64.5,5.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: 64.5,6.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: 64.5,4.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: 63.5,4.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: 62.5,5.5 + parent: 2 + - uid: 1290 + components: + - type: Transform + pos: 69.5,11.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + pos: 68.5,11.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + pos: 67.5,11.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: 67.5,12.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: 66.5,12.5 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: 65.5,12.5 + parent: 2 + - uid: 1296 + components: + - type: Transform + pos: 69.5,12.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + pos: 70.5,12.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + pos: 71.5,12.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + pos: 71.5,13.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + pos: 71.5,14.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + pos: 71.5,15.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + pos: 71.5,16.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + pos: 71.5,17.5 + parent: 2 + - uid: 1304 + components: + - type: Transform + pos: 71.5,18.5 + parent: 2 + - uid: 1305 + components: + - type: Transform + pos: 71.5,19.5 + parent: 2 + - uid: 1306 + components: + - type: Transform + pos: 71.5,20.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: 72.5,20.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + pos: 73.5,20.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + pos: 74.5,20.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + pos: 75.5,20.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + pos: 70.5,20.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + pos: 69.5,10.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + pos: 70.5,16.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + pos: 69.5,16.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + pos: 72.5,16.5 + parent: 2 + - uid: 1316 + components: + - type: Transform + pos: 73.5,16.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + pos: 74.5,16.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + pos: 68.5,16.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: 75.5,16.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + pos: 70.5,10.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: 71.5,10.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + pos: 71.5,9.5 + parent: 2 + - uid: 1323 + components: + - type: Transform + pos: 71.5,8.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + pos: 71.5,7.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + pos: 71.5,6.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + pos: 71.5,5.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: 71.5,4.5 + parent: 2 + - uid: 1328 + components: + - type: Transform + pos: 72.5,8.5 + parent: 2 + - uid: 1329 + components: + - type: Transform + pos: 73.5,8.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + pos: 74.5,8.5 + parent: 2 + - uid: 1331 + components: + - type: Transform + pos: 72.5,10.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + pos: 73.5,10.5 + parent: 2 + - uid: 1333 + components: + - type: Transform + pos: 74.5,10.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + pos: 75.5,10.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + pos: 75.5,11.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + pos: 74.5,7.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + pos: 74.5,6.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: 74.5,5.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: 74.5,4.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + pos: 63.5,17.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + pos: 63.5,16.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + pos: 63.5,15.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + pos: 63.5,18.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + pos: 63.5,19.5 + parent: 2 + - uid: 1345 + components: + - type: Transform + pos: 63.5,20.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + pos: 63.5,21.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + pos: 63.5,22.5 + parent: 2 + - uid: 1348 + components: + - type: Transform + pos: 63.5,23.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + pos: 63.5,24.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + pos: 64.5,24.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: 64.5,20.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: 64.5,16.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 1358 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 + - uid: 1366 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - uid: 1377 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 1378 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + pos: 85.5,0.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: 85.5,1.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: 85.5,2.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + pos: 84.5,2.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + pos: 84.5,0.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: 84.5,-0.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + pos: 84.5,-1.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + pos: 84.5,-2.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + pos: 71.5,-11.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + pos: 70.5,-11.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + pos: 69.5,-11.5 + parent: 2 + - uid: 1393 + components: + - type: Transform + pos: 69.5,-12.5 + parent: 2 + - uid: 1394 + components: + - type: Transform + pos: 69.5,-13.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + pos: 69.5,-14.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: 69.5,-15.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + pos: 68.5,-15.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + pos: 68.5,-16.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: 68.5,-17.5 + parent: 2 + - uid: 1400 + components: + - type: Transform + pos: 68.5,-18.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: 68.5,-19.5 + parent: 2 + - uid: 1402 + components: + - type: Transform + pos: 68.5,-20.5 + parent: 2 + - uid: 1403 + components: + - type: Transform + pos: 68.5,-21.5 + parent: 2 + - uid: 1404 + components: + - type: Transform + pos: 68.5,-22.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + pos: 69.5,-10.5 + parent: 2 + - uid: 1406 + components: + - type: Transform + pos: 69.5,-9.5 + parent: 2 + - uid: 1407 + components: + - type: Transform + pos: 69.5,-8.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + pos: 70.5,-8.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + pos: 70.5,-7.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + pos: 70.5,-6.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + pos: 70.5,-5.5 + parent: 2 + - uid: 1412 + components: + - type: Transform + pos: 70.5,-4.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: 70.5,-3.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + pos: 71.5,-7.5 + parent: 2 + - uid: 1415 + components: + - type: Transform + pos: 72.5,-7.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + pos: 73.5,-7.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + pos: 74.5,-7.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + pos: 75.5,-7.5 + parent: 2 + - uid: 1419 + components: + - type: Transform + pos: 76.5,-7.5 + parent: 2 + - uid: 1420 + components: + - type: Transform + pos: 77.5,-7.5 + parent: 2 + - uid: 1421 + components: + - type: Transform + pos: 78.5,-7.5 + parent: 2 + - uid: 1422 + components: + - type: Transform + pos: 79.5,-7.5 + parent: 2 + - uid: 1423 + components: + - type: Transform + pos: 79.5,-8.5 + parent: 2 + - uid: 1424 + components: + - type: Transform + pos: 79.5,-9.5 + parent: 2 + - uid: 1425 + components: + - type: Transform + pos: 79.5,-10.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + pos: 79.5,-11.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + pos: 79.5,-12.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + pos: 79.5,-13.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + pos: 79.5,-14.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + pos: 79.5,-15.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + pos: 79.5,-16.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + pos: 80.5,-12.5 + parent: 2 + - uid: 1433 + components: + - type: Transform + pos: 81.5,-12.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + pos: 82.5,-12.5 + parent: 2 + - uid: 1435 + components: + - type: Transform + pos: 83.5,-12.5 + parent: 2 + - uid: 1436 + components: + - type: Transform + pos: 84.5,-12.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: 84.5,-11.5 + parent: 2 + - uid: 1438 + components: + - type: Transform + pos: 84.5,-10.5 + parent: 2 + - uid: 1439 + components: + - type: Transform + pos: 75.5,-9.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: 75.5,-10.5 + parent: 2 + - uid: 1441 + components: + - type: Transform + pos: 75.5,-11.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + pos: 74.5,-11.5 + parent: 2 + - uid: 1443 + components: + - type: Transform + pos: 75.5,-6.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + pos: 75.5,-5.5 + parent: 2 + - uid: 1445 + components: + - type: Transform + pos: 75.5,-4.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + pos: 75.5,-3.5 + parent: 2 + - uid: 1447 + components: + - type: Transform + pos: 74.5,-3.5 + parent: 2 + - uid: 1448 + components: + - type: Transform + pos: 79.5,-6.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + pos: 79.5,-5.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + pos: 79.5,-4.5 + parent: 2 + - uid: 1451 + components: + - type: Transform + pos: 79.5,-3.5 + parent: 2 + - uid: 1452 + components: + - type: Transform + pos: 79.5,2.5 + parent: 2 + - uid: 1453 + components: + - type: Transform + pos: 79.5,3.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + pos: 79.5,4.5 + parent: 2 + - uid: 1455 + components: + - type: Transform + pos: 79.5,0.5 + parent: 2 + - uid: 1456 + components: + - type: Transform + pos: 71.5,-1.5 + parent: 2 + - uid: 1457 + components: + - type: Transform + pos: 71.5,-0.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + pos: 71.5,0.5 + parent: 2 + - uid: 1459 + components: + - type: Transform + pos: 79.5,1.5 + parent: 2 + - uid: 1460 + components: + - type: Transform + pos: 79.5,5.5 + parent: 2 + - uid: 1461 + components: + - type: Transform + pos: 79.5,6.5 + parent: 2 + - uid: 1462 + components: + - type: Transform + pos: 79.5,7.5 + parent: 2 + - uid: 1463 + components: + - type: Transform + pos: 79.5,8.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + pos: 79.5,9.5 + parent: 2 + - uid: 1465 + components: + - type: Transform + pos: 79.5,10.5 + parent: 2 + - uid: 1466 + components: + - type: Transform + pos: 79.5,11.5 + parent: 2 + - uid: 1467 + components: + - type: Transform + pos: 79.5,12.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + pos: 79.5,13.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + pos: 78.5,5.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + pos: 77.5,5.5 + parent: 2 + - uid: 1471 + components: + - type: Transform + pos: 75.5,-28.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + pos: 75.5,-27.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: 75.5,-26.5 + parent: 2 + - uid: 1474 + components: + - type: Transform + pos: 75.5,-25.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + pos: 76.5,-25.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + pos: 77.5,-25.5 + parent: 2 + - uid: 1477 + components: + - type: Transform + pos: 78.5,-25.5 + parent: 2 + - uid: 1478 + components: + - type: Transform + pos: 74.5,-25.5 + parent: 2 + - uid: 1479 + components: + - type: Transform + pos: 73.5,-25.5 + parent: 2 + - uid: 1480 + components: + - type: Transform + pos: 72.5,-25.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: 78.5,-24.5 + parent: 2 + - uid: 1482 + components: + - type: Transform + pos: 78.5,-23.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: 78.5,-22.5 + parent: 2 + - uid: 1484 + components: + - type: Transform + pos: 78.5,-21.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + pos: 78.5,-20.5 + parent: 2 + - uid: 1486 + components: + - type: Transform + pos: 79.5,-20.5 + parent: 2 + - uid: 1487 + components: + - type: Transform + pos: 80.5,-20.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: 77.5,-20.5 + parent: 2 + - uid: 1489 + components: + - type: Transform + pos: 76.5,-20.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: 75.5,-20.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + pos: 74.5,-20.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: 73.5,-20.5 + parent: 2 + - uid: 1493 + components: + - type: Transform + pos: 74.5,-19.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: 74.5,-18.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: 74.5,-17.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: 74.5,-16.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: 74.5,-15.5 + parent: 2 + - uid: 1498 + components: + - type: Transform + pos: 75.5,-15.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + pos: 73.5,-15.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + pos: 72.5,-15.5 + parent: 2 + - uid: 1501 + components: + - type: Transform + pos: 86.5,-21.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: 87.5,-21.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + pos: 88.5,-21.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + pos: 88.5,-20.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + pos: 85.5,-21.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: 89.5,-22.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: 89.5,-20.5 + parent: 2 + - uid: 1508 + components: + - type: Transform + pos: 89.5,-19.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + pos: 89.5,-18.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: 90.5,-18.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + pos: 91.5,-18.5 + parent: 2 + - uid: 1512 + components: + - type: Transform + pos: 92.5,-18.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: 93.5,-18.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: 94.5,-18.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: 95.5,-18.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + pos: 96.5,-18.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: 97.5,-18.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: 98.5,-18.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: 99.5,-18.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + pos: 100.5,-18.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + pos: 101.5,-18.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: 102.5,-18.5 + parent: 2 + - uid: 1523 + components: + - type: Transform + pos: 96.5,-26.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: 97.5,-26.5 + parent: 2 + - uid: 1525 + components: + - type: Transform + pos: 98.5,-26.5 + parent: 2 + - uid: 1526 + components: + - type: Transform + pos: 98.5,-25.5 + parent: 2 + - uid: 1527 + components: + - type: Transform + pos: 98.5,-24.5 + parent: 2 + - uid: 1528 + components: + - type: Transform + pos: 98.5,-23.5 + parent: 2 + - uid: 1529 + components: + - type: Transform + pos: 98.5,-27.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + pos: 98.5,-28.5 + parent: 2 + - uid: 1531 + components: + - type: Transform + pos: 98.5,-29.5 + parent: 2 + - uid: 1573 + components: + - type: Transform + pos: 89.5,49.5 + parent: 2 + - uid: 1574 + components: + - type: Transform + pos: 89.5,48.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + pos: 99.5,49.5 + parent: 2 + - uid: 1580 + components: + - type: Transform + pos: 98.5,49.5 + parent: 2 + - uid: 1588 + components: + - type: Transform + pos: 99.5,47.5 + parent: 2 + - uid: 1589 + components: + - type: Transform + pos: 98.5,47.5 + parent: 2 + - uid: 1590 + components: + - type: Transform + pos: 96.5,50.5 + parent: 2 + - uid: 1591 + components: + - type: Transform + pos: 97.5,50.5 + parent: 2 + - uid: 6907 + components: + - type: Transform + pos: 100.5,46.5 + parent: 2 + - uid: 6913 + components: + - type: Transform + pos: 65.5,48.5 + parent: 2 + - uid: 7088 + components: + - type: Transform + pos: 100.5,47.5 + parent: 2 + - uid: 7559 + components: + - type: Transform + pos: 100.5,50.5 + parent: 2 + - uid: 7568 + components: + - type: Transform + pos: 98.5,50.5 + parent: 2 + - uid: 7569 + components: + - type: Transform + pos: 100.5,49.5 + parent: 2 + - uid: 7584 + components: + - type: Transform + pos: -6.5,9.5 + parent: 2 + - uid: 7606 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 7617 + components: + - type: Transform + pos: -7.5,2.5 + parent: 2 + - uid: 7623 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 7673 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 7675 + components: + - type: Transform + pos: -6.5,8.5 + parent: 2 + - uid: 8059 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 2 + - uid: 8060 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 2 + - uid: 8312 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - uid: 8313 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 11261 + components: + - type: Transform + pos: 100.5,45.5 + parent: 2 + - uid: 11614 + components: + - type: Transform + pos: 80.5,-4.5 + parent: 2 + - uid: 11615 + components: + - type: Transform + pos: 81.5,-4.5 + parent: 2 + - uid: 11616 + components: + - type: Transform + pos: 82.5,-4.5 + parent: 2 + - uid: 11617 + components: + - type: Transform + pos: 83.5,-4.5 + parent: 2 + - uid: 11618 + components: + - type: Transform + pos: 84.5,-4.5 + parent: 2 + - uid: 11619 + components: + - type: Transform + pos: 85.5,-4.5 + parent: 2 + - uid: 11620 + components: + - type: Transform + pos: 85.5,-5.5 + parent: 2 + - uid: 11621 + components: + - type: Transform + pos: 85.5,-6.5 + parent: 2 + - uid: 11622 + components: + - type: Transform + pos: 85.5,-7.5 + parent: 2 + - uid: 11623 + components: + - type: Transform + pos: 86.5,-7.5 + parent: 2 + - uid: 11624 + components: + - type: Transform + pos: 87.5,-7.5 + parent: 2 + - uid: 11625 + components: + - type: Transform + pos: 87.5,-8.5 + parent: 2 + - uid: 11626 + components: + - type: Transform + pos: 87.5,-9.5 + parent: 2 + - uid: 11627 + components: + - type: Transform + pos: 87.5,-10.5 + parent: 2 + - uid: 11628 + components: + - type: Transform + pos: 87.5,-11.5 + parent: 2 + - uid: 11629 + components: + - type: Transform + pos: 88.5,-11.5 + parent: 2 + - uid: 11630 + components: + - type: Transform + pos: 89.5,-11.5 + parent: 2 + - uid: 11631 + components: + - type: Transform + pos: 90.5,-11.5 + parent: 2 + - uid: 11632 + components: + - type: Transform + pos: 90.5,-10.5 + parent: 2 + - uid: 11633 + components: + - type: Transform + pos: 90.5,-9.5 + parent: 2 + - uid: 11654 + components: + - type: Transform + pos: 83.5,-43.5 + parent: 2 + - uid: 11655 + components: + - type: Transform + pos: 83.5,-42.5 + parent: 2 + - uid: 11656 + components: + - type: Transform + pos: 83.5,-41.5 + parent: 2 + - uid: 11657 + components: + - type: Transform + pos: 82.5,-41.5 + parent: 2 + - uid: 11658 + components: + - type: Transform + pos: 81.5,-41.5 + parent: 2 + - uid: 11659 + components: + - type: Transform + pos: 80.5,-41.5 + parent: 2 + - uid: 11660 + components: + - type: Transform + pos: 84.5,-42.5 + parent: 2 + - uid: 11661 + components: + - type: Transform + pos: 84.5,-43.5 + parent: 2 + - uid: 11662 + components: + - type: Transform + pos: 84.5,-44.5 + parent: 2 + - uid: 11663 + components: + - type: Transform + pos: 84.5,-45.5 + parent: 2 + - uid: 11664 + components: + - type: Transform + pos: 83.5,-45.5 + parent: 2 + - uid: 11665 + components: + - type: Transform + pos: 82.5,-45.5 + parent: 2 + - uid: 11666 + components: + - type: Transform + pos: 81.5,-45.5 + parent: 2 + - uid: 11667 + components: + - type: Transform + pos: 80.5,-45.5 + parent: 2 + - uid: 11668 + components: + - type: Transform + pos: 79.5,-45.5 + parent: 2 + - uid: 11669 + components: + - type: Transform + pos: 78.5,-45.5 + parent: 2 + - uid: 11670 + components: + - type: Transform + pos: 77.5,-45.5 + parent: 2 + - uid: 11671 + components: + - type: Transform + pos: 76.5,-45.5 + parent: 2 + - uid: 11672 + components: + - type: Transform + pos: 75.5,-45.5 + parent: 2 + - uid: 11673 + components: + - type: Transform + pos: 74.5,-45.5 + parent: 2 + - uid: 11674 + components: + - type: Transform + pos: 80.5,-46.5 + parent: 2 + - uid: 11675 + components: + - type: Transform + pos: 80.5,-47.5 + parent: 2 + - uid: 11676 + components: + - type: Transform + pos: 80.5,-48.5 + parent: 2 + - uid: 11677 + components: + - type: Transform + pos: 80.5,-49.5 + parent: 2 + - uid: 11678 + components: + - type: Transform + pos: 80.5,-50.5 + parent: 2 + - uid: 11679 + components: + - type: Transform + pos: 80.5,-51.5 + parent: 2 + - uid: 11680 + components: + - type: Transform + pos: 80.5,-52.5 + parent: 2 + - uid: 11681 + components: + - type: Transform + pos: 80.5,-53.5 + parent: 2 + - uid: 11682 + components: + - type: Transform + pos: 80.5,-54.5 + parent: 2 + - uid: 11683 + components: + - type: Transform + pos: 81.5,-54.5 + parent: 2 + - uid: 11684 + components: + - type: Transform + pos: 82.5,-54.5 + parent: 2 + - uid: 11685 + components: + - type: Transform + pos: 83.5,-54.5 + parent: 2 + - uid: 11686 + components: + - type: Transform + pos: 81.5,-50.5 + parent: 2 + - uid: 11687 + components: + - type: Transform + pos: 82.5,-50.5 + parent: 2 + - uid: 11688 + components: + - type: Transform + pos: 79.5,-53.5 + parent: 2 + - uid: 11689 + components: + - type: Transform + pos: 78.5,-53.5 + parent: 2 + - uid: 11698 + components: + - type: Transform + pos: 95.5,-3.5 + parent: 2 + - uid: 11699 + components: + - type: Transform + pos: 94.5,-3.5 + parent: 2 + - uid: 11700 + components: + - type: Transform + pos: 96.5,-3.5 + parent: 2 + - uid: 11701 + components: + - type: Transform + pos: 97.5,-3.5 + parent: 2 + - uid: 11702 + components: + - type: Transform + pos: 97.5,-2.5 + parent: 2 + - uid: 11703 + components: + - type: Transform + pos: 97.5,-1.5 + parent: 2 + - uid: 11704 + components: + - type: Transform + pos: 97.5,-0.5 + parent: 2 + - uid: 11705 + components: + - type: Transform + pos: 97.5,0.5 + parent: 2 + - uid: 11706 + components: + - type: Transform + pos: 97.5,1.5 + parent: 2 + - uid: 11707 + components: + - type: Transform + pos: 97.5,2.5 + parent: 2 + - uid: 11708 + components: + - type: Transform + pos: 97.5,3.5 + parent: 2 + - uid: 11709 + components: + - type: Transform + pos: 97.5,4.5 + parent: 2 + - uid: 11710 + components: + - type: Transform + pos: 97.5,5.5 + parent: 2 + - uid: 11711 + components: + - type: Transform + pos: 97.5,6.5 + parent: 2 + - uid: 11712 + components: + - type: Transform + pos: 97.5,7.5 + parent: 2 + - uid: 11713 + components: + - type: Transform + pos: 97.5,8.5 + parent: 2 + - uid: 11714 + components: + - type: Transform + pos: 97.5,9.5 + parent: 2 + - uid: 11715 + components: + - type: Transform + pos: 94.5,-4.5 + parent: 2 + - uid: 11716 + components: + - type: Transform + pos: 93.5,-4.5 + parent: 2 + - uid: 11717 + components: + - type: Transform + pos: 92.5,-4.5 + parent: 2 + - uid: 11718 + components: + - type: Transform + pos: 91.5,-4.5 + parent: 2 + - uid: 11719 + components: + - type: Transform + pos: 90.5,-4.5 + parent: 2 + - uid: 11720 + components: + - type: Transform + pos: 89.5,-4.5 + parent: 2 + - uid: 11721 + components: + - type: Transform + pos: 89.5,-3.5 + parent: 2 + - uid: 11722 + components: + - type: Transform + pos: 89.5,-2.5 + parent: 2 + - uid: 11723 + components: + - type: Transform + pos: 89.5,-1.5 + parent: 2 + - uid: 11724 + components: + - type: Transform + pos: 89.5,-0.5 + parent: 2 + - uid: 11725 + components: + - type: Transform + pos: 90.5,-0.5 + parent: 2 + - uid: 11726 + components: + - type: Transform + pos: 91.5,-0.5 + parent: 2 + - uid: 11727 + components: + - type: Transform + pos: 91.5,0.5 + parent: 2 + - uid: 11728 + components: + - type: Transform + pos: 91.5,1.5 + parent: 2 + - uid: 11729 + components: + - type: Transform + pos: 91.5,2.5 + parent: 2 + - uid: 11730 + components: + - type: Transform + pos: 91.5,3.5 + parent: 2 + - uid: 11731 + components: + - type: Transform + pos: 88.5,-0.5 + parent: 2 + - uid: 11732 + components: + - type: Transform + pos: 87.5,-0.5 + parent: 2 + - uid: 11733 + components: + - type: Transform + pos: 87.5,0.5 + parent: 2 + - uid: 11734 + components: + - type: Transform + pos: 87.5,1.5 + parent: 2 + - uid: 11735 + components: + - type: Transform + pos: 87.5,2.5 + parent: 2 + - uid: 11736 + components: + - type: Transform + pos: 94.5,-2.5 + parent: 2 + - uid: 11737 + components: + - type: Transform + pos: 94.5,-1.5 + parent: 2 + - uid: 11738 + components: + - type: Transform + pos: 94.5,-0.5 + parent: 2 + - uid: 11739 + components: + - type: Transform + pos: 94.5,0.5 + parent: 2 + - uid: 11740 + components: + - type: Transform + pos: 94.5,1.5 + parent: 2 + - uid: 11741 + components: + - type: Transform + pos: 94.5,2.5 + parent: 2 + - uid: 11771 + components: + - type: Transform + pos: 87.5,11.5 + parent: 2 + - uid: 11772 + components: + - type: Transform + pos: 86.5,11.5 + parent: 2 + - uid: 11773 + components: + - type: Transform + pos: 85.5,11.5 + parent: 2 + - uid: 11774 + components: + - type: Transform + pos: 85.5,12.5 + parent: 2 + - uid: 11775 + components: + - type: Transform + pos: 85.5,13.5 + parent: 2 + - uid: 11776 + components: + - type: Transform + pos: 85.5,14.5 + parent: 2 + - uid: 11777 + components: + - type: Transform + pos: 85.5,10.5 + parent: 2 + - uid: 11778 + components: + - type: Transform + pos: 85.5,9.5 + parent: 2 + - uid: 11779 + components: + - type: Transform + pos: 85.5,8.5 + parent: 2 + - uid: 11780 + components: + - type: Transform + pos: 85.5,7.5 + parent: 2 + - uid: 11781 + components: + - type: Transform + pos: 85.5,6.5 + parent: 2 + - uid: 11782 + components: + - type: Transform + pos: 85.5,5.5 + parent: 2 + - uid: 11783 + components: + - type: Transform + pos: 84.5,14.5 + parent: 2 + - uid: 11784 + components: + - type: Transform + pos: 83.5,14.5 + parent: 2 + - uid: 11785 + components: + - type: Transform + pos: 82.5,14.5 + parent: 2 + - uid: 11786 + components: + - type: Transform + pos: 86.5,12.5 + parent: 2 + - uid: 11787 + components: + - type: Transform + pos: 87.5,12.5 + parent: 2 + - uid: 11788 + components: + - type: Transform + pos: 88.5,12.5 + parent: 2 + - uid: 11789 + components: + - type: Transform + pos: 87.5,10.5 + parent: 2 + - uid: 11790 + components: + - type: Transform + pos: 88.5,10.5 + parent: 2 + - uid: 11791 + components: + - type: Transform + pos: 89.5,10.5 + parent: 2 + - uid: 11792 + components: + - type: Transform + pos: 90.5,10.5 + parent: 2 + - uid: 11793 + components: + - type: Transform + pos: 91.5,10.5 + parent: 2 + - uid: 11794 + components: + - type: Transform + pos: 92.5,10.5 + parent: 2 + - uid: 11795 + components: + - type: Transform + pos: 93.5,10.5 + parent: 2 + - uid: 11796 + components: + - type: Transform + pos: 86.5,5.5 + parent: 2 + - uid: 11797 + components: + - type: Transform + pos: 87.5,5.5 + parent: 2 + - uid: 11798 + components: + - type: Transform + pos: 88.5,5.5 + parent: 2 + - uid: 11799 + components: + - type: Transform + pos: 89.5,5.5 + parent: 2 + - uid: 11800 + components: + - type: Transform + pos: 90.5,5.5 + parent: 2 + - uid: 11801 + components: + - type: Transform + pos: 91.5,5.5 + parent: 2 + - uid: 11802 + components: + - type: Transform + pos: 92.5,5.5 + parent: 2 + - uid: 11803 + components: + - type: Transform + pos: 93.5,5.5 + parent: 2 + - uid: 11804 + components: + - type: Transform + pos: 77.5,22.5 + parent: 2 + - uid: 11805 + components: + - type: Transform + pos: 77.5,23.5 + parent: 2 + - uid: 11806 + components: + - type: Transform + pos: 77.5,24.5 + parent: 2 + - uid: 11807 + components: + - type: Transform + pos: 78.5,24.5 + parent: 2 + - uid: 11808 + components: + - type: Transform + pos: 79.5,24.5 + parent: 2 + - uid: 11809 + components: + - type: Transform + pos: 80.5,24.5 + parent: 2 + - uid: 11810 + components: + - type: Transform + pos: 81.5,24.5 + parent: 2 + - uid: 11811 + components: + - type: Transform + pos: 76.5,24.5 + parent: 2 + - uid: 11812 + components: + - type: Transform + pos: 75.5,24.5 + parent: 2 + - uid: 11813 + components: + - type: Transform + pos: 74.5,24.5 + parent: 2 + - uid: 11814 + components: + - type: Transform + pos: 73.5,24.5 + parent: 2 + - uid: 11815 + components: + - type: Transform + pos: 73.5,25.5 + parent: 2 + - uid: 11816 + components: + - type: Transform + pos: 73.5,26.5 + parent: 2 + - uid: 11817 + components: + - type: Transform + pos: 73.5,27.5 + parent: 2 + - uid: 11818 + components: + - type: Transform + pos: 73.5,28.5 + parent: 2 + - uid: 11819 + components: + - type: Transform + pos: 73.5,29.5 + parent: 2 + - uid: 11820 + components: + - type: Transform + pos: 73.5,30.5 + parent: 2 + - uid: 11821 + components: + - type: Transform + pos: 73.5,31.5 + parent: 2 + - uid: 11822 + components: + - type: Transform + pos: 73.5,32.5 + parent: 2 + - uid: 11823 + components: + - type: Transform + pos: 73.5,33.5 + parent: 2 + - uid: 11824 + components: + - type: Transform + pos: 73.5,34.5 + parent: 2 + - uid: 11825 + components: + - type: Transform + pos: 73.5,35.5 + parent: 2 + - uid: 11826 + components: + - type: Transform + pos: 73.5,36.5 + parent: 2 + - uid: 11827 + components: + - type: Transform + pos: 73.5,37.5 + parent: 2 + - uid: 11828 + components: + - type: Transform + pos: 73.5,38.5 + parent: 2 + - uid: 11829 + components: + - type: Transform + pos: 72.5,37.5 + parent: 2 + - uid: 11830 + components: + - type: Transform + pos: 72.5,35.5 + parent: 2 + - uid: 11831 + components: + - type: Transform + pos: 71.5,35.5 + parent: 2 + - uid: 11832 + components: + - type: Transform + pos: 71.5,36.5 + parent: 2 + - uid: 11833 + components: + - type: Transform + pos: 71.5,23.5 + parent: 2 + - uid: 11834 + components: + - type: Transform + pos: 72.5,23.5 + parent: 2 + - uid: 11835 + components: + - type: Transform + pos: 73.5,23.5 + parent: 2 + - uid: 11836 + components: + - type: Transform + pos: 72.5,25.5 + parent: 2 + - uid: 11837 + components: + - type: Transform + pos: 72.5,27.5 + parent: 2 + - uid: 11838 + components: + - type: Transform + pos: 72.5,29.5 + parent: 2 + - uid: 11839 + components: + - type: Transform + pos: 72.5,31.5 + parent: 2 + - uid: 11840 + components: + - type: Transform + pos: 72.5,33.5 + parent: 2 + - uid: 11848 + components: + - type: Transform + pos: 62.5,33.5 + parent: 2 + - uid: 11849 + components: + - type: Transform + pos: 62.5,32.5 + parent: 2 + - uid: 11850 + components: + - type: Transform + pos: 63.5,33.5 + parent: 2 + - uid: 11851 + components: + - type: Transform + pos: 63.5,34.5 + parent: 2 + - uid: 11852 + components: + - type: Transform + pos: 63.5,35.5 + parent: 2 + - uid: 11853 + components: + - type: Transform + pos: 63.5,36.5 + parent: 2 + - uid: 11854 + components: + - type: Transform + pos: 64.5,36.5 + parent: 2 + - uid: 11855 + components: + - type: Transform + pos: 64.5,37.5 + parent: 2 + - uid: 11856 + components: + - type: Transform + pos: 65.5,37.5 + parent: 2 + - uid: 11857 + components: + - type: Transform + pos: 66.5,37.5 + parent: 2 + - uid: 11858 + components: + - type: Transform + pos: 67.5,37.5 + parent: 2 + - uid: 11859 + components: + - type: Transform + pos: 68.5,37.5 + parent: 2 + - uid: 11860 + components: + - type: Transform + pos: 68.5,38.5 + parent: 2 + - uid: 11861 + components: + - type: Transform + pos: 69.5,38.5 + parent: 2 + - uid: 11862 + components: + - type: Transform + pos: 70.5,38.5 + parent: 2 + - uid: 11863 + components: + - type: Transform + pos: 71.5,38.5 + parent: 2 + - uid: 11864 + components: + - type: Transform + pos: 72.5,38.5 + parent: 2 + - uid: 11865 + components: + - type: Transform + pos: 72.5,39.5 + parent: 2 + - uid: 11866 + components: + - type: Transform + pos: 73.5,39.5 + parent: 2 + - uid: 11867 + components: + - type: Transform + pos: 74.5,39.5 + parent: 2 + - uid: 11868 + components: + - type: Transform + pos: 75.5,39.5 + parent: 2 + - uid: 11869 + components: + - type: Transform + pos: 75.5,40.5 + parent: 2 + - uid: 11870 + components: + - type: Transform + pos: 76.5,40.5 + parent: 2 + - uid: 11871 + components: + - type: Transform + pos: 77.5,40.5 + parent: 2 + - uid: 11872 + components: + - type: Transform + pos: 78.5,40.5 + parent: 2 + - uid: 11887 + components: + - type: Transform + pos: 85.5,28.5 + parent: 2 + - uid: 11888 + components: + - type: Transform + pos: 86.5,28.5 + parent: 2 + - uid: 11889 + components: + - type: Transform + pos: 86.5,27.5 + parent: 2 + - uid: 11890 + components: + - type: Transform + pos: 86.5,26.5 + parent: 2 + - uid: 11891 + components: + - type: Transform + pos: 86.5,25.5 + parent: 2 + - uid: 11892 + components: + - type: Transform + pos: 86.5,24.5 + parent: 2 + - uid: 11893 + components: + - type: Transform + pos: 86.5,29.5 + parent: 2 + - uid: 11894 + components: + - type: Transform + pos: 86.5,30.5 + parent: 2 + - uid: 11895 + components: + - type: Transform + pos: 86.5,31.5 + parent: 2 + - uid: 11896 + components: + - type: Transform + pos: 86.5,32.5 + parent: 2 + - uid: 11897 + components: + - type: Transform + pos: 86.5,33.5 + parent: 2 + - uid: 11898 + components: + - type: Transform + pos: 86.5,34.5 + parent: 2 + - uid: 11899 + components: + - type: Transform + pos: 87.5,27.5 + parent: 2 + - uid: 11900 + components: + - type: Transform + pos: 88.5,27.5 + parent: 2 + - uid: 11901 + components: + - type: Transform + pos: 89.5,27.5 + parent: 2 + - uid: 11902 + components: + - type: Transform + pos: 90.5,27.5 + parent: 2 + - uid: 11903 + components: + - type: Transform + pos: 91.5,27.5 + parent: 2 + - uid: 11904 + components: + - type: Transform + pos: 92.5,27.5 + parent: 2 + - uid: 11905 + components: + - type: Transform + pos: 93.5,27.5 + parent: 2 + - uid: 11906 + components: + - type: Transform + pos: 94.5,27.5 + parent: 2 + - uid: 11907 + components: + - type: Transform + pos: 87.5,30.5 + parent: 2 + - uid: 11908 + components: + - type: Transform + pos: 88.5,30.5 + parent: 2 + - uid: 11909 + components: + - type: Transform + pos: 89.5,30.5 + parent: 2 + - uid: 11910 + components: + - type: Transform + pos: 90.5,30.5 + parent: 2 + - uid: 11911 + components: + - type: Transform + pos: 91.5,30.5 + parent: 2 + - uid: 11912 + components: + - type: Transform + pos: 92.5,30.5 + parent: 2 + - uid: 11913 + components: + - type: Transform + pos: 93.5,30.5 + parent: 2 + - uid: 11914 + components: + - type: Transform + pos: 94.5,30.5 + parent: 2 + - uid: 11915 + components: + - type: Transform + pos: 90.5,31.5 + parent: 2 + - uid: 11916 + components: + - type: Transform + pos: 90.5,32.5 + parent: 2 + - uid: 11917 + components: + - type: Transform + pos: 90.5,26.5 + parent: 2 + - uid: 11918 + components: + - type: Transform + pos: 90.5,25.5 + parent: 2 + - uid: 11919 + components: + - type: Transform + pos: 94.5,26.5 + parent: 2 + - uid: 11920 + components: + - type: Transform + pos: 94.5,25.5 + parent: 2 + - uid: 11921 + components: + - type: Transform + pos: 95.5,30.5 + parent: 2 + - uid: 11922 + components: + - type: Transform + pos: 95.5,31.5 + parent: 2 + - uid: 11923 + components: + - type: Transform + pos: 95.5,25.5 + parent: 2 + - uid: 11941 + components: + - type: Transform + pos: 82.5,38.5 + parent: 2 + - uid: 11942 + components: + - type: Transform + pos: 82.5,39.5 + parent: 2 + - uid: 11943 + components: + - type: Transform + pos: 82.5,40.5 + parent: 2 + - uid: 11944 + components: + - type: Transform + pos: 83.5,40.5 + parent: 2 + - uid: 11945 + components: + - type: Transform + pos: 84.5,40.5 + parent: 2 + - uid: 11946 + components: + - type: Transform + pos: 85.5,40.5 + parent: 2 + - uid: 11947 + components: + - type: Transform + pos: 86.5,40.5 + parent: 2 + - uid: 11948 + components: + - type: Transform + pos: 87.5,40.5 + parent: 2 + - uid: 11949 + components: + - type: Transform + pos: 88.5,40.5 + parent: 2 + - uid: 11950 + components: + - type: Transform + pos: 86.5,39.5 + parent: 2 + - uid: 11951 + components: + - type: Transform + pos: 86.5,38.5 + parent: 2 + - uid: 11952 + components: + - type: Transform + pos: 81.5,40.5 + parent: 2 + - uid: 11953 + components: + - type: Transform + pos: 80.5,40.5 + parent: 2 + - uid: 11954 + components: + - type: Transform + pos: 80.5,41.5 + parent: 2 + - uid: 11955 + components: + - type: Transform + pos: 80.5,42.5 + parent: 2 + - uid: 11956 + components: + - type: Transform + pos: 80.5,43.5 + parent: 2 + - uid: 11957 + components: + - type: Transform + pos: 80.5,44.5 + parent: 2 + - uid: 11958 + components: + - type: Transform + pos: 80.5,45.5 + parent: 2 + - uid: 11959 + components: + - type: Transform + pos: 80.5,46.5 + parent: 2 + - uid: 11960 + components: + - type: Transform + pos: 80.5,47.5 + parent: 2 + - uid: 11961 + components: + - type: Transform + pos: 79.5,47.5 + parent: 2 + - uid: 11962 + components: + - type: Transform + pos: 78.5,47.5 + parent: 2 + - uid: 11963 + components: + - type: Transform + pos: 77.5,47.5 + parent: 2 + - uid: 11964 + components: + - type: Transform + pos: 76.5,47.5 + parent: 2 + - uid: 11965 + components: + - type: Transform + pos: 76.5,48.5 + parent: 2 + - uid: 11966 + components: + - type: Transform + pos: 80.5,48.5 + parent: 2 + - uid: 11967 + components: + - type: Transform + pos: 81.5,48.5 + parent: 2 + - uid: 11968 + components: + - type: Transform + pos: 82.5,48.5 + parent: 2 + - uid: 11969 + components: + - type: Transform + pos: 83.5,48.5 + parent: 2 + - uid: 11970 + components: + - type: Transform + pos: 82.5,49.5 + parent: 2 + - uid: 11971 + components: + - type: Transform + pos: 82.5,50.5 + parent: 2 + - uid: 11972 + components: + - type: Transform + pos: 81.5,50.5 + parent: 2 + - uid: 11973 + components: + - type: Transform + pos: 83.5,50.5 + parent: 2 + - uid: 11974 + components: + - type: Transform + pos: 84.5,48.5 + parent: 2 + - uid: 11975 + components: + - type: Transform + pos: 85.5,48.5 + parent: 2 + - uid: 11976 + components: + - type: Transform + pos: 86.5,48.5 + parent: 2 + - uid: 11977 + components: + - type: Transform + pos: 87.5,48.5 + parent: 2 + - uid: 11978 + components: + - type: Transform + pos: 88.5,48.5 + parent: 2 + - uid: 11979 + components: + - type: Transform + pos: 87.5,41.5 + parent: 2 + - uid: 11980 + components: + - type: Transform + pos: 87.5,42.5 + parent: 2 + - uid: 11981 + components: + - type: Transform + pos: 87.5,43.5 + parent: 2 + - uid: 11982 + components: + - type: Transform + pos: 88.5,43.5 + parent: 2 + - uid: 11983 + components: + - type: Transform + pos: 89.5,43.5 + parent: 2 + - uid: 11984 + components: + - type: Transform + pos: 90.5,43.5 + parent: 2 + - uid: 11985 + components: + - type: Transform + pos: 91.5,43.5 + parent: 2 + - uid: 11986 + components: + - type: Transform + pos: 92.5,43.5 + parent: 2 + - uid: 11987 + components: + - type: Transform + pos: 93.5,43.5 + parent: 2 + - uid: 11988 + components: + - type: Transform + pos: 94.5,43.5 + parent: 2 + - uid: 11989 + components: + - type: Transform + pos: 95.5,43.5 + parent: 2 + - uid: 11990 + components: + - type: Transform + pos: 96.5,43.5 + parent: 2 + - uid: 11991 + components: + - type: Transform + pos: 97.5,43.5 + parent: 2 + - uid: 11992 + components: + - type: Transform + pos: 98.5,43.5 + parent: 2 + - uid: 11993 + components: + - type: Transform + pos: 92.5,42.5 + parent: 2 + - uid: 11994 + components: + - type: Transform + pos: 92.5,41.5 + parent: 2 + - uid: 11995 + components: + - type: Transform + pos: 91.5,41.5 + parent: 2 + - uid: 11999 + components: + - type: Transform + pos: 86.5,49.5 + parent: 2 + - uid: 12000 + components: + - type: Transform + pos: 86.5,50.5 + parent: 2 + - uid: 12001 + components: + - type: Transform + pos: 86.5,51.5 + parent: 2 + - uid: 12002 + components: + - type: Transform + pos: 90.5,50.5 + parent: 2 + - uid: 12003 + components: + - type: Transform + pos: 91.5,50.5 + parent: 2 + - uid: 12004 + components: + - type: Transform + pos: 92.5,50.5 + parent: 2 + - uid: 12005 + components: + - type: Transform + pos: 93.5,50.5 + parent: 2 + - uid: 12006 + components: + - type: Transform + pos: 94.5,50.5 + parent: 2 + - uid: 12007 + components: + - type: Transform + pos: 95.5,50.5 + parent: 2 + - uid: 12014 + components: + - type: Transform + pos: 100.5,48.5 + parent: 2 + - uid: 12015 + components: + - type: Transform + pos: 101.5,48.5 + parent: 2 + - uid: 12016 + components: + - type: Transform + pos: 102.5,48.5 + parent: 2 + - uid: 12017 + components: + - type: Transform + pos: 103.5,48.5 + parent: 2 + - uid: 12018 + components: + - type: Transform + pos: 103.5,50.5 + parent: 2 + - uid: 12019 + components: + - type: Transform + pos: 103.5,49.5 + parent: 2 + - uid: 12020 + components: + - type: Transform + pos: 103.5,47.5 + parent: 2 + - uid: 12021 + components: + - type: Transform + pos: 103.5,46.5 + parent: 2 + - uid: 12022 + components: + - type: Transform + pos: 103.5,45.5 + parent: 2 + - uid: 12023 + components: + - type: Transform + pos: 98.5,46.5 + parent: 2 + - uid: 12024 + components: + - type: Transform + pos: 98.5,45.5 + parent: 2 + - uid: 12025 + components: + - type: Transform + pos: 98.5,44.5 + parent: 2 + - uid: 12026 + components: + - type: Transform + pos: 67.5,44.5 + parent: 2 + - uid: 12048 + components: + - type: Transform + pos: 68.5,44.5 + parent: 2 + - uid: 12049 + components: + - type: Transform + pos: 69.5,44.5 + parent: 2 + - uid: 12050 + components: + - type: Transform + pos: 70.5,44.5 + parent: 2 + - uid: 12051 + components: + - type: Transform + pos: 70.5,45.5 + parent: 2 + - uid: 12052 + components: + - type: Transform + pos: 70.5,46.5 + parent: 2 + - uid: 12053 + components: + - type: Transform + pos: 70.5,47.5 + parent: 2 + - uid: 12054 + components: + - type: Transform + pos: 71.5,47.5 + parent: 2 + - uid: 12055 + components: + - type: Transform + pos: 70.5,48.5 + parent: 2 + - uid: 12056 + components: + - type: Transform + pos: 69.5,48.5 + parent: 2 + - uid: 12057 + components: + - type: Transform + pos: 70.5,49.5 + parent: 2 + - uid: 12058 + components: + - type: Transform + pos: 71.5,49.5 + parent: 2 + - uid: 12059 + components: + - type: Transform + pos: 72.5,49.5 + parent: 2 + - uid: 12060 + components: + - type: Transform + pos: 72.5,47.5 + parent: 2 + - uid: 12061 + components: + - type: Transform + pos: 73.5,47.5 + parent: 2 + - uid: 12062 + components: + - type: Transform + pos: 73.5,48.5 + parent: 2 + - uid: 12063 + components: + - type: Transform + pos: 70.5,43.5 + parent: 2 + - uid: 12064 + components: + - type: Transform + pos: 71.5,43.5 + parent: 2 + - uid: 12065 + components: + - type: Transform + pos: 72.5,43.5 + parent: 2 + - uid: 12066 + components: + - type: Transform + pos: 67.5,43.5 + parent: 2 + - uid: 12067 + components: + - type: Transform + pos: 66.5,43.5 + parent: 2 + - uid: 12068 + components: + - type: Transform + pos: 65.5,43.5 + parent: 2 + - uid: 12069 + components: + - type: Transform + pos: 64.5,43.5 + parent: 2 + - uid: 12070 + components: + - type: Transform + pos: 64.5,44.5 + parent: 2 + - uid: 12071 + components: + - type: Transform + pos: 64.5,45.5 + parent: 2 + - uid: 12072 + components: + - type: Transform + pos: 64.5,46.5 + parent: 2 + - uid: 12073 + components: + - type: Transform + pos: 64.5,47.5 + parent: 2 + - uid: 12074 + components: + - type: Transform + pos: 64.5,48.5 + parent: 2 + - uid: 12076 + components: + - type: Transform + pos: 63.5,45.5 + parent: 2 + - uid: 12077 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 + - uid: 12078 + components: + - type: Transform + pos: 61.5,45.5 + parent: 2 + - uid: 12079 + components: + - type: Transform + pos: 63.5,43.5 + parent: 2 + - uid: 12080 + components: + - type: Transform + pos: 62.5,43.5 + parent: 2 + - uid: 12081 + components: + - type: Transform + pos: 61.5,43.5 + parent: 2 + - uid: 12099 + components: + - type: Transform + pos: 100.5,51.5 + parent: 2 + - uid: 12111 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 12230 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 12262 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - uid: 12263 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 12264 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 12363 + components: + - type: Transform + pos: 96.5,30.5 + parent: 2 + - uid: 12364 + components: + - type: Transform + pos: 97.5,30.5 + parent: 2 + - uid: 12365 + components: + - type: Transform + pos: 97.5,29.5 + parent: 2 + - uid: 12366 + components: + - type: Transform + pos: 97.5,28.5 + parent: 2 + - uid: 12367 + components: + - type: Transform + pos: 97.5,27.5 + parent: 2 + - uid: 12368 + components: + - type: Transform + pos: 97.5,26.5 + parent: 2 + - uid: 12369 + components: + - type: Transform + pos: 97.5,25.5 + parent: 2 + - uid: 12371 + components: + - type: Transform + pos: 104.5,49.5 + parent: 2 + - uid: 12372 + components: + - type: Transform + pos: 105.5,49.5 + parent: 2 + - uid: 12374 + components: + - type: Transform + pos: 104.5,46.5 + parent: 2 + - uid: 12375 + components: + - type: Transform + pos: 105.5,46.5 + parent: 2 + - uid: 12376 + components: + - type: Transform + pos: 106.5,46.5 + parent: 2 + - uid: 12377 + components: + - type: Transform + pos: 103.5,44.5 + parent: 2 + - uid: 12378 + components: + - type: Transform + pos: 103.5,43.5 + parent: 2 + - uid: 12660 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 12661 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 12662 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 12663 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 12664 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 12665 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 12666 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 12667 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 12668 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 12669 + components: + - type: Transform + pos: -3.5,12.5 + parent: 2 + - uid: 12670 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - uid: 12671 + components: + - type: Transform + pos: -5.5,12.5 + parent: 2 + - uid: 12672 + components: + - type: Transform + pos: -6.5,12.5 + parent: 2 + - uid: 12673 + components: + - type: Transform + pos: -7.5,12.5 + parent: 2 + - uid: 12674 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 + - uid: 12675 + components: + - type: Transform + pos: -9.5,12.5 + parent: 2 + - uid: 12676 + components: + - type: Transform + pos: -10.5,12.5 + parent: 2 + - uid: 12677 + components: + - type: Transform + pos: -11.5,12.5 + parent: 2 + - uid: 12678 + components: + - type: Transform + pos: -12.5,12.5 + parent: 2 + - uid: 12679 + components: + - type: Transform + pos: -13.5,12.5 + parent: 2 + - uid: 12680 + components: + - type: Transform + pos: -14.5,12.5 + parent: 2 + - uid: 12681 + components: + - type: Transform + pos: -15.5,12.5 + parent: 2 + - uid: 12682 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 12683 + components: + - type: Transform + pos: -17.5,12.5 + parent: 2 + - uid: 12684 + components: + - type: Transform + pos: -17.5,13.5 + parent: 2 + - uid: 12685 + components: + - type: Transform + pos: -15.5,13.5 + parent: 2 + - uid: 12686 + components: + - type: Transform + pos: -35.5,7.5 + parent: 2 + - uid: 12687 + components: + - type: Transform + pos: -35.5,8.5 + parent: 2 + - uid: 12688 + components: + - type: Transform + pos: -35.5,9.5 + parent: 2 + - uid: 12689 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 + - uid: 12690 + components: + - type: Transform + pos: -34.5,10.5 + parent: 2 + - uid: 12691 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 + - uid: 12692 + components: + - type: Transform + pos: -32.5,10.5 + parent: 2 + - uid: 12693 + components: + - type: Transform + pos: -32.5,11.5 + parent: 2 + - uid: 12694 + components: + - type: Transform + pos: -31.5,11.5 + parent: 2 + - uid: 12695 + components: + - type: Transform + pos: -30.5,11.5 + parent: 2 + - uid: 12696 + components: + - type: Transform + pos: -29.5,11.5 + parent: 2 + - uid: 12697 + components: + - type: Transform + pos: -28.5,11.5 + parent: 2 + - uid: 12698 + components: + - type: Transform + pos: -27.5,11.5 + parent: 2 + - uid: 12699 + components: + - type: Transform + pos: -26.5,11.5 + parent: 2 + - uid: 12700 + components: + - type: Transform + pos: -25.5,11.5 + parent: 2 + - uid: 12701 + components: + - type: Transform + pos: -24.5,11.5 + parent: 2 + - uid: 12702 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - uid: 12703 + components: + - type: Transform + pos: -22.5,11.5 + parent: 2 + - uid: 12712 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - uid: 12713 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 + - uid: 12714 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 12715 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - uid: 12716 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - uid: 12717 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 12718 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - uid: 12719 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 12720 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 + - uid: 12721 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 + - uid: 12722 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 12723 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 12724 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - uid: 12725 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 12737 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 2 + - uid: 12740 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 2 + - uid: 12759 + components: + - type: Transform + pos: 85.5,15.5 + parent: 2 + - uid: 12760 + components: + - type: Transform + pos: 85.5,16.5 + parent: 2 + - uid: 12761 + components: + - type: Transform + pos: 85.5,17.5 + parent: 2 + - uid: 12762 + components: + - type: Transform + pos: 84.5,17.5 + parent: 2 + - uid: 12763 + components: + - type: Transform + pos: 83.5,17.5 + parent: 2 + - uid: 12764 + components: + - type: Transform + pos: 82.5,17.5 + parent: 2 + - uid: 12765 + components: + - type: Transform + pos: 81.5,17.5 + parent: 2 + - uid: 12766 + components: + - type: Transform + pos: 80.5,17.5 + parent: 2 + - uid: 12767 + components: + - type: Transform + pos: 80.5,18.5 + parent: 2 + - uid: 12768 + components: + - type: Transform + pos: 80.5,19.5 + parent: 2 + - uid: 12769 + components: + - type: Transform + pos: 80.5,20.5 + parent: 2 + - uid: 12770 + components: + - type: Transform + pos: 80.5,21.5 + parent: 2 + - uid: 12789 + components: + - type: Transform + pos: 61.5,32.5 + parent: 2 + - uid: 12790 + components: + - type: Transform + pos: 60.5,32.5 + parent: 2 + - uid: 12791 + components: + - type: Transform + pos: 59.5,32.5 + parent: 2 + - uid: 12792 + components: + - type: Transform + pos: 58.5,32.5 + parent: 2 + - uid: 12793 + components: + - type: Transform + pos: 57.5,32.5 + parent: 2 + - uid: 12794 + components: + - type: Transform + pos: 56.5,32.5 + parent: 2 + - uid: 12795 + components: + - type: Transform + pos: 55.5,32.5 + parent: 2 + - uid: 12796 + components: + - type: Transform + pos: 54.5,32.5 + parent: 2 + - uid: 12797 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 + - uid: 12800 + components: + - type: Transform + pos: 55.5,31.5 + parent: 2 + - uid: 12801 + components: + - type: Transform + pos: 58.5,31.5 + parent: 2 + - uid: 12804 + components: + - type: Transform + pos: 63.5,32.5 + parent: 2 + - uid: 12805 + components: + - type: Transform + pos: 64.5,32.5 + parent: 2 + - uid: 12817 + components: + - type: Transform + pos: 81.5,25.5 + parent: 2 + - uid: 12818 + components: + - type: Transform + pos: 81.5,26.5 + parent: 2 + - uid: 12819 + components: + - type: Transform + pos: 81.5,27.5 + parent: 2 + - uid: 12820 + components: + - type: Transform + pos: 81.5,28.5 + parent: 2 + - uid: 12821 + components: + - type: Transform + pos: 81.5,29.5 + parent: 2 + - uid: 12822 + components: + - type: Transform + pos: 81.5,30.5 + parent: 2 + - uid: 12823 + components: + - type: Transform + pos: 81.5,31.5 + parent: 2 + - uid: 12824 + components: + - type: Transform + pos: 82.5,31.5 + parent: 2 + - uid: 12825 + components: + - type: Transform + pos: 83.5,31.5 + parent: 2 + - uid: 12826 + components: + - type: Transform + pos: 81.5,32.5 + parent: 2 + - uid: 12827 + components: + - type: Transform + pos: 81.5,33.5 + parent: 2 + - uid: 12828 + components: + - type: Transform + pos: 81.5,34.5 + parent: 2 + - uid: 12829 + components: + - type: Transform + pos: 81.5,35.5 + parent: 2 + - uid: 12852 + components: + - type: Transform + pos: 71.5,-30.5 + parent: 2 + - uid: 12853 + components: + - type: Transform + pos: 72.5,-30.5 + parent: 2 + - uid: 12854 + components: + - type: Transform + pos: 72.5,-31.5 + parent: 2 + - uid: 12855 + components: + - type: Transform + pos: 72.5,-32.5 + parent: 2 + - uid: 12884 + components: + - type: Transform + pos: 48.5,17.5 + parent: 2 + - uid: 12885 + components: + - type: Transform + pos: 48.5,16.5 + parent: 2 + - uid: 12886 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 + - uid: 12887 + components: + - type: Transform + pos: 46.5,16.5 + parent: 2 + - uid: 12888 + components: + - type: Transform + pos: 46.5,17.5 + parent: 2 + - uid: 12889 + components: + - type: Transform + pos: 46.5,18.5 + parent: 2 + - uid: 12890 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 12891 + components: + - type: Transform + pos: 47.5,19.5 + parent: 2 + - uid: 12892 + components: + - type: Transform + pos: 45.5,16.5 + parent: 2 + - uid: 12893 + components: + - type: Transform + pos: 44.5,16.5 + parent: 2 + - uid: 12894 + components: + - type: Transform + pos: 43.5,16.5 + parent: 2 + - uid: 12895 + components: + - type: Transform + pos: 43.5,15.5 + parent: 2 + - uid: 12896 + components: + - type: Transform + pos: 42.5,15.5 + parent: 2 + - uid: 12897 + components: + - type: Transform + pos: 41.5,15.5 + parent: 2 + - uid: 12898 + components: + - type: Transform + pos: 40.5,15.5 + parent: 2 + - uid: 12899 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - uid: 12910 + components: + - type: Transform + pos: 68.5,-23.5 + parent: 2 + - uid: 12930 + components: + - type: Transform + pos: 37.5,14.5 + parent: 2 + - uid: 12931 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 + - uid: 12932 + components: + - type: Transform + pos: 35.5,14.5 + parent: 2 + - uid: 12933 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 + - uid: 12934 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - uid: 13196 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 2 + - uid: 13197 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 2 + - uid: 13198 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 2 + - uid: 13199 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 2 + - uid: 13201 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - uid: 13202 + components: + - type: Transform + pos: -15.5,-10.5 + parent: 2 + - uid: 13203 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - uid: 13204 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 + - uid: 13547 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - uid: 13715 + components: + - type: Transform + pos: 61.5,-24.5 + parent: 2 + - uid: 13716 + components: + - type: Transform + pos: 60.5,-24.5 + parent: 2 + - uid: 13717 + components: + - type: Transform + pos: 59.5,-24.5 + parent: 2 + - uid: 13718 + components: + - type: Transform + pos: 58.5,-24.5 + parent: 2 + - uid: 13719 + components: + - type: Transform + pos: 57.5,-24.5 + parent: 2 + - uid: 13720 + components: + - type: Transform + pos: 56.5,-24.5 + parent: 2 + - uid: 13721 + components: + - type: Transform + pos: 55.5,-24.5 + parent: 2 + - uid: 13745 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 2 + - uid: 13746 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 2 + - uid: 13747 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - uid: 13748 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - uid: 13749 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 + - uid: 13750 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 + - uid: 13751 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 2 + - uid: 13752 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 + - uid: 13753 + components: + - type: Transform + pos: -37.5,-1.5 + parent: 2 + - uid: 13754 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 2 + - uid: 13755 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 2 + - uid: 13756 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - uid: 13757 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 + - uid: 13758 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 13759 + components: + - type: Transform + pos: -38.5,0.5 + parent: 2 + - uid: 13760 + components: + - type: Transform + pos: -38.5,1.5 + parent: 2 + - uid: 13761 + components: + - type: Transform + pos: -39.5,1.5 + parent: 2 + - uid: 13765 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 + - uid: 13766 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 13767 + components: + - type: Transform + pos: -45.5,9.5 + parent: 2 + - uid: 13768 + components: + - type: Transform + pos: -44.5,9.5 + parent: 2 + - uid: 13770 + components: + - type: Transform + pos: -45.5,7.5 + parent: 2 + - uid: 13771 + components: + - type: Transform + pos: -45.5,8.5 + parent: 2 + - uid: 13772 + components: + - type: Transform + pos: -48.5,7.5 + parent: 2 + - uid: 13781 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 13782 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 13783 + components: + - type: Transform + pos: -23.5,1.5 + parent: 2 + - uid: 13784 + components: + - type: Transform + pos: -24.5,1.5 + parent: 2 + - uid: 13785 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 13786 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 13787 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 13788 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - uid: 13790 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - uid: 13791 + components: + - type: Transform + pos: 70.5,-39.5 + parent: 2 + - uid: 13792 + components: + - type: Transform + pos: 70.5,-40.5 + parent: 2 + - uid: 13793 + components: + - type: Transform + pos: 70.5,-41.5 + parent: 2 + - uid: 13794 + components: + - type: Transform + pos: 70.5,-42.5 + parent: 2 + - uid: 13795 + components: + - type: Transform + pos: 70.5,-43.5 + parent: 2 + - uid: 13796 + components: + - type: Transform + pos: 70.5,-44.5 + parent: 2 + - uid: 13797 + components: + - type: Transform + pos: 70.5,-45.5 + parent: 2 + - uid: 13798 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 13799 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 13800 + components: + - type: Transform + pos: 70.5,-40.5 + parent: 2 + - uid: 13801 + components: + - type: Transform + pos: 69.5,-40.5 + parent: 2 + - uid: 13802 + components: + - type: Transform + pos: 68.5,-40.5 + parent: 2 + - uid: 13803 + components: + - type: Transform + pos: 67.5,-40.5 + parent: 2 + - uid: 13804 + components: + - type: Transform + pos: 66.5,-40.5 + parent: 2 + - uid: 13805 + components: + - type: Transform + pos: 65.5,-40.5 + parent: 2 + - uid: 13806 + components: + - type: Transform + pos: 64.5,-40.5 + parent: 2 + - uid: 13807 + components: + - type: Transform + pos: 63.5,-40.5 + parent: 2 + - uid: 13808 + components: + - type: Transform + pos: 62.5,-40.5 + parent: 2 + - uid: 13809 + components: + - type: Transform + pos: 61.5,-40.5 + parent: 2 + - uid: 13810 + components: + - type: Transform + pos: 61.5,-41.5 + parent: 2 + - uid: 13811 + components: + - type: Transform + pos: 61.5,-42.5 + parent: 2 + - uid: 13812 + components: + - type: Transform + pos: 61.5,-43.5 + parent: 2 + - uid: 13813 + components: + - type: Transform + pos: 61.5,-44.5 + parent: 2 + - uid: 13814 + components: + - type: Transform + pos: 69.5,-44.5 + parent: 2 + - uid: 13815 + components: + - type: Transform + pos: 68.5,-44.5 + parent: 2 + - uid: 13816 + components: + - type: Transform + pos: 67.5,-44.5 + parent: 2 + - uid: 13817 + components: + - type: Transform + pos: 66.5,-44.5 + parent: 2 + - uid: 13818 + components: + - type: Transform + pos: 65.5,-44.5 + parent: 2 + - uid: 13819 + components: + - type: Transform + pos: 64.5,-44.5 + parent: 2 + - uid: 13820 + components: + - type: Transform + pos: 63.5,-44.5 + parent: 2 + - uid: 13821 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 2 + - uid: 13822 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 13823 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 13824 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 2 + - uid: 13825 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 + - uid: 13826 + components: + - type: Transform + pos: 65.5,-41.5 + parent: 2 + - uid: 13827 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 2 + - uid: 13828 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - uid: 13830 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 2 + - uid: 13831 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 + - uid: 13832 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - uid: 13833 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 2 + - uid: 13836 + components: + - type: Transform + pos: -46.5,-8.5 + parent: 2 + - uid: 13837 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 2 + - uid: 13838 + components: + - type: Transform + pos: -47.5,-9.5 + parent: 2 + - uid: 13839 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - uid: 13840 + components: + - type: Transform + pos: -57.5,-8.5 + parent: 2 + - uid: 13841 + components: + - type: Transform + pos: -58.5,-8.5 + parent: 2 + - uid: 13842 + components: + - type: Transform + pos: -56.5,-8.5 + parent: 2 + - uid: 13843 + components: + - type: Transform + pos: -59.5,-4.5 + parent: 2 + - uid: 13844 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 2 + - uid: 13845 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 2 + - uid: 13846 + components: + - type: Transform + pos: -61.5,-6.5 + parent: 2 + - uid: 13847 + components: + - type: Transform + pos: -61.5,-7.5 + parent: 2 + - uid: 13848 + components: + - type: Transform + pos: -61.5,-8.5 + parent: 2 + - uid: 13849 + components: + - type: Transform + pos: -62.5,-8.5 + parent: 2 + - uid: 13850 + components: + - type: Transform + pos: -63.5,-8.5 + parent: 2 + - uid: 13851 + components: + - type: Transform + pos: -71.5,-5.5 + parent: 2 + - uid: 13852 + components: + - type: Transform + pos: -71.5,-6.5 + parent: 2 + - uid: 13853 + components: + - type: Transform + pos: -71.5,-7.5 + parent: 2 + - uid: 13854 + components: + - type: Transform + pos: -70.5,-7.5 + parent: 2 + - uid: 13855 + components: + - type: Transform + pos: -72.5,-6.5 + parent: 2 + - uid: 13856 + components: + - type: Transform + pos: -73.5,-3.5 + parent: 2 + - uid: 13857 + components: + - type: Transform + pos: -73.5,-4.5 + parent: 2 + - uid: 13858 + components: + - type: Transform + pos: -73.5,-5.5 + parent: 2 + - uid: 13859 + components: + - type: Transform + pos: -74.5,-5.5 + parent: 2 + - uid: 13860 + components: + - type: Transform + pos: -74.5,-4.5 + parent: 2 + - uid: 13861 + components: + - type: Transform + pos: -74.5,-3.5 + parent: 2 + - uid: 13862 + components: + - type: Transform + pos: -75.5,-3.5 + parent: 2 + - uid: 13863 + components: + - type: Transform + pos: -75.5,-2.5 + parent: 2 + - uid: 13864 + components: + - type: Transform + pos: -76.5,-2.5 + parent: 2 + - uid: 13865 + components: + - type: Transform + pos: -75.5,-0.5 + parent: 2 + - uid: 13866 + components: + - type: Transform + pos: -76.5,-0.5 + parent: 2 + - uid: 13867 + components: + - type: Transform + pos: -76.5,0.5 + parent: 2 + - uid: 13868 + components: + - type: Transform + pos: -76.5,1.5 + parent: 2 + - uid: 13869 + components: + - type: Transform + pos: -76.5,2.5 + parent: 2 + - uid: 13870 + components: + - type: Transform + pos: -74.5,4.5 + parent: 2 + - uid: 13871 + components: + - type: Transform + pos: -75.5,4.5 + parent: 2 + - uid: 13872 + components: + - type: Transform + pos: -76.5,4.5 + parent: 2 + - uid: 13873 + components: + - type: Transform + pos: -75.5,5.5 + parent: 2 + - uid: 13874 + components: + - type: Transform + pos: -72.5,5.5 + parent: 2 + - uid: 13875 + components: + - type: Transform + pos: -72.5,6.5 + parent: 2 + - uid: 13876 + components: + - type: Transform + pos: -72.5,7.5 + parent: 2 + - uid: 13877 + components: + - type: Transform + pos: -73.5,7.5 + parent: 2 + - uid: 13878 + components: + - type: Transform + pos: -74.5,7.5 + parent: 2 + - uid: 13879 + components: + - type: Transform + pos: -74.5,6.5 + parent: 2 + - uid: 13880 + components: + - type: Transform + pos: -72.5,8.5 + parent: 2 + - uid: 13881 + components: + - type: Transform + pos: -71.5,8.5 + parent: 2 + - uid: 13882 + components: + - type: Transform + pos: -71.5,9.5 + parent: 2 + - uid: 13883 + components: + - type: Transform + pos: -70.5,9.5 + parent: 2 + - uid: 13884 + components: + - type: Transform + pos: -63.5,9.5 + parent: 2 + - uid: 13885 + components: + - type: Transform + pos: -63.5,10.5 + parent: 2 + - uid: 13886 + components: + - type: Transform + pos: -62.5,10.5 + parent: 2 + - uid: 13887 + components: + - type: Transform + pos: -61.5,10.5 + parent: 2 + - uid: 13888 + components: + - type: Transform + pos: -53.5,10.5 + parent: 2 + - uid: 13889 + components: + - type: Transform + pos: -53.5,11.5 + parent: 2 + - uid: 13928 + components: + - type: Transform + pos: 54.5,-28.5 + parent: 2 + - uid: 13930 + components: + - type: Transform + pos: 54.5,-29.5 + parent: 2 + - uid: 13931 + components: + - type: Transform + pos: 54.5,-30.5 + parent: 2 + - uid: 13932 + components: + - type: Transform + pos: 54.5,-31.5 + parent: 2 + - uid: 13933 + components: + - type: Transform + pos: 55.5,-31.5 + parent: 2 + - uid: 13934 + components: + - type: Transform + pos: 56.5,-31.5 + parent: 2 + - uid: 13935 + components: + - type: Transform + pos: 57.5,-31.5 + parent: 2 + - uid: 13936 + components: + - type: Transform + pos: 58.5,-31.5 + parent: 2 + - uid: 13937 + components: + - type: Transform + pos: 59.5,-31.5 + parent: 2 + - uid: 13938 + components: + - type: Transform + pos: 60.5,-31.5 + parent: 2 + - uid: 13941 + components: + - type: Transform + pos: 53.5,-29.5 + parent: 2 + - uid: 13942 + components: + - type: Transform + pos: 52.5,-29.5 + parent: 2 + - uid: 13943 + components: + - type: Transform + pos: 51.5,-29.5 + parent: 2 + - uid: 13944 + components: + - type: Transform + pos: 51.5,-28.5 + parent: 2 + - uid: 13945 + components: + - type: Transform + pos: 51.5,-27.5 + parent: 2 + - uid: 13946 + components: + - type: Transform + pos: 51.5,-26.5 + parent: 2 + - uid: 13947 + components: + - type: Transform + pos: 51.5,-25.5 + parent: 2 + - uid: 13951 + components: + - type: Transform + pos: 90.5,-49.5 + parent: 2 + - uid: 13952 + components: + - type: Transform + pos: 61.5,-31.5 + parent: 2 + - uid: 13953 + components: + - type: Transform + pos: 62.5,-31.5 + parent: 2 + - uid: 13954 + components: + - type: Transform + pos: 63.5,-31.5 + parent: 2 + - uid: 13961 + components: + - type: Transform + pos: 51.5,-30.5 + parent: 2 + - uid: 13962 + components: + - type: Transform + pos: 50.5,-30.5 + parent: 2 + - uid: 13976 + components: + - type: Transform + pos: 71.5,-41.5 + parent: 2 + - uid: 13977 + components: + - type: Transform + pos: 72.5,-41.5 + parent: 2 + - uid: 13978 + components: + - type: Transform + pos: 73.5,-41.5 + parent: 2 + - uid: 13979 + components: + - type: Transform + pos: 74.5,-41.5 + parent: 2 + - uid: 13980 + components: + - type: Transform + pos: 75.5,-41.5 + parent: 2 + - uid: 14107 + components: + - type: Transform + pos: 64.5,-31.5 + parent: 2 + - uid: 14109 + components: + - type: Transform + pos: 66.5,-31.5 + parent: 2 + - uid: 14110 + components: + - type: Transform + pos: 65.5,-31.5 + parent: 2 + - uid: 14111 + components: + - type: Transform + pos: 66.5,-27.5 + parent: 2 + - uid: 14112 + components: + - type: Transform + pos: 66.5,-30.5 + parent: 2 + - uid: 14113 + components: + - type: Transform + pos: 66.5,-29.5 + parent: 2 + - uid: 14114 + components: + - type: Transform + pos: 66.5,-28.5 + parent: 2 + - uid: 14115 + components: + - type: Transform + pos: 71.5,-33.5 + parent: 2 + - uid: 14116 + components: + - type: Transform + pos: 69.5,-33.5 + parent: 2 + - uid: 14117 + components: + - type: Transform + pos: 70.5,-33.5 + parent: 2 + - uid: 14118 + components: + - type: Transform + pos: 67.5,-33.5 + parent: 2 + - uid: 14119 + components: + - type: Transform + pos: 68.5,-33.5 + parent: 2 + - uid: 14161 + components: + - type: Transform + pos: 72.5,-33.5 + parent: 2 + - uid: 14165 + components: + - type: Transform + pos: 66.5,-33.5 + parent: 2 + - uid: 14232 + components: + - type: Transform + pos: 98.5,-44.5 + parent: 2 + - uid: 14236 + components: + - type: Transform + pos: 104.5,-45.5 + parent: 2 + - uid: 14237 + components: + - type: Transform + pos: 103.5,-45.5 + parent: 2 + - uid: 14238 + components: + - type: Transform + pos: 98.5,-43.5 + parent: 2 + - uid: 14242 + components: + - type: Transform + pos: 98.5,-45.5 + parent: 2 + - uid: 14243 + components: + - type: Transform + pos: 98.5,-46.5 + parent: 2 + - uid: 14244 + components: + - type: Transform + pos: 98.5,-47.5 + parent: 2 + - uid: 14245 + components: + - type: Transform + pos: 98.5,-48.5 + parent: 2 + - uid: 14246 + components: + - type: Transform + pos: 98.5,-49.5 + parent: 2 + - uid: 14247 + components: + - type: Transform + pos: 98.5,-50.5 + parent: 2 + - uid: 14248 + components: + - type: Transform + pos: 105.5,-45.5 + parent: 2 + - uid: 14249 + components: + - type: Transform + pos: 106.5,-45.5 + parent: 2 + - uid: 14250 + components: + - type: Transform + pos: 106.5,-44.5 + parent: 2 + - uid: 14251 + components: + - type: Transform + pos: 106.5,-43.5 + parent: 2 + - uid: 14252 + components: + - type: Transform + pos: 106.5,-46.5 + parent: 2 + - uid: 14253 + components: + - type: Transform + pos: 106.5,-47.5 + parent: 2 + - uid: 14254 + components: + - type: Transform + pos: 106.5,-48.5 + parent: 2 + - uid: 14266 + components: + - type: Transform + pos: 98.5,-42.5 + parent: 2 + - uid: 14267 + components: + - type: Transform + pos: 99.5,-46.5 + parent: 2 + - uid: 14268 + components: + - type: Transform + pos: 100.5,-46.5 + parent: 2 + - uid: 14269 + components: + - type: Transform + pos: 101.5,-46.5 + parent: 2 + - uid: 14270 + components: + - type: Transform + pos: 102.5,-46.5 + parent: 2 + - uid: 14271 + components: + - type: Transform + pos: 102.5,-45.5 + parent: 2 + - uid: 14345 + components: + - type: Transform + pos: 87.5,-42.5 + parent: 2 + - uid: 14363 + components: + - type: Transform + pos: 97.5,-45.5 + parent: 2 + - uid: 14364 + components: + - type: Transform + pos: 96.5,-45.5 + parent: 2 + - uid: 14365 + components: + - type: Transform + pos: 95.5,-45.5 + parent: 2 + - uid: 14366 + components: + - type: Transform + pos: 94.5,-45.5 + parent: 2 + - uid: 14367 + components: + - type: Transform + pos: 93.5,-45.5 + parent: 2 + - uid: 14368 + components: + - type: Transform + pos: 92.5,-45.5 + parent: 2 + - uid: 14369 + components: + - type: Transform + pos: 91.5,-45.5 + parent: 2 + - uid: 14370 + components: + - type: Transform + pos: 90.5,-45.5 + parent: 2 + - uid: 14371 + components: + - type: Transform + pos: 89.5,-45.5 + parent: 2 + - uid: 14372 + components: + - type: Transform + pos: 88.5,-45.5 + parent: 2 + - uid: 14373 + components: + - type: Transform + pos: 88.5,-44.5 + parent: 2 + - uid: 14374 + components: + - type: Transform + pos: 88.5,-43.5 + parent: 2 + - uid: 14375 + components: + - type: Transform + pos: 88.5,-42.5 + parent: 2 + - uid: 14376 + components: + - type: Transform + pos: 87.5,-41.5 + parent: 2 + - uid: 14377 + components: + - type: Transform + pos: 87.5,-40.5 + parent: 2 + - uid: 14378 + components: + - type: Transform + pos: 87.5,-39.5 + parent: 2 + - uid: 14379 + components: + - type: Transform + pos: 87.5,-38.5 + parent: 2 + - uid: 14380 + components: + - type: Transform + pos: 87.5,-37.5 + parent: 2 + - uid: 14381 + components: + - type: Transform + pos: 87.5,-36.5 + parent: 2 + - uid: 14382 + components: + - type: Transform + pos: 87.5,-35.5 + parent: 2 + - uid: 14383 + components: + - type: Transform + pos: 87.5,-34.5 + parent: 2 + - uid: 14384 + components: + - type: Transform + pos: 87.5,-33.5 + parent: 2 + - uid: 14385 + components: + - type: Transform + pos: 87.5,-32.5 + parent: 2 + - uid: 14386 + components: + - type: Transform + pos: 87.5,-31.5 + parent: 2 + - uid: 14388 + components: + - type: Transform + pos: 94.5,-44.5 + parent: 2 + - uid: 14389 + components: + - type: Transform + pos: 94.5,-43.5 + parent: 2 + - uid: 14390 + components: + - type: Transform + pos: 94.5,-42.5 + parent: 2 + - uid: 14391 + components: + - type: Transform + pos: 94.5,-41.5 + parent: 2 + - uid: 14392 + components: + - type: Transform + pos: 94.5,-41.5 + parent: 2 + - uid: 14393 + components: + - type: Transform + pos: 93.5,-41.5 + parent: 2 + - uid: 14394 + components: + - type: Transform + pos: 92.5,-41.5 + parent: 2 + - uid: 14395 + components: + - type: Transform + pos: 91.5,-41.5 + parent: 2 + - uid: 14396 + components: + - type: Transform + pos: 90.5,-41.5 + parent: 2 + - uid: 14397 + components: + - type: Transform + pos: 89.5,-46.5 + parent: 2 + - uid: 14398 + components: + - type: Transform + pos: 89.5,-47.5 + parent: 2 + - uid: 14399 + components: + - type: Transform + pos: 89.5,-48.5 + parent: 2 + - uid: 14405 + components: + - type: Transform + pos: 89.5,-49.5 + parent: 2 + - uid: 14406 + components: + - type: Transform + pos: 88.5,-49.5 + parent: 2 + - uid: 14408 + components: + - type: Transform + pos: 90.5,-47.5 + parent: 2 + - uid: 14409 + components: + - type: Transform + pos: 91.5,-47.5 + parent: 2 + - uid: 14410 + components: + - type: Transform + pos: 92.5,-47.5 + parent: 2 + - uid: 14411 + components: + - type: Transform + pos: 93.5,-47.5 + parent: 2 + - uid: 14412 + components: + - type: Transform + pos: 94.5,-47.5 + parent: 2 + - uid: 14473 + components: + - type: Transform + pos: 84.5,-30.5 + parent: 2 + - uid: 14503 + components: + - type: Transform + pos: 95.5,-26.5 + parent: 2 + - uid: 14504 + components: + - type: Transform + pos: 94.5,-26.5 + parent: 2 + - uid: 14505 + components: + - type: Transform + pos: 93.5,-26.5 + parent: 2 + - uid: 14506 + components: + - type: Transform + pos: 92.5,-26.5 + parent: 2 + - uid: 14507 + components: + - type: Transform + pos: 91.5,-26.5 + parent: 2 + - uid: 14508 + components: + - type: Transform + pos: 93.5,-25.5 + parent: 2 + - uid: 14509 + components: + - type: Transform + pos: 93.5,-24.5 + parent: 2 + - uid: 14510 + components: + - type: Transform + pos: 93.5,-23.5 + parent: 2 + - uid: 14511 + components: + - type: Transform + pos: 94.5,-23.5 + parent: 2 + - uid: 14512 + components: + - type: Transform + pos: 95.5,-23.5 + parent: 2 + - uid: 14513 + components: + - type: Transform + pos: 94.5,-27.5 + parent: 2 + - uid: 14514 + components: + - type: Transform + pos: 94.5,-28.5 + parent: 2 + - uid: 14515 + components: + - type: Transform + pos: 91.5,-27.5 + parent: 2 + - uid: 14516 + components: + - type: Transform + pos: 91.5,-28.5 + parent: 2 + - uid: 14517 + components: + - type: Transform + pos: 91.5,-29.5 + parent: 2 + - uid: 14518 + components: + - type: Transform + pos: 90.5,-29.5 + parent: 2 + - uid: 14519 + components: + - type: Transform + pos: 89.5,-29.5 + parent: 2 + - uid: 14520 + components: + - type: Transform + pos: 88.5,-29.5 + parent: 2 + - uid: 14521 + components: + - type: Transform + pos: 87.5,-29.5 + parent: 2 + - uid: 14522 + components: + - type: Transform + pos: 86.5,-29.5 + parent: 2 + - uid: 14523 + components: + - type: Transform + pos: 85.5,-29.5 + parent: 2 + - uid: 14524 + components: + - type: Transform + pos: 84.5,-29.5 + parent: 2 + - uid: 14525 + components: + - type: Transform + pos: 84.5,-31.5 + parent: 2 + - uid: 14527 + components: + - type: Transform + pos: 83.5,-31.5 + parent: 2 + - uid: 14528 + components: + - type: Transform + pos: 82.5,-31.5 + parent: 2 + - uid: 14529 + components: + - type: Transform + pos: 81.5,-31.5 + parent: 2 + - uid: 14530 + components: + - type: Transform + pos: 80.5,-31.5 + parent: 2 + - uid: 14531 + components: + - type: Transform + pos: 79.5,-31.5 + parent: 2 + - uid: 14532 + components: + - type: Transform + pos: 78.5,-31.5 + parent: 2 + - uid: 14533 + components: + - type: Transform + pos: 77.5,-31.5 + parent: 2 + - uid: 14534 + components: + - type: Transform + pos: 77.5,-32.5 + parent: 2 + - uid: 14535 + components: + - type: Transform + pos: 77.5,-33.5 + parent: 2 + - uid: 14536 + components: + - type: Transform + pos: 77.5,-34.5 + parent: 2 + - uid: 14537 + components: + - type: Transform + pos: 79.5,-34.5 + parent: 2 + - uid: 14538 + components: + - type: Transform + pos: 78.5,-34.5 + parent: 2 + - uid: 14539 + components: + - type: Transform + pos: 79.5,-35.5 + parent: 2 + - uid: 14540 + components: + - type: Transform + pos: 79.5,-36.5 + parent: 2 + - uid: 14541 + components: + - type: Transform + pos: 79.5,-37.5 + parent: 2 + - uid: 14542 + components: + - type: Transform + pos: 79.5,-38.5 + parent: 2 + - uid: 14543 + components: + - type: Transform + pos: 79.5,-39.5 + parent: 2 + - uid: 14681 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 + - uid: 14682 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 14683 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - uid: 14684 + components: + - type: Transform + pos: 13.5,27.5 + parent: 2 + - uid: 14692 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 14693 + components: + - type: Transform + pos: 22.5,27.5 + parent: 2 + - uid: 14694 + components: + - type: Transform + pos: 23.5,27.5 + parent: 2 + - uid: 14695 + components: + - type: Transform + pos: 23.5,26.5 + parent: 2 + - uid: 14696 + components: + - type: Transform + pos: 24.5,26.5 + parent: 2 + - uid: 14697 + components: + - type: Transform + pos: 25.5,26.5 + parent: 2 + - uid: 14798 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 14799 + components: + - type: Transform + pos: 52.5,31.5 + parent: 2 + - uid: 14800 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 14801 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 14802 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 14803 + components: + - type: Transform + pos: 50.5,29.5 + parent: 2 + - uid: 14804 + components: + - type: Transform + pos: 49.5,29.5 + parent: 2 + - uid: 14805 + components: + - type: Transform + pos: 48.5,29.5 + parent: 2 + - uid: 14806 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 14807 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 14808 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 14809 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - uid: 14810 + components: + - type: Transform + pos: 43.5,29.5 + parent: 2 + - uid: 14811 + components: + - type: Transform + pos: 42.5,29.5 + parent: 2 + - uid: 14812 + components: + - type: Transform + pos: 41.5,29.5 + parent: 2 + - uid: 14813 + components: + - type: Transform + pos: 40.5,29.5 + parent: 2 + - uid: 14814 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - uid: 14815 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 14819 + components: + - type: Transform + pos: 47.5,28.5 + parent: 2 + - uid: 14820 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - uid: 14821 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 14822 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 14823 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 14824 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 14825 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 14826 + components: + - type: Transform + pos: 48.5,22.5 + parent: 2 + - uid: 14827 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 14833 + components: + - type: Transform + pos: 45.5,30.5 + parent: 2 + - uid: 14834 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 14835 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - uid: 14925 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 14927 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 14928 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 + - uid: 14929 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 + - uid: 14930 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 14932 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 14933 + components: + - type: Transform + pos: 12.5,28.5 + parent: 2 + - uid: 14934 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 + - uid: 14935 + components: + - type: Transform + pos: 11.5,28.5 + parent: 2 + - uid: 14947 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 14948 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - uid: 14949 + components: + - type: Transform + pos: 19.5,28.5 + parent: 2 + - uid: 14950 + components: + - type: Transform + pos: 20.5,29.5 + parent: 2 + - uid: 14951 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - uid: 14952 + components: + - type: Transform + pos: 22.5,29.5 + parent: 2 + - uid: 14953 + components: + - type: Transform + pos: 23.5,29.5 + parent: 2 + - uid: 14954 + components: + - type: Transform + pos: 18.5,28.5 + parent: 2 + - uid: 14955 + components: + - type: Transform + pos: 17.5,28.5 + parent: 2 + - uid: 14956 + components: + - type: Transform + pos: 16.5,28.5 + parent: 2 + - uid: 14957 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 14958 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 + - uid: 14959 + components: + - type: Transform + pos: 15.5,26.5 + parent: 2 + - uid: 14960 + components: + - type: Transform + pos: 15.5,25.5 + parent: 2 + - uid: 14961 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 14962 + components: + - type: Transform + pos: 20.5,26.5 + parent: 2 + - uid: 14963 + components: + - type: Transform + pos: 19.5,26.5 + parent: 2 + - uid: 14964 + components: + - type: Transform + pos: 19.5,25.5 + parent: 2 + - uid: 14965 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 + - uid: 14966 + components: + - type: Transform + pos: 19.5,23.5 + parent: 2 + - uid: 14967 + components: + - type: Transform + pos: 20.5,23.5 + parent: 2 + - uid: 14968 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 14969 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - uid: 14970 + components: + - type: Transform + pos: 23.5,23.5 + parent: 2 + - uid: 14971 + components: + - type: Transform + pos: 23.5,22.5 + parent: 2 + - uid: 14972 + components: + - type: Transform + pos: 19.5,23.5 + parent: 2 + - uid: 14973 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - uid: 14974 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 14975 + components: + - type: Transform + pos: 16.5,23.5 + parent: 2 + - uid: 14976 + components: + - type: Transform + pos: 18.5,25.5 + parent: 2 + - uid: 15001 + components: + - type: Transform + pos: 25.5,27.5 + parent: 2 + - uid: 15002 + components: + - type: Transform + pos: 25.5,28.5 + parent: 2 + - uid: 15003 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 + - uid: 15005 + components: + - type: Transform + pos: 25.5,29.5 + parent: 2 + - uid: 15064 + components: + - type: Transform + pos: 27.5,30.5 + parent: 2 + - uid: 15066 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - uid: 15067 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 + - uid: 15068 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 + - uid: 15069 + components: + - type: Transform + pos: 30.5,28.5 + parent: 2 + - uid: 15070 + components: + - type: Transform + pos: 31.5,28.5 + parent: 2 + - uid: 15071 + components: + - type: Transform + pos: 29.5,30.5 + parent: 2 + - uid: 15072 + components: + - type: Transform + pos: 26.5,30.5 + parent: 2 + - uid: 15073 + components: + - type: Transform + pos: 30.5,30.5 + parent: 2 + - uid: 15074 + components: + - type: Transform + pos: 32.5,28.5 + parent: 2 + - uid: 15075 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 15076 + components: + - type: Transform + pos: 33.5,27.5 + parent: 2 + - uid: 15077 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - uid: 15078 + components: + - type: Transform + pos: 33.5,25.5 + parent: 2 + - uid: 15079 + components: + - type: Transform + pos: 32.5,25.5 + parent: 2 + - uid: 15080 + components: + - type: Transform + pos: 31.5,25.5 + parent: 2 + - uid: 15081 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 + - uid: 15082 + components: + - type: Transform + pos: 29.5,25.5 + parent: 2 + - uid: 15083 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 + - uid: 15084 + components: + - type: Transform + pos: 28.5,24.5 + parent: 2 + - uid: 15085 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - uid: 15086 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - uid: 15087 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 + - uid: 15088 + components: + - type: Transform + pos: 35.5,27.5 + parent: 2 + - uid: 15089 + components: + - type: Transform + pos: 36.5,27.5 + parent: 2 + - uid: 15090 + components: + - type: Transform + pos: 37.5,27.5 + parent: 2 + - uid: 15091 + components: + - type: Transform + pos: 37.5,28.5 + parent: 2 + - uid: 15092 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - uid: 15093 + components: + - type: Transform + pos: 37.5,30.5 + parent: 2 + - uid: 15094 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 + - uid: 15472 + components: + - type: Transform + pos: 80.5,-56.5 + parent: 2 + - uid: 15473 + components: + - type: Transform + pos: 80.5,-55.5 + parent: 2 + - uid: 15474 + components: + - type: Transform + pos: 80.5,-57.5 + parent: 2 + - uid: 15475 + components: + - type: Transform + pos: 79.5,-57.5 + parent: 2 + - uid: 15476 + components: + - type: Transform + pos: 79.5,-58.5 + parent: 2 + - uid: 15503 + components: + - type: Transform + pos: 82.5,-25.5 + parent: 2 + - uid: 15519 + components: + - type: Transform + pos: 85.5,-19.5 + parent: 2 + - uid: 15521 + components: + - type: Transform + pos: 85.5,-18.5 + parent: 2 + - uid: 15522 + components: + - type: Transform + pos: 85.5,-17.5 + parent: 2 + - uid: 15523 + components: + - type: Transform + pos: 85.5,-16.5 + parent: 2 + - uid: 15524 + components: + - type: Transform + pos: 85.5,-15.5 + parent: 2 + - uid: 15526 + components: + - type: Transform + pos: 86.5,-15.5 + parent: 2 + - uid: 15527 + components: + - type: Transform + pos: 84.5,-16.5 + parent: 2 + - uid: 15528 + components: + - type: Transform + pos: 83.5,-16.5 + parent: 2 + - uid: 15542 + components: + - type: Transform + pos: 86.5,-24.5 + parent: 2 + - uid: 15543 + components: + - type: Transform + pos: 85.5,-24.5 + parent: 2 + - uid: 15544 + components: + - type: Transform + pos: 84.5,-24.5 + parent: 2 + - uid: 15545 + components: + - type: Transform + pos: 83.5,-24.5 + parent: 2 + - uid: 15546 + components: + - type: Transform + pos: 83.5,-25.5 + parent: 2 + - uid: 15547 + components: + - type: Transform + pos: 83.5,-26.5 + parent: 2 + - uid: 15548 + components: + - type: Transform + pos: 84.5,-26.5 + parent: 2 + - uid: 15549 + components: + - type: Transform + pos: 85.5,-26.5 + parent: 2 + - uid: 15550 + components: + - type: Transform + pos: 86.5,-26.5 + parent: 2 + - uid: 15551 + components: + - type: Transform + pos: 87.5,-26.5 + parent: 2 + - uid: 15552 + components: + - type: Transform + pos: 88.5,-26.5 + parent: 2 + - uid: 15553 + components: + - type: Transform + pos: 83.5,-55.5 + parent: 2 + - uid: 15554 + components: + - type: Transform + pos: 83.5,-56.5 + parent: 2 + - uid: 15555 + components: + - type: Transform + pos: 84.5,-56.5 + parent: 2 + - uid: 15556 + components: + - type: Transform + pos: 84.5,-57.5 + parent: 2 + - uid: 15735 + components: + - type: Transform + pos: 45.5,30.5 + parent: 2 + - uid: 15736 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 15737 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - uid: 15738 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 15739 + components: + - type: Transform + pos: 46.5,32.5 + parent: 2 + - uid: 15740 + components: + - type: Transform + pos: 46.5,25.5 + parent: 2 + - uid: 15741 + components: + - type: Transform + pos: 45.5,25.5 + parent: 2 + - uid: 15742 + components: + - type: Transform + pos: 44.5,25.5 + parent: 2 + - uid: 15743 + components: + - type: Transform + pos: 43.5,25.5 + parent: 2 + - uid: 15744 + components: + - type: Transform + pos: 42.5,25.5 + parent: 2 + - uid: 15745 + components: + - type: Transform + pos: 41.5,25.5 + parent: 2 + - uid: 15864 + components: + - type: Transform + pos: 90.5,24.5 + parent: 2 + - uid: 15865 + components: + - type: Transform + pos: 90.5,23.5 + parent: 2 + - uid: 15866 + components: + - type: Transform + pos: 90.5,22.5 + parent: 2 + - uid: 15867 + components: + - type: Transform + pos: 89.5,22.5 + parent: 2 + - uid: 15868 + components: + - type: Transform + pos: 90.5,33.5 + parent: 2 + - uid: 15869 + components: + - type: Transform + pos: 90.5,34.5 + parent: 2 + - uid: 15870 + components: + - type: Transform + pos: 89.5,34.5 + parent: 2 + - uid: 15871 + components: + - type: Transform + pos: 86.5,17.5 + parent: 2 + - uid: 15872 + components: + - type: Transform + pos: 87.5,17.5 + parent: 2 + - uid: 15873 + components: + - type: Transform + pos: 88.5,17.5 + parent: 2 + - uid: 15874 + components: + - type: Transform + pos: 88.5,18.5 + parent: 2 + - uid: 15875 + components: + - type: Transform + pos: 88.5,19.5 + parent: 2 + - uid: 15876 + components: + - type: Transform + pos: 86.5,23.5 + parent: 2 + - uid: 15877 + components: + - type: Transform + pos: 86.5,22.5 + parent: 2 + - uid: 15878 + components: + - type: Transform + pos: 86.5,21.5 + parent: 2 + - uid: 15879 + components: + - type: Transform + pos: 87.5,3.5 + parent: 2 +- proto: CableApcStack + entities: + - uid: 1532 + components: + - type: Transform + pos: 58.79422,9.6834 + parent: 2 + - uid: 1533 + components: + - type: Transform + pos: 67.49434,-19.618666 + parent: 2 + - uid: 13561 + components: + - type: Transform + pos: 45.41313,-28.356775 + parent: 2 +- proto: CableHV + entities: + - uid: 376 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + pos: 86.5,36.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + pos: 70.5,0.5 + parent: 2 + - uid: 1536 + components: + - type: Transform + pos: 82.5,-4.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + pos: 70.5,-0.5 + parent: 2 + - uid: 1538 + components: + - type: Transform + pos: 80.5,-4.5 + parent: 2 + - uid: 1539 + components: + - type: Transform + pos: 81.5,-4.5 + parent: 2 + - uid: 1540 + components: + - type: Transform + pos: 79.5,-4.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: 92.5,9.5 + parent: 2 + - uid: 1542 + components: + - type: Transform + pos: 93.5,8.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + pos: 93.5,7.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + pos: 93.5,6.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + pos: 92.5,8.5 + parent: 2 + - uid: 1546 + components: + - type: Transform + pos: 92.5,7.5 + parent: 2 + - uid: 1547 + components: + - type: Transform + pos: 92.5,6.5 + parent: 2 + - uid: 1548 + components: + - type: Transform + pos: 91.5,8.5 + parent: 2 + - uid: 1549 + components: + - type: Transform + pos: 91.5,7.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + pos: 91.5,6.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: 90.5,8.5 + parent: 2 + - uid: 1552 + components: + - type: Transform + pos: 90.5,7.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + pos: 90.5,6.5 + parent: 2 + - uid: 1554 + components: + - type: Transform + pos: 89.5,7.5 + parent: 2 + - uid: 1555 + components: + - type: Transform + pos: 93.5,9.5 + parent: 2 + - uid: 1556 + components: + - type: Transform + pos: 88.5,7.5 + parent: 2 + - uid: 1557 + components: + - type: Transform + pos: 87.5,7.5 + parent: 2 + - uid: 1558 + components: + - type: Transform + pos: 86.5,7.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + pos: 85.5,7.5 + parent: 2 + - uid: 1560 + components: + - type: Transform + pos: 91.5,9.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: 90.5,9.5 + parent: 2 + - uid: 1562 + components: + - type: Transform + pos: 79.5,0.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + pos: 79.5,-3.5 + parent: 2 + - uid: 1564 + components: + - type: Transform + pos: 79.5,-2.5 + parent: 2 + - uid: 1565 + components: + - type: Transform + pos: 79.5,-1.5 + parent: 2 + - uid: 1566 + components: + - type: Transform + pos: 91.5,-5.5 + parent: 2 + - uid: 1567 + components: + - type: Transform + pos: 86.5,23.5 + parent: 2 + - uid: 1568 + components: + - type: Transform + pos: 86.5,24.5 + parent: 2 + - uid: 1569 + components: + - type: Transform + pos: 86.5,22.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + pos: 86.5,19.5 + parent: 2 + - uid: 1571 + components: + - type: Transform + pos: 86.5,21.5 + parent: 2 + - uid: 1572 + components: + - type: Transform + pos: 86.5,20.5 + parent: 2 + - uid: 1575 + components: + - type: Transform + pos: 83.5,47.5 + parent: 2 + - uid: 1576 + components: + - type: Transform + pos: 82.5,47.5 + parent: 2 + - uid: 1577 + components: + - type: Transform + pos: 81.5,47.5 + parent: 2 + - uid: 1579 + components: + - type: Transform + pos: 84.5,47.5 + parent: 2 + - uid: 1581 + components: + - type: Transform + pos: 84.5,40.5 + parent: 2 + - uid: 1582 + components: + - type: Transform + pos: 84.5,39.5 + parent: 2 + - uid: 1583 + components: + - type: Transform + pos: 86.5,25.5 + parent: 2 + - uid: 1584 + components: + - type: Transform + pos: 84.5,38.5 + parent: 2 + - uid: 1585 + components: + - type: Transform + pos: 84.5,36.5 + parent: 2 + - uid: 1586 + components: + - type: Transform + pos: 84.5,37.5 + parent: 2 + - uid: 1587 + components: + - type: Transform + pos: 80.5,47.5 + parent: 2 + - uid: 1593 + components: + - type: Transform + pos: 86.5,44.5 + parent: 2 + - uid: 1594 + components: + - type: Transform + pos: 86.5,43.5 + parent: 2 + - uid: 1596 + components: + - type: Transform + pos: 86.5,42.5 + parent: 2 + - uid: 1597 + components: + - type: Transform + pos: 86.5,46.5 + parent: 2 + - uid: 1598 + components: + - type: Transform + pos: 86.5,45.5 + parent: 2 + - uid: 1602 + components: + - type: Transform + pos: 87.5,-4.5 + parent: 2 + - uid: 1603 + components: + - type: Transform + pos: 86.5,-4.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + pos: 89.5,-5.5 + parent: 2 + - uid: 1605 + components: + - type: Transform + pos: 89.5,-4.5 + parent: 2 + - uid: 1606 + components: + - type: Transform + pos: 83.5,-4.5 + parent: 2 + - uid: 1607 + components: + - type: Transform + pos: 85.5,-4.5 + parent: 2 + - uid: 1608 + components: + - type: Transform + pos: 84.5,-4.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + pos: 90.5,-5.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + pos: 79.5,-0.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + pos: 88.5,-4.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + pos: 80.5,48.5 + parent: 2 + - uid: 1614 + components: + - type: Transform + pos: 80.5,49.5 + parent: 2 + - uid: 1615 + components: + - type: Transform + pos: 79.5,49.5 + parent: 2 + - uid: 1616 + components: + - type: Transform + pos: 78.5,49.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + pos: 86.5,18.5 + parent: 2 + - uid: 1618 + components: + - type: Transform + pos: 85.5,20.5 + parent: 2 + - uid: 1619 + components: + - type: Transform + pos: 85.5,19.5 + parent: 2 + - uid: 1620 + components: + - type: Transform + pos: 85.5,18.5 + parent: 2 + - uid: 1621 + components: + - type: Transform + pos: 84.5,20.5 + parent: 2 + - uid: 1622 + components: + - type: Transform + pos: 84.5,19.5 + parent: 2 + - uid: 1623 + components: + - type: Transform + pos: 84.5,18.5 + parent: 2 + - uid: 1624 + components: + - type: Transform + pos: 86.5,17.5 + parent: 2 + - uid: 1625 + components: + - type: Transform + pos: 86.5,16.5 + parent: 2 + - uid: 1626 + components: + - type: Transform + pos: 85.5,16.5 + parent: 2 + - uid: 1627 + components: + - type: Transform + pos: 85.5,15.5 + parent: 2 + - uid: 1628 + components: + - type: Transform + pos: 85.5,14.5 + parent: 2 + - uid: 1629 + components: + - type: Transform + pos: 85.5,13.5 + parent: 2 + - uid: 1630 + components: + - type: Transform + pos: 85.5,12.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + pos: 85.5,11.5 + parent: 2 + - uid: 1632 + components: + - type: Transform + pos: 85.5,10.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + pos: 85.5,9.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: 85.5,8.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + pos: 84.5,17.5 + parent: 2 + - uid: 1636 + components: + - type: Transform + pos: 83.5,17.5 + parent: 2 + - uid: 1637 + components: + - type: Transform + pos: 82.5,17.5 + parent: 2 + - uid: 1638 + components: + - type: Transform + pos: 81.5,17.5 + parent: 2 + - uid: 1639 + components: + - type: Transform + pos: 80.5,17.5 + parent: 2 + - uid: 1640 + components: + - type: Transform + pos: 79.5,17.5 + parent: 2 + - uid: 1641 + components: + - type: Transform + pos: 79.5,16.5 + parent: 2 + - uid: 1642 + components: + - type: Transform + pos: 79.5,15.5 + parent: 2 + - uid: 1643 + components: + - type: Transform + pos: 79.5,14.5 + parent: 2 + - uid: 1644 + components: + - type: Transform + pos: 79.5,13.5 + parent: 2 + - uid: 1645 + components: + - type: Transform + pos: 79.5,12.5 + parent: 2 + - uid: 1646 + components: + - type: Transform + pos: 79.5,11.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: 79.5,10.5 + parent: 2 + - uid: 1648 + components: + - type: Transform + pos: 86.5,34.5 + parent: 2 + - uid: 1649 + components: + - type: Transform + pos: 79.5,9.5 + parent: 2 + - uid: 1650 + components: + - type: Transform + pos: 79.5,7.5 + parent: 2 + - uid: 1651 + components: + - type: Transform + pos: 79.5,6.5 + parent: 2 + - uid: 1652 + components: + - type: Transform + pos: 79.5,8.5 + parent: 2 + - uid: 1653 + components: + - type: Transform + pos: 79.5,5.5 + parent: 2 + - uid: 1654 + components: + - type: Transform + pos: 79.5,4.5 + parent: 2 + - uid: 1655 + components: + - type: Transform + pos: 79.5,3.5 + parent: 2 + - uid: 1656 + components: + - type: Transform + pos: 79.5,2.5 + parent: 2 + - uid: 1657 + components: + - type: Transform + pos: 79.5,1.5 + parent: 2 + - uid: 1658 + components: + - type: Transform + pos: 77.5,1.5 + parent: 2 + - uid: 1659 + components: + - type: Transform + pos: 76.5,1.5 + parent: 2 + - uid: 1660 + components: + - type: Transform + pos: 78.5,1.5 + parent: 2 + - uid: 1661 + components: + - type: Transform + pos: 75.5,1.5 + parent: 2 + - uid: 1662 + components: + - type: Transform + pos: 74.5,1.5 + parent: 2 + - uid: 1663 + components: + - type: Transform + pos: 73.5,1.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + pos: 72.5,1.5 + parent: 2 + - uid: 1665 + components: + - type: Transform + pos: 71.5,1.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + pos: 70.5,1.5 + parent: 2 + - uid: 1667 + components: + - type: Transform + pos: 69.5,1.5 + parent: 2 + - uid: 1668 + components: + - type: Transform + pos: 68.5,1.5 + parent: 2 + - uid: 1669 + components: + - type: Transform + pos: 67.5,1.5 + parent: 2 + - uid: 1670 + components: + - type: Transform + pos: 66.5,1.5 + parent: 2 + - uid: 1671 + components: + - type: Transform + pos: 65.5,1.5 + parent: 2 + - uid: 1672 + components: + - type: Transform + pos: 64.5,1.5 + parent: 2 + - uid: 1673 + components: + - type: Transform + pos: 63.5,1.5 + parent: 2 + - uid: 1674 + components: + - type: Transform + pos: 62.5,1.5 + parent: 2 + - uid: 1675 + components: + - type: Transform + pos: 61.5,1.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + pos: 60.5,1.5 + parent: 2 + - uid: 1677 + components: + - type: Transform + pos: 59.5,1.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + pos: 58.5,1.5 + parent: 2 + - uid: 1679 + components: + - type: Transform + pos: 57.5,1.5 + parent: 2 + - uid: 1680 + components: + - type: Transform + pos: 56.5,1.5 + parent: 2 + - uid: 1681 + components: + - type: Transform + pos: 55.5,1.5 + parent: 2 + - uid: 1682 + components: + - type: Transform + pos: 54.5,1.5 + parent: 2 + - uid: 1683 + components: + - type: Transform + pos: 53.5,1.5 + parent: 2 + - uid: 1684 + components: + - type: Transform + pos: 52.5,1.5 + parent: 2 + - uid: 1685 + components: + - type: Transform + pos: 51.5,1.5 + parent: 2 + - uid: 1686 + components: + - type: Transform + pos: 50.5,1.5 + parent: 2 + - uid: 1687 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - uid: 1688 + components: + - type: Transform + pos: 48.5,1.5 + parent: 2 + - uid: 1689 + components: + - type: Transform + pos: 47.5,1.5 + parent: 2 + - uid: 1690 + components: + - type: Transform + pos: 46.5,1.5 + parent: 2 + - uid: 1691 + components: + - type: Transform + pos: 45.5,1.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + pos: 44.5,1.5 + parent: 2 + - uid: 1693 + components: + - type: Transform + pos: 43.5,1.5 + parent: 2 + - uid: 1694 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - uid: 1695 + components: + - type: Transform + pos: 41.5,1.5 + parent: 2 + - uid: 1696 + components: + - type: Transform + pos: 40.5,1.5 + parent: 2 + - uid: 1697 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 1698 + components: + - type: Transform + pos: 38.5,1.5 + parent: 2 + - uid: 1699 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 + - uid: 1700 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 1701 + components: + - type: Transform + pos: 35.5,1.5 + parent: 2 + - uid: 1702 + components: + - type: Transform + pos: 34.5,1.5 + parent: 2 + - uid: 1703 + components: + - type: Transform + pos: 33.5,1.5 + parent: 2 + - uid: 1704 + components: + - type: Transform + pos: 32.5,1.5 + parent: 2 + - uid: 1705 + components: + - type: Transform + pos: 31.5,1.5 + parent: 2 + - uid: 1706 + components: + - type: Transform + pos: 30.5,1.5 + parent: 2 + - uid: 1707 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + pos: 28.5,1.5 + parent: 2 + - uid: 1709 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - uid: 1710 + components: + - type: Transform + pos: 26.5,1.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + pos: 25.5,1.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + pos: 24.5,1.5 + parent: 2 + - uid: 1713 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 1714 + components: + - type: Transform + pos: 22.5,1.5 + parent: 2 + - uid: 1715 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 + - uid: 1716 + components: + - type: Transform + pos: 20.5,1.5 + parent: 2 + - uid: 1717 + components: + - type: Transform + pos: 19.5,1.5 + parent: 2 + - uid: 1718 + components: + - type: Transform + pos: 18.5,1.5 + parent: 2 + - uid: 1719 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 + - uid: 1720 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - uid: 1721 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 1723 + components: + - type: Transform + pos: 13.5,1.5 + parent: 2 + - uid: 1724 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 1725 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - uid: 1726 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 1727 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 1728 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 1729 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 + - uid: 1730 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 1731 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 1732 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 1733 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 1734 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 1735 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 1736 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 1737 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 1738 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - uid: 1739 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 1741 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 1742 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 1743 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 1744 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 1745 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 1746 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 + - uid: 1747 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 + - uid: 1748 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 2 + - uid: 1749 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 2 + - uid: 1750 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 + - uid: 1751 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 1752 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 1753 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 1754 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 1755 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 1756 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - uid: 1757 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 1758 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - uid: 1759 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - uid: 1760 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 1761 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 1762 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 1763 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - uid: 1764 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 1765 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 2 + - uid: 1766 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 + - uid: 1767 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 2 + - uid: 1768 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 2 + - uid: 1769 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 2 + - uid: 1770 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 2 + - uid: 1771 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - uid: 1772 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 2 + - uid: 1773 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 2 + - uid: 1774 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 + - uid: 1776 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 + - uid: 1777 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 + - uid: 1778 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 1779 + components: + - type: Transform + pos: -31.5,-7.5 + parent: 2 + - uid: 1780 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - uid: 1781 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 2 + - uid: 1782 + components: + - type: Transform + pos: -34.5,-7.5 + parent: 2 + - uid: 1783 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 2 + - uid: 1784 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 2 + - uid: 1785 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 2 + - uid: 1786 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 1787 + components: + - type: Transform + pos: -39.5,-7.5 + parent: 2 + - uid: 1788 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 2 + - uid: 1789 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 + - uid: 1790 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 + - uid: 1791 + components: + - type: Transform + pos: -43.5,-7.5 + parent: 2 + - uid: 1792 + components: + - type: Transform + pos: -44.5,-7.5 + parent: 2 + - uid: 1793 + components: + - type: Transform + pos: -45.5,-7.5 + parent: 2 + - uid: 1794 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 2 + - uid: 1795 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 + - uid: 1796 + components: + - type: Transform + pos: -48.5,-7.5 + parent: 2 + - uid: 1797 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 2 + - uid: 1798 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 1799 + components: + - type: Transform + pos: -51.5,-7.5 + parent: 2 + - uid: 1800 + components: + - type: Transform + pos: -52.5,-7.5 + parent: 2 + - uid: 1801 + components: + - type: Transform + pos: -53.5,-7.5 + parent: 2 + - uid: 1802 + components: + - type: Transform + pos: -54.5,-7.5 + parent: 2 + - uid: 1803 + components: + - type: Transform + pos: -55.5,-7.5 + parent: 2 + - uid: 1804 + components: + - type: Transform + pos: -56.5,-7.5 + parent: 2 + - uid: 1805 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - uid: 1806 + components: + - type: Transform + pos: -58.5,-7.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + pos: -59.5,-7.5 + parent: 2 + - uid: 1808 + components: + - type: Transform + pos: -59.5,-6.5 + parent: 2 + - uid: 1809 + components: + - type: Transform + pos: -59.5,-5.5 + parent: 2 + - uid: 1810 + components: + - type: Transform + pos: -60.5,-5.5 + parent: 2 + - uid: 1811 + components: + - type: Transform + pos: -61.5,-5.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + pos: -62.5,-5.5 + parent: 2 + - uid: 1813 + components: + - type: Transform + pos: -63.5,-5.5 + parent: 2 + - uid: 1814 + components: + - type: Transform + pos: -64.5,-5.5 + parent: 2 + - uid: 1815 + components: + - type: Transform + pos: -65.5,-5.5 + parent: 2 + - uid: 1816 + components: + - type: Transform + pos: -66.5,-5.5 + parent: 2 + - uid: 1817 + components: + - type: Transform + pos: -67.5,-5.5 + parent: 2 + - uid: 1818 + components: + - type: Transform + pos: -68.5,-5.5 + parent: 2 + - uid: 1819 + components: + - type: Transform + pos: -68.5,-4.5 + parent: 2 + - uid: 1820 + components: + - type: Transform + pos: -68.5,-3.5 + parent: 2 + - uid: 1821 + components: + - type: Transform + pos: -68.5,-2.5 + parent: 2 + - uid: 1822 + components: + - type: Transform + pos: -68.5,-1.5 + parent: 2 + - uid: 1823 + components: + - type: Transform + pos: -68.5,-0.5 + parent: 2 + - uid: 1824 + components: + - type: Transform + pos: -68.5,0.5 + parent: 2 + - uid: 1825 + components: + - type: Transform + pos: -68.5,1.5 + parent: 2 + - uid: 1826 + components: + - type: Transform + pos: -68.5,2.5 + parent: 2 + - uid: 1827 + components: + - type: Transform + pos: -68.5,3.5 + parent: 2 + - uid: 1828 + components: + - type: Transform + pos: -67.5,3.5 + parent: 2 + - uid: 1829 + components: + - type: Transform + pos: -66.5,3.5 + parent: 2 + - uid: 1830 + components: + - type: Transform + pos: -65.5,3.5 + parent: 2 + - uid: 1831 + components: + - type: Transform + pos: -64.5,3.5 + parent: 2 + - uid: 1832 + components: + - type: Transform + pos: -64.5,4.5 + parent: 2 + - uid: 1833 + components: + - type: Transform + pos: -54.5,4.5 + parent: 2 + - uid: 1834 + components: + - type: Transform + pos: -54.5,3.5 + parent: 2 + - uid: 1835 + components: + - type: Transform + pos: -53.5,3.5 + parent: 2 + - uid: 1836 + components: + - type: Transform + pos: -52.5,3.5 + parent: 2 + - uid: 1837 + components: + - type: Transform + pos: -51.5,3.5 + parent: 2 + - uid: 1838 + components: + - type: Transform + pos: -51.5,2.5 + parent: 2 + - uid: 1839 + components: + - type: Transform + pos: -51.5,1.5 + parent: 2 + - uid: 1840 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 1841 + components: + - type: Transform + pos: -51.5,-0.5 + parent: 2 + - uid: 1842 + components: + - type: Transform + pos: -51.5,-1.5 + parent: 2 + - uid: 1843 + components: + - type: Transform + pos: -51.5,-2.5 + parent: 2 + - uid: 1844 + components: + - type: Transform + pos: -51.5,-3.5 + parent: 2 + - uid: 1845 + components: + - type: Transform + pos: -51.5,-4.5 + parent: 2 + - uid: 1846 + components: + - type: Transform + pos: -51.5,-5.5 + parent: 2 + - uid: 1847 + components: + - type: Transform + pos: -51.5,-6.5 + parent: 2 + - uid: 1848 + components: + - type: Transform + pos: 86.5,33.5 + parent: 2 + - uid: 1849 + components: + - type: Transform + pos: 86.5,32.5 + parent: 2 + - uid: 1850 + components: + - type: Transform + pos: 86.5,31.5 + parent: 2 + - uid: 1851 + components: + - type: Transform + pos: 86.5,30.5 + parent: 2 + - uid: 1852 + components: + - type: Transform + pos: 86.5,29.5 + parent: 2 + - uid: 1853 + components: + - type: Transform + pos: 86.5,28.5 + parent: 2 + - uid: 1854 + components: + - type: Transform + pos: 86.5,27.5 + parent: 2 + - uid: 1855 + components: + - type: Transform + pos: 86.5,26.5 + parent: 2 + - uid: 1856 + components: + - type: Transform + pos: 70.5,-1.5 + parent: 2 + - uid: 1857 + components: + - type: Transform + pos: 70.5,-2.5 + parent: 2 + - uid: 1858 + components: + - type: Transform + pos: 70.5,-3.5 + parent: 2 + - uid: 1859 + components: + - type: Transform + pos: 70.5,-4.5 + parent: 2 + - uid: 1860 + components: + - type: Transform + pos: 70.5,-5.5 + parent: 2 + - uid: 1861 + components: + - type: Transform + pos: 70.5,-6.5 + parent: 2 + - uid: 1862 + components: + - type: Transform + pos: 70.5,-7.5 + parent: 2 + - uid: 1863 + components: + - type: Transform + pos: 70.5,-8.5 + parent: 2 + - uid: 1864 + components: + - type: Transform + pos: 69.5,-8.5 + parent: 2 + - uid: 1865 + components: + - type: Transform + pos: 69.5,-9.5 + parent: 2 + - uid: 1866 + components: + - type: Transform + pos: 69.5,-10.5 + parent: 2 + - uid: 1867 + components: + - type: Transform + pos: 69.5,-11.5 + parent: 2 + - uid: 1868 + components: + - type: Transform + pos: 69.5,-12.5 + parent: 2 + - uid: 1869 + components: + - type: Transform + pos: 69.5,-13.5 + parent: 2 + - uid: 1870 + components: + - type: Transform + pos: 69.5,-14.5 + parent: 2 + - uid: 1871 + components: + - type: Transform + pos: 69.5,-15.5 + parent: 2 + - uid: 1872 + components: + - type: Transform + pos: 68.5,-15.5 + parent: 2 + - uid: 1873 + components: + - type: Transform + pos: 68.5,-16.5 + parent: 2 + - uid: 1874 + components: + - type: Transform + pos: 68.5,-17.5 + parent: 2 + - uid: 1875 + components: + - type: Transform + pos: 68.5,-18.5 + parent: 2 + - uid: 1876 + components: + - type: Transform + pos: 68.5,-19.5 + parent: 2 + - uid: 1877 + components: + - type: Transform + pos: 68.5,-20.5 + parent: 2 + - uid: 1878 + components: + - type: Transform + pos: 68.5,-21.5 + parent: 2 + - uid: 1879 + components: + - type: Transform + pos: 68.5,-22.5 + parent: 2 + - uid: 1880 + components: + - type: Transform + pos: 68.5,-23.5 + parent: 2 + - uid: 1881 + components: + - type: Transform + pos: 68.5,-24.5 + parent: 2 + - uid: 1882 + components: + - type: Transform + pos: 68.5,-25.5 + parent: 2 + - uid: 1883 + components: + - type: Transform + pos: 68.5,-26.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + pos: 68.5,-27.5 + parent: 2 + - uid: 1888 + components: + - type: Transform + pos: 66.5,-32.5 + parent: 2 + - uid: 1890 + components: + - type: Transform + pos: 66.5,-31.5 + parent: 2 + - uid: 1891 + components: + - type: Transform + pos: 65.5,-31.5 + parent: 2 + - uid: 1892 + components: + - type: Transform + pos: 64.5,-31.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + pos: 63.5,-31.5 + parent: 2 + - uid: 1894 + components: + - type: Transform + pos: 62.5,-31.5 + parent: 2 + - uid: 1895 + components: + - type: Transform + pos: 61.5,-31.5 + parent: 2 + - uid: 1896 + components: + - type: Transform + pos: 60.5,-31.5 + parent: 2 + - uid: 1897 + components: + - type: Transform + pos: 59.5,-31.5 + parent: 2 + - uid: 1898 + components: + - type: Transform + pos: 58.5,-31.5 + parent: 2 + - uid: 1899 + components: + - type: Transform + pos: 57.5,-31.5 + parent: 2 + - uid: 1900 + components: + - type: Transform + pos: 56.5,-31.5 + parent: 2 + - uid: 1901 + components: + - type: Transform + pos: 55.5,-31.5 + parent: 2 + - uid: 1902 + components: + - type: Transform + pos: 54.5,-31.5 + parent: 2 + - uid: 1903 + components: + - type: Transform + pos: 53.5,-31.5 + parent: 2 + - uid: 1904 + components: + - type: Transform + pos: 53.5,-30.5 + parent: 2 + - uid: 1905 + components: + - type: Transform + pos: 53.5,-29.5 + parent: 2 + - uid: 1906 + components: + - type: Transform + pos: 53.5,-28.5 + parent: 2 + - uid: 1907 + components: + - type: Transform + pos: 53.5,-27.5 + parent: 2 + - uid: 1908 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 1909 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 1910 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 1911 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 1912 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 1913 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 1914 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 1915 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 1916 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 1917 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 1918 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 1919 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 1920 + components: + - type: Transform + pos: 6.5,13.5 + parent: 2 + - uid: 1921 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 1922 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 1923 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 + - uid: 1924 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - uid: 1925 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 1926 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - uid: 1927 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 1928 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 1929 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 + - uid: 1930 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 + - uid: 1931 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - uid: 1932 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 + - uid: 1933 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 1934 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 1935 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 1936 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 1937 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 1938 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 1940 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 1941 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 1942 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 1943 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 + - uid: 1944 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 1945 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 1946 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 1947 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 1948 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 1949 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 1950 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 1951 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 1952 + components: + - type: Transform + pos: -3.5,12.5 + parent: 2 + - uid: 1953 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - uid: 1954 + components: + - type: Transform + pos: -5.5,12.5 + parent: 2 + - uid: 1955 + components: + - type: Transform + pos: -6.5,12.5 + parent: 2 + - uid: 1956 + components: + - type: Transform + pos: -7.5,12.5 + parent: 2 + - uid: 1957 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 + - uid: 1958 + components: + - type: Transform + pos: -9.5,12.5 + parent: 2 + - uid: 1959 + components: + - type: Transform + pos: -10.5,12.5 + parent: 2 + - uid: 1960 + components: + - type: Transform + pos: -11.5,12.5 + parent: 2 + - uid: 1961 + components: + - type: Transform + pos: -12.5,12.5 + parent: 2 + - uid: 1962 + components: + - type: Transform + pos: -13.5,12.5 + parent: 2 + - uid: 1963 + components: + - type: Transform + pos: -14.5,12.5 + parent: 2 + - uid: 1964 + components: + - type: Transform + pos: -15.5,12.5 + parent: 2 + - uid: 1965 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 1966 + components: + - type: Transform + pos: -17.5,12.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + pos: -18.5,12.5 + parent: 2 + - uid: 1968 + components: + - type: Transform + pos: -18.5,11.5 + parent: 2 + - uid: 1969 + components: + - type: Transform + pos: -19.5,11.5 + parent: 2 + - uid: 1970 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 + - uid: 1971 + components: + - type: Transform + pos: -21.5,11.5 + parent: 2 + - uid: 1972 + components: + - type: Transform + pos: -22.5,11.5 + parent: 2 + - uid: 1973 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - uid: 1974 + components: + - type: Transform + pos: -24.5,11.5 + parent: 2 + - uid: 1975 + components: + - type: Transform + pos: -25.5,11.5 + parent: 2 + - uid: 1976 + components: + - type: Transform + pos: -26.5,11.5 + parent: 2 + - uid: 1977 + components: + - type: Transform + pos: -27.5,11.5 + parent: 2 + - uid: 1978 + components: + - type: Transform + pos: -27.5,10.5 + parent: 2 + - uid: 1979 + components: + - type: Transform + pos: -27.5,9.5 + parent: 2 + - uid: 1980 + components: + - type: Transform + pos: -27.5,8.5 + parent: 2 + - uid: 1981 + components: + - type: Transform + pos: -28.5,8.5 + parent: 2 + - uid: 1982 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 1983 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 2 + - uid: 1984 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 + - uid: 1985 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 2 + - uid: 1986 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 1987 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - uid: 1988 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 2 + - uid: 1989 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 + - uid: 1990 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 2 + - uid: 1991 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 2 + - uid: 1992 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 2 + - uid: 1993 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 2 + - uid: 1994 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 2 + - uid: 1995 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 1996 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - uid: 1997 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 1998 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - uid: 1999 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 + - uid: 2000 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 + - uid: 2001 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 2002 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 2 + - uid: 2003 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 2 + - uid: 2004 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 2 + - uid: 2005 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 2 + - uid: 2006 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - uid: 2007 + components: + - type: Transform + pos: 85.5,36.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + pos: 86.5,35.5 + parent: 2 + - uid: 2009 + components: + - type: Transform + pos: 38.5,2.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - uid: 2011 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 2012 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 + - uid: 2013 + components: + - type: Transform + pos: 38.5,6.5 + parent: 2 + - uid: 2014 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + pos: 40.5,6.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + pos: 40.5,7.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + pos: 40.5,8.5 + parent: 2 + - uid: 2018 + components: + - type: Transform + pos: 40.5,9.5 + parent: 2 + - uid: 2019 + components: + - type: Transform + pos: 40.5,10.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + pos: 40.5,11.5 + parent: 2 + - uid: 2021 + components: + - type: Transform + pos: 40.5,12.5 + parent: 2 + - uid: 2022 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - uid: 2024 + components: + - type: Transform + pos: 40.5,15.5 + parent: 2 + - uid: 2028 + components: + - type: Transform + pos: 43.5,16.5 + parent: 2 + - uid: 2029 + components: + - type: Transform + pos: 44.5,16.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + pos: 45.5,16.5 + parent: 2 + - uid: 2031 + components: + - type: Transform + pos: 46.5,16.5 + parent: 2 + - uid: 2032 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 + - uid: 2033 + components: + - type: Transform + pos: 48.5,16.5 + parent: 2 + - uid: 2034 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 + - uid: 2035 + components: + - type: Transform + pos: 50.5,16.5 + parent: 2 + - uid: 2036 + components: + - type: Transform + pos: 47.5,17.5 + parent: 2 + - uid: 2037 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 2038 + components: + - type: Transform + pos: 47.5,19.5 + parent: 2 + - uid: 2039 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 2042 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 2044 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 2045 + components: + - type: Transform + pos: 48.5,22.5 + parent: 2 + - uid: 2046 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 2048 + components: + - type: Transform + pos: 66.5,-33.5 + parent: 2 + - uid: 2056 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 + - uid: 2058 + components: + - type: Transform + pos: 54.5,32.5 + parent: 2 + - uid: 2059 + components: + - type: Transform + pos: 55.5,32.5 + parent: 2 + - uid: 2060 + components: + - type: Transform + pos: 55.5,31.5 + parent: 2 + - uid: 2061 + components: + - type: Transform + pos: 55.5,30.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + pos: 55.5,29.5 + parent: 2 + - uid: 2063 + components: + - type: Transform + pos: 54.5,29.5 + parent: 2 + - uid: 2064 + components: + - type: Transform + pos: 87.5,-3.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + pos: 87.5,-2.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + pos: 67.5,-33.5 + parent: 2 + - uid: 2067 + components: + - type: Transform + pos: 68.5,-33.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + pos: 72.5,-32.5 + parent: 2 + - uid: 2071 + components: + - type: Transform + pos: 72.5,-31.5 + parent: 2 + - uid: 2072 + components: + - type: Transform + pos: 72.5,-30.5 + parent: 2 + - uid: 2073 + components: + - type: Transform + pos: 73.5,-30.5 + parent: 2 + - uid: 2074 + components: + - type: Transform + pos: 74.5,-30.5 + parent: 2 + - uid: 2807 + components: + - type: Transform + pos: 86.5,41.5 + parent: 2 + - uid: 4279 + components: + - type: Transform + pos: 85.5,47.5 + parent: 2 + - uid: 4362 + components: + - type: Transform + pos: 86.5,47.5 + parent: 2 + - uid: 8075 + components: + - type: Transform + pos: 87.5,47.5 + parent: 2 + - uid: 8083 + components: + - type: Transform + pos: 88.5,47.5 + parent: 2 + - uid: 11743 + components: + - type: Transform + pos: 82.5,16.5 + parent: 2 + - uid: 12470 + components: + - type: Transform + pos: 41.5,15.5 + parent: 2 + - uid: 12471 + components: + - type: Transform + pos: 42.5,15.5 + parent: 2 + - uid: 12472 + components: + - type: Transform + pos: 43.5,15.5 + parent: 2 + - uid: 12534 + components: + - type: Transform + pos: 48.5,29.5 + parent: 2 + - uid: 12535 + components: + - type: Transform + pos: 49.5,29.5 + parent: 2 + - uid: 12536 + components: + - type: Transform + pos: 50.5,29.5 + parent: 2 + - uid: 12537 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 12538 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 12539 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 12540 + components: + - type: Transform + pos: 52.5,31.5 + parent: 2 + - uid: 12569 + components: + - type: Transform + pos: 89.5,47.5 + parent: 2 + - uid: 12570 + components: + - type: Transform + pos: 90.5,47.5 + parent: 2 + - uid: 12571 + components: + - type: Transform + pos: 90.5,46.5 + parent: 2 + - uid: 12572 + components: + - type: Transform + pos: 90.5,45.5 + parent: 2 + - uid: 12573 + components: + - type: Transform + pos: 90.5,44.5 + parent: 2 + - uid: 12574 + components: + - type: Transform + pos: 90.5,43.5 + parent: 2 + - uid: 12575 + components: + - type: Transform + pos: 91.5,43.5 + parent: 2 + - uid: 12576 + components: + - type: Transform + pos: 92.5,43.5 + parent: 2 + - uid: 12577 + components: + - type: Transform + pos: 93.5,43.5 + parent: 2 + - uid: 12578 + components: + - type: Transform + pos: 94.5,43.5 + parent: 2 + - uid: 12579 + components: + - type: Transform + pos: 95.5,43.5 + parent: 2 + - uid: 12580 + components: + - type: Transform + pos: 90.5,48.5 + parent: 2 + - uid: 12581 + components: + - type: Transform + pos: 90.5,49.5 + parent: 2 + - uid: 12582 + components: + - type: Transform + pos: 90.5,50.5 + parent: 2 + - uid: 12583 + components: + - type: Transform + pos: 91.5,50.5 + parent: 2 + - uid: 12584 + components: + - type: Transform + pos: 91.5,51.5 + parent: 2 + - uid: 12585 + components: + - type: Transform + pos: 92.5,51.5 + parent: 2 + - uid: 12586 + components: + - type: Transform + pos: 93.5,51.5 + parent: 2 + - uid: 12587 + components: + - type: Transform + pos: 94.5,51.5 + parent: 2 + - uid: 12588 + components: + - type: Transform + pos: 95.5,51.5 + parent: 2 + - uid: 12601 + components: + - type: Transform + pos: 95.5,44.5 + parent: 2 + - uid: 12602 + components: + - type: Transform + pos: 95.5,45.5 + parent: 2 + - uid: 12603 + components: + - type: Transform + pos: 95.5,46.5 + parent: 2 + - uid: 12604 + components: + - type: Transform + pos: 95.5,47.5 + parent: 2 + - uid: 12605 + components: + - type: Transform + pos: 95.5,48.5 + parent: 2 + - uid: 12606 + components: + - type: Transform + pos: 95.5,49.5 + parent: 2 + - uid: 12607 + components: + - type: Transform + pos: 95.5,50.5 + parent: 2 + - uid: 12608 + components: + - type: Transform + pos: 85.5,41.5 + parent: 2 + - uid: 12649 + components: + - type: Transform + pos: 84.5,41.5 + parent: 2 + - uid: 13964 + components: + - type: Transform + pos: 67.5,-27.5 + parent: 2 + - uid: 13965 + components: + - type: Transform + pos: 66.5,-27.5 + parent: 2 + - uid: 13966 + components: + - type: Transform + pos: 66.5,-28.5 + parent: 2 + - uid: 13967 + components: + - type: Transform + pos: 66.5,-29.5 + parent: 2 + - uid: 13968 + components: + - type: Transform + pos: 66.5,-30.5 + parent: 2 + - uid: 13982 + components: + - type: Transform + pos: 69.5,-33.5 + parent: 2 + - uid: 13983 + components: + - type: Transform + pos: 70.5,-33.5 + parent: 2 + - uid: 13984 + components: + - type: Transform + pos: 71.5,-33.5 + parent: 2 + - uid: 13985 + components: + - type: Transform + pos: 72.5,-33.5 + parent: 2 + - uid: 14632 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - uid: 14638 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 14729 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 14732 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - uid: 14733 + components: + - type: Transform + pos: 47.5,28.5 + parent: 2 + - uid: 14734 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 14736 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 +- proto: CableHVStack + entities: + - uid: 2075 + components: + - type: Transform + pos: 88.40067,13.750069 + parent: 2 + - uid: 2076 + components: + - type: Transform + pos: 88.80462,13.476631 + parent: 2 + - uid: 2077 + components: + - type: Transform + pos: 67.36934,-19.97804 + parent: 2 +- proto: CableMV + entities: + - uid: 2040 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 2041 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 2078 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 2080 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 2081 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - uid: 2083 + components: + - type: Transform + pos: -37.5,3.5 + parent: 2 + - uid: 2084 + components: + - type: Transform + pos: -28.5,8.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: -27.5,8.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: -27.5,9.5 + parent: 2 + - uid: 2087 + components: + - type: Transform + pos: -27.5,10.5 + parent: 2 + - uid: 2088 + components: + - type: Transform + pos: -27.5,11.5 + parent: 2 + - uid: 2089 + components: + - type: Transform + pos: -28.5,11.5 + parent: 2 + - uid: 2090 + components: + - type: Transform + pos: -29.5,11.5 + parent: 2 + - uid: 2091 + components: + - type: Transform + pos: -30.5,11.5 + parent: 2 + - uid: 2092 + components: + - type: Transform + pos: -31.5,11.5 + parent: 2 + - uid: 2093 + components: + - type: Transform + pos: -32.5,11.5 + parent: 2 + - uid: 2094 + components: + - type: Transform + pos: -33.5,11.5 + parent: 2 + - uid: 2097 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 + - uid: 2098 + components: + - type: Transform + pos: -35.5,9.5 + parent: 2 + - uid: 2099 + components: + - type: Transform + pos: -35.5,8.5 + parent: 2 + - uid: 2100 + components: + - type: Transform + pos: -36.5,8.5 + parent: 2 + - uid: 2101 + components: + - type: Transform + pos: -36.5,7.5 + parent: 2 + - uid: 2102 + components: + - type: Transform + pos: -36.5,6.5 + parent: 2 + - uid: 2103 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 + - uid: 2104 + components: + - type: Transform + pos: -36.5,4.5 + parent: 2 + - uid: 2105 + components: + - type: Transform + pos: -37.5,4.5 + parent: 2 + - uid: 2106 + components: + - type: Transform + pos: -37.5,2.5 + parent: 2 + - uid: 2107 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 + - uid: 2108 + components: + - type: Transform + pos: -39.5,2.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + pos: -40.5,2.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + pos: -41.5,2.5 + parent: 2 + - uid: 2111 + components: + - type: Transform + pos: -42.5,2.5 + parent: 2 + - uid: 2112 + components: + - type: Transform + pos: -42.5,3.5 + parent: 2 + - uid: 2113 + components: + - type: Transform + pos: -42.5,4.5 + parent: 2 + - uid: 2114 + components: + - type: Transform + pos: 53.5,-27.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + pos: 53.5,-28.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + pos: 53.5,-29.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + pos: 85.5,-30.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + pos: 51.5,-29.5 + parent: 2 + - uid: 2119 + components: + - type: Transform + pos: 51.5,-28.5 + parent: 2 + - uid: 2120 + components: + - type: Transform + pos: 51.5,-27.5 + parent: 2 + - uid: 2121 + components: + - type: Transform + pos: 51.5,-26.5 + parent: 2 + - uid: 2122 + components: + - type: Transform + pos: 51.5,-25.5 + parent: 2 + - uid: 2123 + components: + - type: Transform + pos: 51.5,-24.5 + parent: 2 + - uid: 2124 + components: + - type: Transform + pos: 52.5,-24.5 + parent: 2 + - uid: 2125 + components: + - type: Transform + pos: 53.5,-24.5 + parent: 2 + - uid: 2126 + components: + - type: Transform + pos: 54.5,-24.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + pos: 55.5,-24.5 + parent: 2 + - uid: 2128 + components: + - type: Transform + pos: 56.5,-24.5 + parent: 2 + - uid: 2129 + components: + - type: Transform + pos: 57.5,-24.5 + parent: 2 + - uid: 2130 + components: + - type: Transform + pos: 58.5,-24.5 + parent: 2 + - uid: 2131 + components: + - type: Transform + pos: 59.5,-24.5 + parent: 2 + - uid: 2132 + components: + - type: Transform + pos: 60.5,-24.5 + parent: 2 + - uid: 2133 + components: + - type: Transform + pos: 61.5,-24.5 + parent: 2 + - uid: 2134 + components: + - type: Transform + pos: 61.5,-23.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + pos: 61.5,-22.5 + parent: 2 + - uid: 2136 + components: + - type: Transform + pos: 61.5,-21.5 + parent: 2 + - uid: 2137 + components: + - type: Transform + pos: 62.5,-21.5 + parent: 2 + - uid: 2138 + components: + - type: Transform + pos: 61.5,-20.5 + parent: 2 + - uid: 2139 + components: + - type: Transform + pos: 61.5,-19.5 + parent: 2 + - uid: 2140 + components: + - type: Transform + pos: 61.5,-18.5 + parent: 2 + - uid: 2141 + components: + - type: Transform + pos: 61.5,-17.5 + parent: 2 + - uid: 2142 + components: + - type: Transform + pos: 61.5,-16.5 + parent: 2 + - uid: 2143 + components: + - type: Transform + pos: 61.5,-15.5 + parent: 2 + - uid: 2144 + components: + - type: Transform + pos: 61.5,-14.5 + parent: 2 + - uid: 2145 + components: + - type: Transform + pos: 61.5,-13.5 + parent: 2 + - uid: 2146 + components: + - type: Transform + pos: 60.5,-17.5 + parent: 2 + - uid: 2147 + components: + - type: Transform + pos: 59.5,-17.5 + parent: 2 + - uid: 2148 + components: + - type: Transform + pos: 58.5,-17.5 + parent: 2 + - uid: 2149 + components: + - type: Transform + pos: 57.5,-17.5 + parent: 2 + - uid: 2150 + components: + - type: Transform + pos: 56.5,-17.5 + parent: 2 + - uid: 2151 + components: + - type: Transform + pos: 55.5,-17.5 + parent: 2 + - uid: 2152 + components: + - type: Transform + pos: 54.5,-17.5 + parent: 2 + - uid: 2153 + components: + - type: Transform + pos: 54.5,-16.5 + parent: 2 + - uid: 2154 + components: + - type: Transform + pos: 54.5,-15.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + pos: 54.5,-14.5 + parent: 2 + - uid: 2156 + components: + - type: Transform + pos: 54.5,-13.5 + parent: 2 + - uid: 2157 + components: + - type: Transform + pos: 61.5,-12.5 + parent: 2 + - uid: 2158 + components: + - type: Transform + pos: 61.5,-11.5 + parent: 2 + - uid: 2159 + components: + - type: Transform + pos: 60.5,-11.5 + parent: 2 + - uid: 2160 + components: + - type: Transform + pos: 59.5,-11.5 + parent: 2 + - uid: 2161 + components: + - type: Transform + pos: 58.5,-11.5 + parent: 2 + - uid: 2162 + components: + - type: Transform + pos: 57.5,-11.5 + parent: 2 + - uid: 2163 + components: + - type: Transform + pos: 56.5,-11.5 + parent: 2 + - uid: 2164 + components: + - type: Transform + pos: 55.5,-11.5 + parent: 2 + - uid: 2165 + components: + - type: Transform + pos: 55.5,-10.5 + parent: 2 + - uid: 2166 + components: + - type: Transform + pos: 55.5,-9.5 + parent: 2 + - uid: 2167 + components: + - type: Transform + pos: 61.5,-10.5 + parent: 2 + - uid: 2168 + components: + - type: Transform + pos: 62.5,-10.5 + parent: 2 + - uid: 2169 + components: + - type: Transform + pos: 63.5,-10.5 + parent: 2 + - uid: 2171 + components: + - type: Transform + pos: 65.5,-10.5 + parent: 2 + - uid: 2172 + components: + - type: Transform + pos: 65.5,-9.5 + parent: 2 + - uid: 2173 + components: + - type: Transform + pos: 61.5,-9.5 + parent: 2 + - uid: 2174 + components: + - type: Transform + pos: 61.5,-8.5 + parent: 2 + - uid: 2175 + components: + - type: Transform + pos: 61.5,-7.5 + parent: 2 + - uid: 2176 + components: + - type: Transform + pos: 62.5,-7.5 + parent: 2 + - uid: 2177 + components: + - type: Transform + pos: 63.5,-7.5 + parent: 2 + - uid: 2178 + components: + - type: Transform + pos: 64.5,-7.5 + parent: 2 + - uid: 2179 + components: + - type: Transform + pos: 65.5,-7.5 + parent: 2 + - uid: 2180 + components: + - type: Transform + pos: 66.5,-7.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + pos: 67.5,-7.5 + parent: 2 + - uid: 2182 + components: + - type: Transform + pos: 60.5,-7.5 + parent: 2 + - uid: 2183 + components: + - type: Transform + pos: 59.5,-7.5 + parent: 2 + - uid: 2184 + components: + - type: Transform + pos: 58.5,-7.5 + parent: 2 + - uid: 2185 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + pos: 56.5,-7.5 + parent: 2 + - uid: 2187 + components: + - type: Transform + pos: 56.5,-6.5 + parent: 2 + - uid: 2188 + components: + - type: Transform + pos: 56.5,-5.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: 55.5,-7.5 + parent: 2 + - uid: 2190 + components: + - type: Transform + pos: 54.5,-7.5 + parent: 2 + - uid: 2191 + components: + - type: Transform + pos: 53.5,-7.5 + parent: 2 + - uid: 2192 + components: + - type: Transform + pos: 52.5,-7.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 2 + - uid: 2194 + components: + - type: Transform + pos: 50.5,-7.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + pos: 49.5,-7.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: 48.5,-7.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + pos: 47.5,-7.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + pos: 46.5,-7.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + pos: 45.5,-7.5 + parent: 2 + - uid: 2200 + components: + - type: Transform + pos: 44.5,-7.5 + parent: 2 + - uid: 2201 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 2 + - uid: 2202 + components: + - type: Transform + pos: 49.5,-6.5 + parent: 2 + - uid: 2203 + components: + - type: Transform + pos: 49.5,-5.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: 49.5,-4.5 + parent: 2 + - uid: 2205 + components: + - type: Transform + pos: 49.5,-3.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: 49.5,-2.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: 48.5,-2.5 + parent: 2 + - uid: 2208 + components: + - type: Transform + pos: 47.5,-2.5 + parent: 2 + - uid: 2209 + components: + - type: Transform + pos: 47.5,-1.5 + parent: 2 + - uid: 2210 + components: + - type: Transform + pos: 60.5,-25.5 + parent: 2 + - uid: 2211 + components: + - type: Transform + pos: 60.5,-26.5 + parent: 2 + - uid: 2212 + components: + - type: Transform + pos: 60.5,-27.5 + parent: 2 + - uid: 2213 + components: + - type: Transform + pos: 59.5,-27.5 + parent: 2 + - uid: 2214 + components: + - type: Transform + pos: 59.5,-26.5 + parent: 2 + - uid: 2215 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 + - uid: 2216 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 2217 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - uid: 2218 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 2219 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - uid: 2220 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 2221 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 2222 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 + - uid: 2223 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + pos: -3.5,7.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 2226 + components: + - type: Transform + pos: -3.5,9.5 + parent: 2 + - uid: 2227 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 + - uid: 2228 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - uid: 2229 + components: + - type: Transform + pos: -64.5,4.5 + parent: 2 + - uid: 2230 + components: + - type: Transform + pos: -64.5,3.5 + parent: 2 + - uid: 2231 + components: + - type: Transform + pos: -65.5,3.5 + parent: 2 + - uid: 2232 + components: + - type: Transform + pos: -66.5,3.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + pos: -67.5,3.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + pos: -68.5,3.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + pos: -68.5,4.5 + parent: 2 + - uid: 2236 + components: + - type: Transform + pos: -68.5,5.5 + parent: 2 + - uid: 2237 + components: + - type: Transform + pos: -68.5,6.5 + parent: 2 + - uid: 2238 + components: + - type: Transform + pos: -68.5,7.5 + parent: 2 + - uid: 2239 + components: + - type: Transform + pos: -68.5,8.5 + parent: 2 + - uid: 2240 + components: + - type: Transform + pos: -68.5,9.5 + parent: 2 + - uid: 2241 + components: + - type: Transform + pos: -68.5,2.5 + parent: 2 + - uid: 2242 + components: + - type: Transform + pos: -68.5,1.5 + parent: 2 + - uid: 2243 + components: + - type: Transform + pos: -68.5,0.5 + parent: 2 + - uid: 2244 + components: + - type: Transform + pos: -68.5,-0.5 + parent: 2 + - uid: 2245 + components: + - type: Transform + pos: -68.5,-1.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + pos: -68.5,-2.5 + parent: 2 + - uid: 2247 + components: + - type: Transform + pos: -68.5,-3.5 + parent: 2 + - uid: 2248 + components: + - type: Transform + pos: -68.5,-4.5 + parent: 2 + - uid: 2249 + components: + - type: Transform + pos: -68.5,-5.5 + parent: 2 + - uid: 2250 + components: + - type: Transform + pos: -67.5,-5.5 + parent: 2 + - uid: 2251 + components: + - type: Transform + pos: -66.5,-5.5 + parent: 2 + - uid: 2252 + components: + - type: Transform + pos: -65.5,-5.5 + parent: 2 + - uid: 2253 + components: + - type: Transform + pos: -64.5,-5.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + pos: -63.5,-5.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 2 + - uid: 2256 + components: + - type: Transform + pos: -63.5,-3.5 + parent: 2 + - uid: 2257 + components: + - type: Transform + pos: -63.5,-2.5 + parent: 2 + - uid: 2258 + components: + - type: Transform + pos: -51.5,7.5 + parent: 2 + - uid: 2259 + components: + - type: Transform + pos: -51.5,6.5 + parent: 2 + - uid: 2260 + components: + - type: Transform + pos: -53.5,3.5 + parent: 2 + - uid: 2261 + components: + - type: Transform + pos: -54.5,4.5 + parent: 2 + - uid: 2262 + components: + - type: Transform + pos: -54.5,3.5 + parent: 2 + - uid: 2263 + components: + - type: Transform + pos: -52.5,3.5 + parent: 2 + - uid: 2264 + components: + - type: Transform + pos: -51.5,3.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: -50.5,3.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: -50.5,2.5 + parent: 2 + - uid: 2267 + components: + - type: Transform + pos: -50.5,1.5 + parent: 2 + - uid: 2268 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: -49.5,0.5 + parent: 2 + - uid: 2275 + components: + - type: Transform + pos: 84.5,47.5 + parent: 2 + - uid: 2276 + components: + - type: Transform + pos: 83.5,47.5 + parent: 2 + - uid: 2277 + components: + - type: Transform + pos: 82.5,47.5 + parent: 2 + - uid: 2278 + components: + - type: Transform + pos: 81.5,47.5 + parent: 2 + - uid: 2279 + components: + - type: Transform + pos: 80.5,47.5 + parent: 2 + - uid: 2283 + components: + - type: Transform + pos: 78.5,49.5 + parent: 2 + - uid: 2284 + components: + - type: Transform + pos: 79.5,47.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: 78.5,47.5 + parent: 2 + - uid: 2286 + components: + - type: Transform + pos: 78.5,48.5 + parent: 2 + - uid: 2287 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 2288 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 + - uid: 2289 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - uid: 2291 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 2 + - uid: 2295 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 2 + - uid: 2296 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 2299 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 2300 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - uid: 2301 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 2302 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 2303 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 + - uid: 2304 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 2305 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 2306 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 2308 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 2309 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 2310 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 2311 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 + - uid: 2312 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 + - uid: 2313 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 + - uid: 2314 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - uid: 2315 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 2318 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 2 + - uid: 2320 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 2 + - uid: 2321 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 2 + - uid: 2322 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 2 + - uid: 2323 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 + - uid: 2324 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 2 + - uid: 2325 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - uid: 2326 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 2327 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 2 + - uid: 2328 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 + - uid: 2329 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 2 + - uid: 2330 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + pos: 24.5,1.5 + parent: 2 + - uid: 2332 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 2333 + components: + - type: Transform + pos: 22.5,1.5 + parent: 2 + - uid: 2334 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 + - uid: 2335 + components: + - type: Transform + pos: 20.5,1.5 + parent: 2 + - uid: 2336 + components: + - type: Transform + pos: 19.5,1.5 + parent: 2 + - uid: 2337 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 2338 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 2 + - uid: 2339 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - uid: 2340 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 2343 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 + - uid: 2347 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - uid: 2348 + components: + - type: Transform + pos: 21.5,9.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + pos: 20.5,9.5 + parent: 2 + - uid: 2350 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 2353 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 2354 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 2355 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 + - uid: 2357 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 2358 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 2360 + components: + - type: Transform + pos: 22.5,12.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + pos: 23.5,12.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 2365 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 + - uid: 2366 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + pos: 31.5,13.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - uid: 2372 + components: + - type: Transform + pos: 32.5,12.5 + parent: 2 + - uid: 2373 + components: + - type: Transform + pos: 32.5,11.5 + parent: 2 + - uid: 2374 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 + - uid: 2375 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 + - uid: 2376 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 2377 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + pos: 50.5,16.5 + parent: 2 + - uid: 2379 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + pos: 48.5,16.5 + parent: 2 + - uid: 2381 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 + - uid: 2382 + components: + - type: Transform + pos: 46.5,16.5 + parent: 2 + - uid: 2383 + components: + - type: Transform + pos: 45.5,16.5 + parent: 2 + - uid: 2384 + components: + - type: Transform + pos: 44.5,16.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + pos: 43.5,16.5 + parent: 2 + - uid: 2389 + components: + - type: Transform + pos: 40.5,15.5 + parent: 2 + - uid: 2390 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 2392 + components: + - type: Transform + pos: 40.5,12.5 + parent: 2 + - uid: 2393 + components: + - type: Transform + pos: 40.5,11.5 + parent: 2 + - uid: 2394 + components: + - type: Transform + pos: 40.5,10.5 + parent: 2 + - uid: 2395 + components: + - type: Transform + pos: 40.5,9.5 + parent: 2 + - uid: 2396 + components: + - type: Transform + pos: 40.5,8.5 + parent: 2 + - uid: 2397 + components: + - type: Transform + pos: 41.5,8.5 + parent: 2 + - uid: 2398 + components: + - type: Transform + pos: 42.5,8.5 + parent: 2 + - uid: 2399 + components: + - type: Transform + pos: 40.5,7.5 + parent: 2 + - uid: 2400 + components: + - type: Transform + pos: 40.5,6.5 + parent: 2 + - uid: 2401 + components: + - type: Transform + pos: 40.5,5.5 + parent: 2 + - uid: 2402 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - uid: 2403 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 2405 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - uid: 2406 + components: + - type: Transform + pos: 38.5,2.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + pos: 39.5,2.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + pos: 40.5,2.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + pos: 41.5,2.5 + parent: 2 + - uid: 2410 + components: + - type: Transform + pos: 42.5,2.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + pos: 43.5,2.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + pos: 44.5,2.5 + parent: 2 + - uid: 2413 + components: + - type: Transform + pos: 45.5,2.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + pos: 45.5,3.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + pos: 55.5,29.5 + parent: 2 + - uid: 2416 + components: + - type: Transform + pos: 55.5,30.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + pos: 55.5,31.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + pos: 55.5,32.5 + parent: 2 + - uid: 2419 + components: + - type: Transform + pos: 54.5,29.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + pos: 56.5,32.5 + parent: 2 + - uid: 2421 + components: + - type: Transform + pos: 57.5,32.5 + parent: 2 + - uid: 2422 + components: + - type: Transform + pos: 57.5,31.5 + parent: 2 + - uid: 2423 + components: + - type: Transform + pos: 57.5,30.5 + parent: 2 + - uid: 2424 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - uid: 2425 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + pos: 57.5,26.5 + parent: 2 + - uid: 2428 + components: + - type: Transform + pos: 56.5,26.5 + parent: 2 + - uid: 2429 + components: + - type: Transform + pos: 55.5,26.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: 55.5,25.5 + parent: 2 + - uid: 2431 + components: + - type: Transform + pos: 55.5,24.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + pos: 55.5,23.5 + parent: 2 + - uid: 2433 + components: + - type: Transform + pos: 55.5,22.5 + parent: 2 + - uid: 2434 + components: + - type: Transform + pos: 54.5,22.5 + parent: 2 + - uid: 2435 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 + - uid: 2436 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 2437 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - uid: 2438 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + pos: 57.5,25.5 + parent: 2 + - uid: 2440 + components: + - type: Transform + pos: 57.5,24.5 + parent: 2 + - uid: 2441 + components: + - type: Transform + pos: 57.5,23.5 + parent: 2 + - uid: 2442 + components: + - type: Transform + pos: 57.5,22.5 + parent: 2 + - uid: 2443 + components: + - type: Transform + pos: 58.5,22.5 + parent: 2 + - uid: 2444 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - uid: 2445 + components: + - type: Transform + pos: 60.5,22.5 + parent: 2 + - uid: 2446 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 2447 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 2448 + components: + - type: Transform + pos: 57.5,19.5 + parent: 2 + - uid: 2449 + components: + - type: Transform + pos: 57.5,18.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: 57.5,17.5 + parent: 2 + - uid: 2451 + components: + - type: Transform + pos: 57.5,16.5 + parent: 2 + - uid: 2452 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 + - uid: 2453 + components: + - type: Transform + pos: 57.5,14.5 + parent: 2 + - uid: 2454 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 + - uid: 2455 + components: + - type: Transform + pos: 57.5,12.5 + parent: 2 + - uid: 2456 + components: + - type: Transform + pos: 56.5,12.5 + parent: 2 + - uid: 2457 + components: + - type: Transform + pos: 55.5,12.5 + parent: 2 + - uid: 2458 + components: + - type: Transform + pos: 54.5,12.5 + parent: 2 + - uid: 2459 + components: + - type: Transform + pos: 53.5,12.5 + parent: 2 + - uid: 2460 + components: + - type: Transform + pos: 52.5,12.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + pos: 52.5,13.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + pos: 58.5,12.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + pos: 59.5,12.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - uid: 2466 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + pos: 60.5,10.5 + parent: 2 + - uid: 2468 + components: + - type: Transform + pos: 61.5,12.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + pos: 62.5,12.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 63.5,12.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + pos: 64.5,12.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + pos: 65.5,12.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + pos: 66.5,12.5 + parent: 2 + - uid: 2474 + components: + - type: Transform + pos: 67.5,12.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + pos: 68.5,12.5 + parent: 2 + - uid: 2476 + components: + - type: Transform + pos: 68.5,11.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + pos: 69.5,11.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + pos: 65.5,13.5 + parent: 2 + - uid: 2479 + components: + - type: Transform + pos: 65.5,14.5 + parent: 2 + - uid: 2480 + components: + - type: Transform + pos: 65.5,15.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + pos: 65.5,16.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + pos: 64.5,16.5 + parent: 2 + - uid: 2483 + components: + - type: Transform + pos: 64.5,17.5 + parent: 2 + - uid: 2484 + components: + - type: Transform + pos: 64.5,18.5 + parent: 2 + - uid: 2485 + components: + - type: Transform + pos: 64.5,19.5 + parent: 2 + - uid: 2486 + components: + - type: Transform + pos: 63.5,19.5 + parent: 2 + - uid: 2487 + components: + - type: Transform + pos: 63.5,18.5 + parent: 2 + - uid: 2488 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - uid: 2489 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 2490 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 2491 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 2492 + components: + - type: Transform + pos: 87.5,-2.5 + parent: 2 + - uid: 2493 + components: + - type: Transform + pos: 87.5,-3.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + pos: 87.5,-4.5 + parent: 2 + - uid: 2495 + components: + - type: Transform + pos: 84.5,-4.5 + parent: 2 + - uid: 2496 + components: + - type: Transform + pos: 85.5,-4.5 + parent: 2 + - uid: 2497 + components: + - type: Transform + pos: 86.5,-4.5 + parent: 2 + - uid: 2498 + components: + - type: Transform + pos: 83.5,-4.5 + parent: 2 + - uid: 2499 + components: + - type: Transform + pos: 82.5,-4.5 + parent: 2 + - uid: 2500 + components: + - type: Transform + pos: 81.5,-4.5 + parent: 2 + - uid: 2501 + components: + - type: Transform + pos: 80.5,-4.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + pos: 79.5,-4.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + pos: 84.5,-3.5 + parent: 2 + - uid: 2504 + components: + - type: Transform + pos: 84.5,-2.5 + parent: 2 + - uid: 2505 + components: + - type: Transform + pos: 84.5,-1.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: 84.5,-0.5 + parent: 2 + - uid: 2507 + components: + - type: Transform + pos: 84.5,0.5 + parent: 2 + - uid: 2508 + components: + - type: Transform + pos: 84.5,1.5 + parent: 2 + - uid: 2509 + components: + - type: Transform + pos: 85.5,1.5 + parent: 2 + - uid: 2510 + components: + - type: Transform + pos: 85.5,0.5 + parent: 2 + - uid: 2511 + components: + - type: Transform + pos: 79.5,-3.5 + parent: 2 + - uid: 2512 + components: + - type: Transform + pos: 79.5,-2.5 + parent: 2 + - uid: 2513 + components: + - type: Transform + pos: 79.5,-1.5 + parent: 2 + - uid: 2514 + components: + - type: Transform + pos: 79.5,-0.5 + parent: 2 + - uid: 2515 + components: + - type: Transform + pos: 79.5,0.5 + parent: 2 + - uid: 2516 + components: + - type: Transform + pos: 79.5,1.5 + parent: 2 + - uid: 2517 + components: + - type: Transform + pos: 78.5,1.5 + parent: 2 + - uid: 2518 + components: + - type: Transform + pos: 77.5,1.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + pos: 76.5,1.5 + parent: 2 + - uid: 2520 + components: + - type: Transform + pos: 75.5,1.5 + parent: 2 + - uid: 2521 + components: + - type: Transform + pos: 74.5,1.5 + parent: 2 + - uid: 2522 + components: + - type: Transform + pos: 73.5,1.5 + parent: 2 + - uid: 2523 + components: + - type: Transform + pos: 72.5,1.5 + parent: 2 + - uid: 2524 + components: + - type: Transform + pos: 71.5,1.5 + parent: 2 + - uid: 2525 + components: + - type: Transform + pos: 71.5,0.5 + parent: 2 + - uid: 2526 + components: + - type: Transform + pos: 71.5,-0.5 + parent: 2 + - uid: 2527 + components: + - type: Transform + pos: 71.5,-1.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + pos: 79.5,-5.5 + parent: 2 + - uid: 2529 + components: + - type: Transform + pos: 79.5,-6.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + pos: 79.5,-7.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: 78.5,-7.5 + parent: 2 + - uid: 2532 + components: + - type: Transform + pos: 77.5,-7.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: 76.5,-7.5 + parent: 2 + - uid: 2534 + components: + - type: Transform + pos: 75.5,-7.5 + parent: 2 + - uid: 2535 + components: + - type: Transform + pos: 74.5,-7.5 + parent: 2 + - uid: 2536 + components: + - type: Transform + pos: 73.5,-7.5 + parent: 2 + - uid: 2537 + components: + - type: Transform + pos: 72.5,-7.5 + parent: 2 + - uid: 2538 + components: + - type: Transform + pos: 71.5,-7.5 + parent: 2 + - uid: 2539 + components: + - type: Transform + pos: 70.5,-7.5 + parent: 2 + - uid: 2540 + components: + - type: Transform + pos: 70.5,-8.5 + parent: 2 + - uid: 2541 + components: + - type: Transform + pos: 70.5,-9.5 + parent: 2 + - uid: 2542 + components: + - type: Transform + pos: 70.5,-10.5 + parent: 2 + - uid: 2543 + components: + - type: Transform + pos: 70.5,-11.5 + parent: 2 + - uid: 2544 + components: + - type: Transform + pos: 71.5,-11.5 + parent: 2 + - uid: 2545 + components: + - type: Transform + pos: 74.5,-30.5 + parent: 2 + - uid: 2546 + components: + - type: Transform + pos: 73.5,-30.5 + parent: 2 + - uid: 2547 + components: + - type: Transform + pos: 72.5,-30.5 + parent: 2 + - uid: 2548 + components: + - type: Transform + pos: 72.5,-31.5 + parent: 2 + - uid: 2549 + components: + - type: Transform + pos: 72.5,-32.5 + parent: 2 + - uid: 2550 + components: + - type: Transform + pos: 73.5,-32.5 + parent: 2 + - uid: 2551 + components: + - type: Transform + pos: 74.5,-32.5 + parent: 2 + - uid: 2552 + components: + - type: Transform + pos: 75.5,-32.5 + parent: 2 + - uid: 2553 + components: + - type: Transform + pos: 76.5,-32.5 + parent: 2 + - uid: 2554 + components: + - type: Transform + pos: 76.5,-31.5 + parent: 2 + - uid: 2555 + components: + - type: Transform + pos: 76.5,-30.5 + parent: 2 + - uid: 2556 + components: + - type: Transform + pos: 76.5,-29.5 + parent: 2 + - uid: 2557 + components: + - type: Transform + pos: 76.5,-28.5 + parent: 2 + - uid: 2558 + components: + - type: Transform + pos: 76.5,-27.5 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: 75.5,-27.5 + parent: 2 + - uid: 2560 + components: + - type: Transform + pos: 75.5,-28.5 + parent: 2 + - uid: 2561 + components: + - type: Transform + pos: 76.5,-26.5 + parent: 2 + - uid: 2562 + components: + - type: Transform + pos: 76.5,-25.5 + parent: 2 + - uid: 2563 + components: + - type: Transform + pos: 77.5,-25.5 + parent: 2 + - uid: 2564 + components: + - type: Transform + pos: 78.5,-25.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: 79.5,-25.5 + parent: 2 + - uid: 2566 + components: + - type: Transform + pos: 80.5,-25.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + pos: 81.5,-25.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + pos: 82.5,-25.5 + parent: 2 + - uid: 2569 + components: + - type: Transform + pos: 83.5,-25.5 + parent: 2 + - uid: 2570 + components: + - type: Transform + pos: 84.5,-25.5 + parent: 2 + - uid: 2571 + components: + - type: Transform + pos: 85.5,-25.5 + parent: 2 + - uid: 2572 + components: + - type: Transform + pos: 85.5,-24.5 + parent: 2 + - uid: 2573 + components: + - type: Transform + pos: 86.5,-24.5 + parent: 2 + - uid: 2574 + components: + - type: Transform + pos: 78.5,-24.5 + parent: 2 + - uid: 2575 + components: + - type: Transform + pos: 78.5,-23.5 + parent: 2 + - uid: 2576 + components: + - type: Transform + pos: 78.5,-22.5 + parent: 2 + - uid: 2577 + components: + - type: Transform + pos: 78.5,-21.5 + parent: 2 + - uid: 2578 + components: + - type: Transform + pos: 79.5,-21.5 + parent: 2 + - uid: 2579 + components: + - type: Transform + pos: 80.5,-21.5 + parent: 2 + - uid: 2580 + components: + - type: Transform + pos: 81.5,-21.5 + parent: 2 + - uid: 2581 + components: + - type: Transform + pos: 82.5,-21.5 + parent: 2 + - uid: 2582 + components: + - type: Transform + pos: 83.5,-21.5 + parent: 2 + - uid: 2583 + components: + - type: Transform + pos: 84.5,-21.5 + parent: 2 + - uid: 2584 + components: + - type: Transform + pos: 85.5,-21.5 + parent: 2 + - uid: 2585 + components: + - type: Transform + pos: 86.5,-21.5 + parent: 2 + - uid: 2586 + components: + - type: Transform + pos: 87.5,-21.5 + parent: 2 + - uid: 2587 + components: + - type: Transform + pos: 88.5,-21.5 + parent: 2 + - uid: 2588 + components: + - type: Transform + pos: 88.5,-20.5 + parent: 2 + - uid: 2589 + components: + - type: Transform + pos: 77.5,-31.5 + parent: 2 + - uid: 2590 + components: + - type: Transform + pos: 78.5,-31.5 + parent: 2 + - uid: 2591 + components: + - type: Transform + pos: 79.5,-31.5 + parent: 2 + - uid: 2592 + components: + - type: Transform + pos: 80.5,-31.5 + parent: 2 + - uid: 2593 + components: + - type: Transform + pos: 81.5,-31.5 + parent: 2 + - uid: 2594 + components: + - type: Transform + pos: 82.5,-31.5 + parent: 2 + - uid: 2595 + components: + - type: Transform + pos: 83.5,-31.5 + parent: 2 + - uid: 2596 + components: + - type: Transform + pos: 84.5,-31.5 + parent: 2 + - uid: 2597 + components: + - type: Transform + pos: 85.5,-31.5 + parent: 2 + - uid: 2598 + components: + - type: Transform + pos: 87.5,-30.5 + parent: 2 + - uid: 2599 + components: + - type: Transform + pos: 87.5,-31.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + pos: 91.5,-29.5 + parent: 2 + - uid: 2606 + components: + - type: Transform + pos: 91.5,-28.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + pos: 91.5,-27.5 + parent: 2 + - uid: 2608 + components: + - type: Transform + pos: 91.5,-26.5 + parent: 2 + - uid: 2609 + components: + - type: Transform + pos: 92.5,-26.5 + parent: 2 + - uid: 2610 + components: + - type: Transform + pos: 93.5,-26.5 + parent: 2 + - uid: 2611 + components: + - type: Transform + pos: 94.5,-26.5 + parent: 2 + - uid: 2612 + components: + - type: Transform + pos: 95.5,-26.5 + parent: 2 + - uid: 2613 + components: + - type: Transform + pos: 96.5,-26.5 + parent: 2 + - uid: 3311 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - uid: 3312 + components: + - type: Transform + pos: 35.5,27.5 + parent: 2 + - uid: 3313 + components: + - type: Transform + pos: 29.5,30.5 + parent: 2 + - uid: 3315 + components: + - type: Transform + pos: 27.5,30.5 + parent: 2 + - uid: 3316 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 + - uid: 3954 + components: + - type: Transform + pos: 35.5,29.5 + parent: 2 + - uid: 3955 + components: + - type: Transform + pos: 33.5,27.5 + parent: 2 + - uid: 4299 + components: + - type: Transform + pos: 89.5,47.5 + parent: 2 + - uid: 4389 + components: + - type: Transform + pos: 32.5,28.5 + parent: 2 + - uid: 4390 + components: + - type: Transform + pos: 30.5,28.5 + parent: 2 + - uid: 4507 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 + - uid: 6778 + components: + - type: Transform + pos: 86.5,47.5 + parent: 2 + - uid: 6783 + components: + - type: Transform + pos: 91.5,50.5 + parent: 2 + - uid: 6912 + components: + - type: Transform + pos: 92.5,50.5 + parent: 2 + - uid: 6915 + components: + - type: Transform + pos: 85.5,47.5 + parent: 2 + - uid: 6919 + components: + - type: Transform + pos: 90.5,47.5 + parent: 2 + - uid: 6921 + components: + - type: Transform + pos: 90.5,48.5 + parent: 2 + - uid: 7560 + components: + - type: Transform + pos: 90.5,49.5 + parent: 2 + - uid: 7563 + components: + - type: Transform + pos: 90.5,50.5 + parent: 2 + - uid: 8082 + components: + - type: Transform + pos: 88.5,47.5 + parent: 2 + - uid: 11259 + components: + - type: Transform + pos: 93.5,44.5 + parent: 2 + - uid: 11396 + components: + - type: Transform + pos: 78.5,40.5 + parent: 2 + - uid: 11511 + components: + - type: Transform + pos: 87.5,47.5 + parent: 2 + - uid: 11635 + components: + - type: Transform + pos: 76.5,-33.5 + parent: 2 + - uid: 11636 + components: + - type: Transform + pos: 76.5,-34.5 + parent: 2 + - uid: 11637 + components: + - type: Transform + pos: 77.5,-34.5 + parent: 2 + - uid: 11638 + components: + - type: Transform + pos: 78.5,-34.5 + parent: 2 + - uid: 11639 + components: + - type: Transform + pos: 79.5,-34.5 + parent: 2 + - uid: 11640 + components: + - type: Transform + pos: 79.5,-35.5 + parent: 2 + - uid: 11641 + components: + - type: Transform + pos: 79.5,-36.5 + parent: 2 + - uid: 11642 + components: + - type: Transform + pos: 79.5,-37.5 + parent: 2 + - uid: 11643 + components: + - type: Transform + pos: 79.5,-38.5 + parent: 2 + - uid: 11644 + components: + - type: Transform + pos: 79.5,-39.5 + parent: 2 + - uid: 11645 + components: + - type: Transform + pos: 79.5,-40.5 + parent: 2 + - uid: 11646 + components: + - type: Transform + pos: 79.5,-41.5 + parent: 2 + - uid: 11647 + components: + - type: Transform + pos: 79.5,-42.5 + parent: 2 + - uid: 11648 + components: + - type: Transform + pos: 80.5,-42.5 + parent: 2 + - uid: 11649 + components: + - type: Transform + pos: 81.5,-42.5 + parent: 2 + - uid: 11650 + components: + - type: Transform + pos: 82.5,-42.5 + parent: 2 + - uid: 11651 + components: + - type: Transform + pos: 83.5,-42.5 + parent: 2 + - uid: 11652 + components: + - type: Transform + pos: 83.5,-43.5 + parent: 2 + - uid: 11691 + components: + - type: Transform + pos: 91.5,-5.5 + parent: 2 + - uid: 11692 + components: + - type: Transform + pos: 91.5,-4.5 + parent: 2 + - uid: 11693 + components: + - type: Transform + pos: 92.5,-4.5 + parent: 2 + - uid: 11694 + components: + - type: Transform + pos: 93.5,-4.5 + parent: 2 + - uid: 11695 + components: + - type: Transform + pos: 94.5,-4.5 + parent: 2 + - uid: 11696 + components: + - type: Transform + pos: 94.5,-3.5 + parent: 2 + - uid: 11697 + components: + - type: Transform + pos: 95.5,-3.5 + parent: 2 + - uid: 11744 + components: + - type: Transform + pos: 82.5,16.5 + parent: 2 + - uid: 11745 + components: + - type: Transform + pos: 82.5,17.5 + parent: 2 + - uid: 11746 + components: + - type: Transform + pos: 81.5,17.5 + parent: 2 + - uid: 11747 + components: + - type: Transform + pos: 80.5,17.5 + parent: 2 + - uid: 11748 + components: + - type: Transform + pos: 80.5,18.5 + parent: 2 + - uid: 11749 + components: + - type: Transform + pos: 80.5,19.5 + parent: 2 + - uid: 11750 + components: + - type: Transform + pos: 80.5,20.5 + parent: 2 + - uid: 11751 + components: + - type: Transform + pos: 80.5,21.5 + parent: 2 + - uid: 11752 + components: + - type: Transform + pos: 80.5,22.5 + parent: 2 + - uid: 11753 + components: + - type: Transform + pos: 80.5,23.5 + parent: 2 + - uid: 11754 + components: + - type: Transform + pos: 79.5,23.5 + parent: 2 + - uid: 11755 + components: + - type: Transform + pos: 78.5,23.5 + parent: 2 + - uid: 11756 + components: + - type: Transform + pos: 77.5,23.5 + parent: 2 + - uid: 11757 + components: + - type: Transform + pos: 77.5,22.5 + parent: 2 + - uid: 11758 + components: + - type: Transform + pos: 83.5,17.5 + parent: 2 + - uid: 11759 + components: + - type: Transform + pos: 84.5,17.5 + parent: 2 + - uid: 11760 + components: + - type: Transform + pos: 85.5,17.5 + parent: 2 + - uid: 11761 + components: + - type: Transform + pos: 85.5,16.5 + parent: 2 + - uid: 11762 + components: + - type: Transform + pos: 85.5,15.5 + parent: 2 + - uid: 11763 + components: + - type: Transform + pos: 85.5,14.5 + parent: 2 + - uid: 11764 + components: + - type: Transform + pos: 85.5,13.5 + parent: 2 + - uid: 11765 + components: + - type: Transform + pos: 85.5,12.5 + parent: 2 + - uid: 11766 + components: + - type: Transform + pos: 85.5,11.5 + parent: 2 + - uid: 11767 + components: + - type: Transform + pos: 86.5,11.5 + parent: 2 + - uid: 11768 + components: + - type: Transform + pos: 87.5,11.5 + parent: 2 + - uid: 11841 + components: + - type: Transform + pos: 58.5,32.5 + parent: 2 + - uid: 11842 + components: + - type: Transform + pos: 59.5,32.5 + parent: 2 + - uid: 11843 + components: + - type: Transform + pos: 60.5,32.5 + parent: 2 + - uid: 11844 + components: + - type: Transform + pos: 61.5,32.5 + parent: 2 + - uid: 11845 + components: + - type: Transform + pos: 62.5,32.5 + parent: 2 + - uid: 11846 + components: + - type: Transform + pos: 62.5,33.5 + parent: 2 + - uid: 11874 + components: + - type: Transform + pos: 86.5,17.5 + parent: 2 + - uid: 11875 + components: + - type: Transform + pos: 86.5,18.5 + parent: 2 + - uid: 11876 + components: + - type: Transform + pos: 86.5,19.5 + parent: 2 + - uid: 11877 + components: + - type: Transform + pos: 86.5,20.5 + parent: 2 + - uid: 11878 + components: + - type: Transform + pos: 86.5,21.5 + parent: 2 + - uid: 11879 + components: + - type: Transform + pos: 86.5,22.5 + parent: 2 + - uid: 11880 + components: + - type: Transform + pos: 86.5,23.5 + parent: 2 + - uid: 11881 + components: + - type: Transform + pos: 86.5,24.5 + parent: 2 + - uid: 11882 + components: + - type: Transform + pos: 86.5,25.5 + parent: 2 + - uid: 11883 + components: + - type: Transform + pos: 86.5,26.5 + parent: 2 + - uid: 11884 + components: + - type: Transform + pos: 86.5,27.5 + parent: 2 + - uid: 11885 + components: + - type: Transform + pos: 86.5,28.5 + parent: 2 + - uid: 11886 + components: + - type: Transform + pos: 85.5,28.5 + parent: 2 + - uid: 11925 + components: + - type: Transform + pos: 86.5,29.5 + parent: 2 + - uid: 11926 + components: + - type: Transform + pos: 86.5,30.5 + parent: 2 + - uid: 11927 + components: + - type: Transform + pos: 86.5,31.5 + parent: 2 + - uid: 11928 + components: + - type: Transform + pos: 86.5,32.5 + parent: 2 + - uid: 11929 + components: + - type: Transform + pos: 86.5,33.5 + parent: 2 + - uid: 11930 + components: + - type: Transform + pos: 86.5,34.5 + parent: 2 + - uid: 11931 + components: + - type: Transform + pos: 86.5,35.5 + parent: 2 + - uid: 11932 + components: + - type: Transform + pos: 86.5,36.5 + parent: 2 + - uid: 11933 + components: + - type: Transform + pos: 85.5,36.5 + parent: 2 + - uid: 11934 + components: + - type: Transform + pos: 84.5,36.5 + parent: 2 + - uid: 11935 + components: + - type: Transform + pos: 84.5,37.5 + parent: 2 + - uid: 11936 + components: + - type: Transform + pos: 84.5,38.5 + parent: 2 + - uid: 11937 + components: + - type: Transform + pos: 84.5,39.5 + parent: 2 + - uid: 11938 + components: + - type: Transform + pos: 83.5,39.5 + parent: 2 + - uid: 11939 + components: + - type: Transform + pos: 82.5,39.5 + parent: 2 + - uid: 11940 + components: + - type: Transform + pos: 82.5,38.5 + parent: 2 + - uid: 12028 + components: + - type: Transform + pos: 82.5,40.5 + parent: 2 + - uid: 12029 + components: + - type: Transform + pos: 81.5,40.5 + parent: 2 + - uid: 12030 + components: + - type: Transform + pos: 80.5,40.5 + parent: 2 + - uid: 12031 + components: + - type: Transform + pos: 79.5,40.5 + parent: 2 + - uid: 12032 + components: + - type: Transform + pos: 79.5,41.5 + parent: 2 + - uid: 12033 + components: + - type: Transform + pos: 79.5,42.5 + parent: 2 + - uid: 12034 + components: + - type: Transform + pos: 79.5,43.5 + parent: 2 + - uid: 12035 + components: + - type: Transform + pos: 78.5,43.5 + parent: 2 + - uid: 12036 + components: + - type: Transform + pos: 77.5,43.5 + parent: 2 + - uid: 12037 + components: + - type: Transform + pos: 76.5,43.5 + parent: 2 + - uid: 12038 + components: + - type: Transform + pos: 75.5,43.5 + parent: 2 + - uid: 12039 + components: + - type: Transform + pos: 74.5,43.5 + parent: 2 + - uid: 12040 + components: + - type: Transform + pos: 73.5,43.5 + parent: 2 + - uid: 12041 + components: + - type: Transform + pos: 72.5,43.5 + parent: 2 + - uid: 12042 + components: + - type: Transform + pos: 71.5,43.5 + parent: 2 + - uid: 12043 + components: + - type: Transform + pos: 70.5,43.5 + parent: 2 + - uid: 12044 + components: + - type: Transform + pos: 69.5,43.5 + parent: 2 + - uid: 12045 + components: + - type: Transform + pos: 68.5,43.5 + parent: 2 + - uid: 12046 + components: + - type: Transform + pos: 68.5,44.5 + parent: 2 + - uid: 12047 + components: + - type: Transform + pos: 67.5,44.5 + parent: 2 + - uid: 12289 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 + - uid: 12290 + components: + - type: Transform + pos: -34.5,10.5 + parent: 2 + - uid: 12381 + components: + - type: Transform + pos: 93.5,50.5 + parent: 2 + - uid: 12382 + components: + - type: Transform + pos: 90.5,45.5 + parent: 2 + - uid: 12383 + components: + - type: Transform + pos: 90.5,46.5 + parent: 2 + - uid: 12473 + components: + - type: Transform + pos: 41.5,15.5 + parent: 2 + - uid: 12474 + components: + - type: Transform + pos: 42.5,15.5 + parent: 2 + - uid: 12475 + components: + - type: Transform + pos: 43.5,15.5 + parent: 2 + - uid: 12488 + components: + - type: Transform + pos: 90.5,44.5 + parent: 2 + - uid: 12513 + components: + - type: Transform + pos: 91.5,44.5 + parent: 2 + - uid: 12544 + components: + - type: Transform + pos: 92.5,44.5 + parent: 2 + - uid: 12786 + components: + - type: Transform + pos: 78.5,42.5 + parent: 2 + - uid: 12787 + components: + - type: Transform + pos: 78.5,44.5 + parent: 2 + - uid: 12788 + components: + - type: Transform + pos: 78.5,45.5 + parent: 2 + - uid: 12851 + components: + - type: Transform + pos: 71.5,-30.5 + parent: 2 + - uid: 12883 + components: + - type: Transform + pos: 48.5,17.5 + parent: 2 + - uid: 13762 + components: + - type: Transform + pos: 78.5,-41.5 + parent: 2 + - uid: 13763 + components: + - type: Transform + pos: 77.5,-41.5 + parent: 2 + - uid: 13764 + components: + - type: Transform + pos: 76.5,-41.5 + parent: 2 + - uid: 13769 + components: + - type: Transform + pos: 76.5,-40.5 + parent: 2 + - uid: 13773 + components: + - type: Transform + pos: 75.5,-40.5 + parent: 2 + - uid: 13774 + components: + - type: Transform + pos: 74.5,-40.5 + parent: 2 + - uid: 13775 + components: + - type: Transform + pos: 73.5,-40.5 + parent: 2 + - uid: 13776 + components: + - type: Transform + pos: 73.5,-41.5 + parent: 2 + - uid: 13777 + components: + - type: Transform + pos: 72.5,-41.5 + parent: 2 + - uid: 13778 + components: + - type: Transform + pos: 71.5,-41.5 + parent: 2 + - uid: 13779 + components: + - type: Transform + pos: 70.5,-41.5 + parent: 2 + - uid: 13780 + components: + - type: Transform + pos: 70.5,-40.5 + parent: 2 + - uid: 13909 + components: + - type: Transform + pos: 52.5,-29.5 + parent: 2 + - uid: 14168 + components: + - type: Transform + pos: 70.5,-39.5 + parent: 2 + - uid: 14204 + components: + - type: Transform + pos: 87.5,-32.5 + parent: 2 + - uid: 14205 + components: + - type: Transform + pos: 87.5,-33.5 + parent: 2 + - uid: 14206 + components: + - type: Transform + pos: 87.5,-34.5 + parent: 2 + - uid: 14207 + components: + - type: Transform + pos: 87.5,-35.5 + parent: 2 + - uid: 14208 + components: + - type: Transform + pos: 87.5,-36.5 + parent: 2 + - uid: 14209 + components: + - type: Transform + pos: 87.5,-37.5 + parent: 2 + - uid: 14210 + components: + - type: Transform + pos: 87.5,-38.5 + parent: 2 + - uid: 14211 + components: + - type: Transform + pos: 87.5,-39.5 + parent: 2 + - uid: 14212 + components: + - type: Transform + pos: 87.5,-40.5 + parent: 2 + - uid: 14213 + components: + - type: Transform + pos: 87.5,-41.5 + parent: 2 + - uid: 14214 + components: + - type: Transform + pos: 87.5,-42.5 + parent: 2 + - uid: 14215 + components: + - type: Transform + pos: 88.5,-42.5 + parent: 2 + - uid: 14216 + components: + - type: Transform + pos: 88.5,-43.5 + parent: 2 + - uid: 14217 + components: + - type: Transform + pos: 88.5,-44.5 + parent: 2 + - uid: 14218 + components: + - type: Transform + pos: 88.5,-45.5 + parent: 2 + - uid: 14219 + components: + - type: Transform + pos: 89.5,-45.5 + parent: 2 + - uid: 14220 + components: + - type: Transform + pos: 90.5,-45.5 + parent: 2 + - uid: 14221 + components: + - type: Transform + pos: 91.5,-45.5 + parent: 2 + - uid: 14222 + components: + - type: Transform + pos: 92.5,-45.5 + parent: 2 + - uid: 14223 + components: + - type: Transform + pos: 93.5,-45.5 + parent: 2 + - uid: 14224 + components: + - type: Transform + pos: 94.5,-45.5 + parent: 2 + - uid: 14225 + components: + - type: Transform + pos: 95.5,-45.5 + parent: 2 + - uid: 14226 + components: + - type: Transform + pos: 96.5,-45.5 + parent: 2 + - uid: 14227 + components: + - type: Transform + pos: 97.5,-45.5 + parent: 2 + - uid: 14228 + components: + - type: Transform + pos: 98.5,-45.5 + parent: 2 + - uid: 14229 + components: + - type: Transform + pos: 98.5,-46.5 + parent: 2 + - uid: 14230 + components: + - type: Transform + pos: 100.5,-46.5 + parent: 2 + - uid: 14231 + components: + - type: Transform + pos: 102.5,-46.5 + parent: 2 + - uid: 14233 + components: + - type: Transform + pos: 103.5,-45.5 + parent: 2 + - uid: 14234 + components: + - type: Transform + pos: 104.5,-45.5 + parent: 2 + - uid: 14239 + components: + - type: Transform + pos: 103.5,-46.5 + parent: 2 + - uid: 14240 + components: + - type: Transform + pos: 101.5,-46.5 + parent: 2 + - uid: 14241 + components: + - type: Transform + pos: 99.5,-46.5 + parent: 2 + - uid: 14463 + components: + - type: Transform + pos: 85.5,-29.5 + parent: 2 + - uid: 14480 + components: + - type: Transform + pos: 86.5,-29.5 + parent: 2 + - uid: 14481 + components: + - type: Transform + pos: 87.5,-29.5 + parent: 2 + - uid: 14482 + components: + - type: Transform + pos: 88.5,-29.5 + parent: 2 + - uid: 14483 + components: + - type: Transform + pos: 89.5,-29.5 + parent: 2 + - uid: 14484 + components: + - type: Transform + pos: 90.5,-29.5 + parent: 2 + - uid: 14562 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 14613 + components: + - type: Transform + pos: 48.5,22.5 + parent: 2 + - uid: 14621 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 14628 + components: + - type: Transform + pos: 47.5,17.5 + parent: 2 + - uid: 14629 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 14630 + components: + - type: Transform + pos: 47.5,19.5 + parent: 2 + - uid: 14631 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 14635 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 14636 + components: + - type: Transform + pos: 47.5,28.5 + parent: 2 + - uid: 14637 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - uid: 14645 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - uid: 14646 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 14650 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - uid: 14651 + components: + - type: Transform + pos: 43.5,29.5 + parent: 2 + - uid: 14652 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - uid: 14653 + components: + - type: Transform + pos: 36.5,29.5 + parent: 2 + - uid: 14654 + components: + - type: Transform + pos: 40.5,29.5 + parent: 2 + - uid: 14655 + components: + - type: Transform + pos: 41.5,29.5 + parent: 2 + - uid: 14656 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 14659 + components: + - type: Transform + pos: 42.5,29.5 + parent: 2 + - uid: 14661 + components: + - type: Transform + pos: 25.5,28.5 + parent: 2 + - uid: 14662 + components: + - type: Transform + pos: 25.5,27.5 + parent: 2 + - uid: 14663 + components: + - type: Transform + pos: 25.5,26.5 + parent: 2 + - uid: 14664 + components: + - type: Transform + pos: 24.5,26.5 + parent: 2 + - uid: 14665 + components: + - type: Transform + pos: 23.5,26.5 + parent: 2 + - uid: 14666 + components: + - type: Transform + pos: 23.5,27.5 + parent: 2 + - uid: 14667 + components: + - type: Transform + pos: 22.5,27.5 + parent: 2 + - uid: 14668 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 14678 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 14679 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 + - uid: 14698 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - uid: 14738 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 14789 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 14790 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 14905 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 14906 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 + - uid: 14907 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 + - uid: 14908 + components: + - type: Transform + pos: 15.5,23.5 + parent: 2 + - uid: 14909 + components: + - type: Transform + pos: 16.5,23.5 + parent: 2 + - uid: 14910 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 14911 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - uid: 14912 + components: + - type: Transform + pos: 19.5,23.5 + parent: 2 + - uid: 14913 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 + - uid: 14914 + components: + - type: Transform + pos: 19.5,25.5 + parent: 2 + - uid: 14915 + components: + - type: Transform + pos: 19.5,26.5 + parent: 2 + - uid: 14916 + components: + - type: Transform + pos: 20.5,26.5 + parent: 2 + - uid: 14917 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 14937 + components: + - type: Transform + pos: 18.5,26.5 + parent: 2 + - uid: 14938 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 14941 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 + - uid: 14942 + components: + - type: Transform + pos: 17.5,28.5 + parent: 2 + - uid: 14943 + components: + - type: Transform + pos: 18.5,28.5 + parent: 2 + - uid: 14944 + components: + - type: Transform + pos: 19.5,28.5 + parent: 2 + - uid: 14945 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - uid: 14946 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 15006 + components: + - type: Transform + pos: 30.5,30.5 + parent: 2 + - uid: 15007 + components: + - type: Transform + pos: 31.5,28.5 + parent: 2 + - uid: 15008 + components: + - type: Transform + pos: 35.5,28.5 + parent: 2 + - uid: 15009 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 15010 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 + - uid: 15012 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 + - uid: 15023 + components: + - type: Transform + pos: 26.5,30.5 + parent: 2 + - uid: 15024 + components: + - type: Transform + pos: 25.5,29.5 + parent: 2 + - uid: 15384 + components: + - type: Transform + pos: 74.5,-33.5 + parent: 2 +- proto: CableMVStack + entities: + - uid: 2614 + components: + - type: Transform + pos: 88.59613,13.632881 + parent: 2 + - uid: 2615 + components: + - type: Transform + pos: 67.55684,-20.212416 + parent: 2 +- proto: CableTerminal + entities: + - uid: 2616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,-5.5 + parent: 2 + - uid: 2617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,49.5 + parent: 2 + - uid: 2618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,20.5 + parent: 2 + - uid: 2619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,19.5 + parent: 2 + - uid: 2620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,18.5 + parent: 2 +- proto: CandleBlueSmallInfinite + entities: + - uid: 13354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.723305,-23.359945 + parent: 2 +- proto: CandleInfinite + entities: + - uid: 2621 + components: + - type: Transform + pos: 29.63897,10.566626 + parent: 2 + - uid: 13226 + components: + - type: Transform + pos: 37.49903,9.866318 + parent: 2 + - uid: 13314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.144005,-27.40682 + parent: 2 + - uid: 13315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.95711,-20.40682 + parent: 2 + - uid: 13323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.878925,-23.516195 + parent: 2 + - uid: 13325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.565449,-23.484945 + parent: 2 + - uid: 13350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.2825,-23.18807 + parent: 2 + - uid: 13351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.704689,-22.18807 + parent: 2 + - uid: 13352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.313773,-24.484945 + parent: 2 + - uid: 13356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.160385,-24.15682 + parent: 2 + - uid: 13367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.144005,-24.81307 + parent: 2 +- proto: CandleRedInfinite + entities: + - uid: 2622 + components: + - type: Transform + pos: 8.269322,-18.465374 + parent: 2 + - uid: 2623 + components: + - type: Transform + pos: 74.60538,-14.768348 + parent: 2 + - uid: 2624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.93869,-36.922108 + parent: 2 + - uid: 2625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.472115,-36.543262 + parent: 2 + - uid: 2626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.02376,-36.95466 + parent: 2 + - uid: 2627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.04546,-37.953854 + parent: 2 + - uid: 2628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.93869,-37.943 + parent: 2 + - uid: 2629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.49034,-36.52156 + parent: 2 + - uid: 2630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.49034,-38.52894 + parent: 2 + - uid: 2631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.50466,-38.496387 + parent: 2 +- proto: CandleRedSmallInfinite + entities: + - uid: 2632 + components: + - type: Transform + pos: 8.222447,-18.559124 + parent: 2 + - uid: 2633 + components: + - type: Transform + pos: 8.378697,-18.371624 + parent: 2 + - uid: 2634 + components: + - type: Transform + pos: 83.57134,-49.828487 + parent: 2 + - uid: 2635 + components: + - type: Transform + pos: 74.71788,-14.843348 + parent: 2 +- proto: CandleSmall + entities: + - uid: 2636 + components: + - type: Transform + pos: -28.562935,2.7577279 + parent: 2 + - uid: 2637 + components: + - type: Transform + pos: -28.281685,2.7202277 + parent: 2 + - uid: 2638 + components: + - type: Transform + pos: -28.825434,2.7764778 + parent: 2 +- proto: CandyBucket + entities: + - uid: 14476 + components: + - type: Transform + pos: 91.013115,-47.25338 + parent: 2 +- proto: CannabisSeeds + entities: + - uid: 2639 + components: + - type: Transform + pos: -42.326252,8.414097 + parent: 2 +- proto: CarbonDioxideCanister + entities: + - uid: 2640 + components: + - type: Transform + pos: 84.5,30.5 + parent: 2 + - uid: 2641 + components: + - type: Transform + pos: 84.5,29.5 + parent: 2 + - uid: 14724 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - uid: 14725 + components: + - type: Transform + pos: 40.5,24.5 + parent: 2 +- proto: CargoShuttleConsoleCircuitboard + entities: + - uid: 2642 + components: + - type: Transform + pos: 95.53345,33.53082 + parent: 2 +- proto: Carpet + entities: + - uid: 2643 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - uid: 2644 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 2645 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 2646 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 2647 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 2648 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 2649 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 2650 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 2651 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 2652 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 2653 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 2654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,5.5 + parent: 2 + - uid: 2655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,6.5 + parent: 2 + - uid: 2656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,5.5 + parent: 2 + - uid: 2657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,6.5 + parent: 2 + - uid: 2658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,5.5 + parent: 2 + - uid: 2659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,6.5 + parent: 2 + - uid: 2660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,5.5 + parent: 2 + - uid: 2661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,6.5 + parent: 2 + - uid: 2662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,5.5 + parent: 2 + - uid: 2663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,6.5 + parent: 2 + - uid: 2664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,5.5 + parent: 2 + - uid: 2665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,6.5 + parent: 2 + - uid: 2666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,7.5 + parent: 2 + - uid: 2667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,8.5 + parent: 2 + - uid: 2668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,9.5 + parent: 2 + - uid: 2669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,7.5 + parent: 2 + - uid: 2670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,8.5 + parent: 2 + - uid: 2671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,9.5 + parent: 2 + - uid: 12189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,46.5 + parent: 2 + - uid: 12190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,45.5 + parent: 2 + - uid: 12191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,44.5 + parent: 2 + - uid: 12192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,46.5 + parent: 2 + - uid: 12193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,45.5 + parent: 2 + - uid: 12194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,44.5 + parent: 2 +- proto: CarpetBlack + entities: + - uid: 2672 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 + - uid: 2673 + components: + - type: Transform + pos: -24.5,8.5 + parent: 2 + - uid: 2674 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 + - uid: 2675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,6.5 + parent: 2 + - uid: 2676 + components: + - type: Transform + pos: -24.5,7.5 + parent: 2 + - uid: 2677 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 2678 + components: + - type: Transform + pos: -21.5,8.5 + parent: 2 + - uid: 2679 + components: + - type: Transform + pos: -22.5,8.5 + parent: 2 + - uid: 2680 + components: + - type: Transform + pos: -22.5,7.5 + parent: 2 + - uid: 2681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,5.5 + parent: 2 + - uid: 2682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,4.5 + parent: 2 + - uid: 2683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 2 + - uid: 2684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,5.5 + parent: 2 + - uid: 2685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,4.5 + parent: 2 + - uid: 2686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,7.5 + parent: 2 + - uid: 2687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,7.5 + parent: 2 + - uid: 2688 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 2689 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 2691 + components: + - type: Transform + pos: -1.5,10.5 + parent: 2 + - uid: 2692 + components: + - type: Transform + pos: -1.5,9.5 + parent: 2 + - uid: 2693 + components: + - type: Transform + pos: -1.5,8.5 + parent: 2 + - uid: 2694 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 + - uid: 2695 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 2696 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 2697 + components: + - type: Transform + pos: 28.5,4.5 + parent: 2 + - uid: 2698 + components: + - type: Transform + pos: 28.5,5.5 + parent: 2 + - uid: 2699 + components: + - type: Transform + pos: 28.5,6.5 + parent: 2 + - uid: 2700 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - uid: 2701 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 2702 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 + - uid: 2703 + components: + - type: Transform + pos: 29.5,4.5 + parent: 2 + - uid: 2704 + components: + - type: Transform + pos: 29.5,5.5 + parent: 2 + - uid: 2705 + components: + - type: Transform + pos: 29.5,6.5 + parent: 2 + - uid: 2706 + components: + - type: Transform + pos: 29.5,7.5 + parent: 2 + - uid: 2707 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 2708 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - uid: 15057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,23.5 + parent: 2 + - uid: 15058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,24.5 + parent: 2 + - uid: 15059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,24.5 + parent: 2 + - uid: 15060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,23.5 + parent: 2 + - uid: 15061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,24.5 + parent: 2 + - uid: 15065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,23.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 2709 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - uid: 2710 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 2711 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 2712 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 2713 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - uid: 2714 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 2715 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 2 + - uid: 2716 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 2 + - uid: 2717 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 2 + - uid: 2718 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - uid: 2719 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 2 + - uid: 2720 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 2721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-4.5 + parent: 2 + - uid: 2722 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - uid: 2723 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 2724 + components: + - type: Transform + pos: -3.5,6.5 + parent: 2 + - uid: 2725 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - uid: 13108 + components: + - type: Transform + pos: -55.5,5.5 + parent: 2 + - uid: 13109 + components: + - type: Transform + pos: -55.5,6.5 + parent: 2 + - uid: 13110 + components: + - type: Transform + pos: -55.5,7.5 + parent: 2 + - uid: 13111 + components: + - type: Transform + pos: -56.5,5.5 + parent: 2 + - uid: 13112 + components: + - type: Transform + pos: -56.5,6.5 + parent: 2 + - uid: 13113 + components: + - type: Transform + pos: -56.5,7.5 + parent: 2 + - uid: 13114 + components: + - type: Transform + pos: -57.5,5.5 + parent: 2 + - uid: 13115 + components: + - type: Transform + pos: -57.5,6.5 + parent: 2 + - uid: 13116 + components: + - type: Transform + pos: -57.5,7.5 + parent: 2 +- proto: CarpetChapel + entities: + - uid: 2726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,10.5 + parent: 2 + - uid: 2727 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 + - uid: 2728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,10.5 + parent: 2 + - uid: 2729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,11.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,13.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,13.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,13.5 + parent: 2 + - uid: 2733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,13.5 + parent: 2 + - uid: 2734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,11.5 + parent: 2 + - uid: 2735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,11.5 + parent: 2 + - uid: 2736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,11.5 + parent: 2 + - uid: 2737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,11.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,13.5 + parent: 2 + - uid: 2739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,13.5 + parent: 2 + - uid: 2740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,11.5 + parent: 2 + - uid: 2741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,11.5 + parent: 2 + - uid: 2742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,13.5 + parent: 2 + - uid: 2743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,13.5 + parent: 2 + - uid: 2744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,11.5 + parent: 2 + - uid: 2745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,10.5 + parent: 2 + - uid: 2746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,10.5 + parent: 2 + - uid: 2747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,12.5 + parent: 2 + - uid: 2748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,12.5 + parent: 2 + - uid: 2749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,12.5 + parent: 2 + - uid: 2750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,12.5 + parent: 2 + - uid: 2751 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 2752 + components: + - type: Transform + pos: 27.5,12.5 + parent: 2 + - uid: 2753 + components: + - type: Transform + pos: 29.5,12.5 + parent: 2 + - uid: 2754 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 + - uid: 2755 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 + - uid: 2756 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - uid: 2757 + components: + - type: Transform + pos: 27.5,10.5 + parent: 2 +- proto: CarpetCyan + entities: + - uid: 2758 + components: + - type: Transform + pos: 75.5,-3.5 + parent: 2 + - uid: 2759 + components: + - type: Transform + pos: 75.5,-2.5 + parent: 2 + - uid: 2760 + components: + - type: Transform + pos: 76.5,-3.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + pos: 76.5,-2.5 + parent: 2 + - uid: 8016 + components: + - type: Transform + pos: 59.5,-4.5 + parent: 2 + - uid: 12493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,9.5 + parent: 2 + - uid: 12494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,10.5 + parent: 2 + - uid: 12495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,9.5 + parent: 2 + - uid: 12496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,10.5 + parent: 2 + - uid: 12497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,9.5 + parent: 2 + - uid: 12498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 2 + - uid: 12499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,9.5 + parent: 2 + - uid: 12500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,10.5 + parent: 2 + - uid: 14193 + components: + - type: Transform + pos: 59.5,-3.5 + parent: 2 + - uid: 14194 + components: + - type: Transform + pos: 58.5,-4.5 + parent: 2 + - uid: 14195 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 2 + - uid: 14196 + components: + - type: Transform + pos: 57.5,-4.5 + parent: 2 + - uid: 14197 + components: + - type: Transform + pos: 57.5,-3.5 + parent: 2 +- proto: CarpetGreen + entities: + - uid: 12324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 2 + - uid: 12325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 2 +- proto: CarpetOrange + entities: + - uid: 2762 + components: + - type: Transform + pos: 85.5,-23.5 + parent: 2 + - uid: 2763 + components: + - type: Transform + pos: 81.5,-27.5 + parent: 2 + - uid: 2764 + components: + - type: Transform + pos: 81.5,-23.5 + parent: 2 + - uid: 2765 + components: + - type: Transform + pos: 85.5,-27.5 + parent: 2 + - uid: 2766 + components: + - type: Transform + pos: 87.5,-26.5 + parent: 2 + - uid: 2767 + components: + - type: Transform + pos: 88.5,-27.5 + parent: 2 + - uid: 2768 + components: + - type: Transform + pos: 89.5,-26.5 + parent: 2 + - uid: 2769 + components: + - type: Transform + pos: 88.5,-25.5 + parent: 2 + - uid: 2770 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 2771 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 12180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,46.5 + parent: 2 + - uid: 12181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,45.5 + parent: 2 + - uid: 12183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,46.5 + parent: 2 + - uid: 12184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,45.5 + parent: 2 + - uid: 12186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,46.5 + parent: 2 + - uid: 12187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,45.5 + parent: 2 +- proto: CarpetPink + entities: + - uid: 2772 + components: + - type: Transform + pos: 64.5,16.5 + parent: 2 + - uid: 2773 + components: + - type: Transform + pos: 64.5,15.5 + parent: 2 + - uid: 2774 + components: + - type: Transform + pos: 65.5,16.5 + parent: 2 + - uid: 2775 + components: + - type: Transform + pos: 65.5,15.5 + parent: 2 + - uid: 2776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,20.5 + parent: 2 + - uid: 2777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,20.5 + parent: 2 + - uid: 2778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,19.5 + parent: 2 + - uid: 2779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,19.5 + parent: 2 + - uid: 14300 + components: + - type: Transform + pos: 99.5,-43.5 + parent: 2 + - uid: 14301 + components: + - type: Transform + pos: 99.5,-44.5 + parent: 2 + - uid: 14302 + components: + - type: Transform + pos: 99.5,-45.5 + parent: 2 + - uid: 14303 + components: + - type: Transform + pos: 98.5,-43.5 + parent: 2 + - uid: 14304 + components: + - type: Transform + pos: 98.5,-44.5 + parent: 2 + - uid: 14305 + components: + - type: Transform + pos: 98.5,-45.5 + parent: 2 +- proto: CarpetPurple + entities: + - uid: 2780 + components: + - type: Transform + pos: 62.5,27.5 + parent: 2 + - uid: 2781 + components: + - type: Transform + pos: 62.5,28.5 + parent: 2 + - uid: 2782 + components: + - type: Transform + pos: 63.5,27.5 + parent: 2 + - uid: 2783 + components: + - type: Transform + pos: 63.5,28.5 + parent: 2 + - uid: 14306 + components: + - type: Transform + pos: 101.5,-44.5 + parent: 2 + - uid: 14307 + components: + - type: Transform + pos: 101.5,-43.5 + parent: 2 + - uid: 14308 + components: + - type: Transform + pos: 102.5,-44.5 + parent: 2 + - uid: 14309 + components: + - type: Transform + pos: 102.5,-43.5 + parent: 2 + - uid: 14310 + components: + - type: Transform + pos: 103.5,-44.5 + parent: 2 + - uid: 14311 + components: + - type: Transform + pos: 103.5,-43.5 + parent: 2 +- proto: CarpetSBlue + entities: + - uid: 2784 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 2 + - uid: 2785 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 2 + - uid: 2786 + components: + - type: Transform + pos: 57.5,-29.5 + parent: 2 + - uid: 2787 + components: + - type: Transform + pos: 57.5,-28.5 + parent: 2 + - uid: 2788 + components: + - type: Transform + pos: 57.5,-27.5 + parent: 2 + - uid: 2789 + components: + - type: Transform + pos: 58.5,-29.5 + parent: 2 + - uid: 2790 + components: + - type: Transform + pos: 58.5,-28.5 + parent: 2 + - uid: 2791 + components: + - type: Transform + pos: 58.5,-27.5 + parent: 2 + - uid: 2792 + components: + - type: Transform + pos: 59.5,-29.5 + parent: 2 + - uid: 2793 + components: + - type: Transform + pos: 59.5,-28.5 + parent: 2 + - uid: 2794 + components: + - type: Transform + pos: 59.5,-27.5 + parent: 2 + - uid: 2795 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 + - uid: 2796 + components: + - type: Transform + pos: 75.5,-11.5 + parent: 2 + - uid: 2797 + components: + - type: Transform + pos: 75.5,-12.5 + parent: 2 + - uid: 2798 + components: + - type: Transform + pos: 76.5,-11.5 + parent: 2 + - uid: 2799 + components: + - type: Transform + pos: 76.5,-12.5 + parent: 2 + - uid: 2800 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 2 + - uid: 2801 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 2 + - uid: 2802 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 2 + - uid: 13102 + components: + - type: Transform + pos: -53.5,6.5 + parent: 2 + - uid: 13103 + components: + - type: Transform + pos: -53.5,7.5 + parent: 2 + - uid: 13104 + components: + - type: Transform + pos: -53.5,8.5 + parent: 2 + - uid: 13105 + components: + - type: Transform + pos: -52.5,6.5 + parent: 2 + - uid: 13106 + components: + - type: Transform + pos: -52.5,7.5 + parent: 2 + - uid: 13107 + components: + - type: Transform + pos: -52.5,8.5 + parent: 2 + - uid: 14200 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 2 + - uid: 14201 + components: + - type: Transform + pos: 39.5,-8.5 + parent: 2 +- proto: CarpetWhite + entities: + - uid: 2803 + components: + - type: Transform + pos: 54.5,-12.5 + parent: 2 + - uid: 2804 + components: + - type: Transform + pos: 55.5,-12.5 + parent: 2 + - uid: 2805 + components: + - type: Transform + pos: 55.5,-11.5 + parent: 2 + - uid: 2806 + components: + - type: Transform + pos: 54.5,-11.5 + parent: 2 + - uid: 14198 + components: + - type: Transform + pos: 56.5,-11.5 + parent: 2 + - uid: 14199 + components: + - type: Transform + pos: 56.5,-12.5 + parent: 2 +- proto: Catwalk + entities: + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-57.5 + parent: 2 + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-58.5 + parent: 2 + - uid: 2813 + components: + - type: Transform + pos: 78.5,-51.5 + parent: 2 + - uid: 2814 + components: + - type: Transform + pos: -47.5,6.5 + parent: 2 + - uid: 2815 + components: + - type: Transform + pos: -42.5,6.5 + parent: 2 + - uid: 2816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,8.5 + parent: 2 + - uid: 2817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,7.5 + parent: 2 + - uid: 2818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,6.5 + parent: 2 + - uid: 2819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,8.5 + parent: 2 + - uid: 2820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,7.5 + parent: 2 + - uid: 2821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,6.5 + parent: 2 + - uid: 2822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,8.5 + parent: 2 + - uid: 2823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,7.5 + parent: 2 + - uid: 2824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,6.5 + parent: 2 + - uid: 2825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,7.5 + parent: 2 + - uid: 2826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,6.5 + parent: 2 + - uid: 2827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,9.5 + parent: 2 + - uid: 2828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,9.5 + parent: 2 + - uid: 2829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,9.5 + parent: 2 + - uid: 2830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,8.5 + parent: 2 + - uid: 2831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,9.5 + parent: 2 + - uid: 2832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,7.5 + parent: 2 + - uid: 2833 + components: + - type: Transform + pos: 100.5,-18.5 + parent: 2 + - uid: 2834 + components: + - type: Transform + pos: 99.5,-18.5 + parent: 2 + - uid: 2835 + components: + - type: Transform + pos: 98.5,-18.5 + parent: 2 + - uid: 2836 + components: + - type: Transform + pos: 96.5,-18.5 + parent: 2 + - uid: 2837 + components: + - type: Transform + pos: 95.5,-18.5 + parent: 2 + - uid: 2838 + components: + - type: Transform + pos: 94.5,-18.5 + parent: 2 + - uid: 2839 + components: + - type: Transform + pos: 92.5,-18.5 + parent: 2 + - uid: 2840 + components: + - type: Transform + pos: 91.5,-18.5 + parent: 2 + - uid: 2841 + components: + - type: Transform + pos: 90.5,-18.5 + parent: 2 + - uid: 2842 + components: + - type: Transform + pos: 79.5,-46.5 + parent: 2 + - uid: 2843 + components: + - type: Transform + pos: 80.5,-46.5 + parent: 2 + - uid: 2844 + components: + - type: Transform + pos: 81.5,-46.5 + parent: 2 + - uid: 2845 + components: + - type: Transform + pos: 79.5,-45.5 + parent: 2 + - uid: 2846 + components: + - type: Transform + pos: 80.5,-45.5 + parent: 2 + - uid: 2847 + components: + - type: Transform + pos: 81.5,-45.5 + parent: 2 + - uid: 2848 + components: + - type: Transform + pos: 83.5,-45.5 + parent: 2 + - uid: 2849 + components: + - type: Transform + pos: 83.5,-46.5 + parent: 2 + - uid: 2850 + components: + - type: Transform + pos: 84.5,-45.5 + parent: 2 + - uid: 2851 + components: + - type: Transform + pos: 84.5,-46.5 + parent: 2 + - uid: 2852 + components: + - type: Transform + pos: 85.5,-45.5 + parent: 2 + - uid: 2853 + components: + - type: Transform + pos: 85.5,-46.5 + parent: 2 + - uid: 2854 + components: + - type: Transform + pos: 78.5,-50.5 + parent: 2 + - uid: 2855 + components: + - type: Transform + pos: 79.5,-49.5 + parent: 2 + - uid: 2856 + components: + - type: Transform + pos: 78.5,-49.5 + parent: 2 + - uid: 2857 + components: + - type: Transform + pos: 79.5,-51.5 + parent: 2 + - uid: 2858 + components: + - type: Transform + pos: 79.5,-50.5 + parent: 2 + - uid: 2859 + components: + - type: Transform + pos: 80.5,-49.5 + parent: 2 + - uid: 2860 + components: + - type: Transform + pos: 80.5,-50.5 + parent: 2 + - uid: 2861 + components: + - type: Transform + pos: 80.5,-51.5 + parent: 2 + - uid: 2862 + components: + - type: Transform + pos: 81.5,-49.5 + parent: 2 + - uid: 2863 + components: + - type: Transform + pos: 81.5,-50.5 + parent: 2 + - uid: 2864 + components: + - type: Transform + pos: 81.5,-51.5 + parent: 2 + - uid: 2865 + components: + - type: Transform + pos: 82.5,-49.5 + parent: 2 + - uid: 2866 + components: + - type: Transform + pos: 82.5,-50.5 + parent: 2 + - uid: 2867 + components: + - type: Transform + pos: 82.5,-51.5 + parent: 2 + - uid: 2868 + components: + - type: Transform + pos: 83.5,-49.5 + parent: 2 + - uid: 2869 + components: + - type: Transform + pos: 83.5,-50.5 + parent: 2 + - uid: 2870 + components: + - type: Transform + pos: 83.5,-51.5 + parent: 2 + - uid: 2871 + components: + - type: Transform + pos: 78.5,-52.5 + parent: 2 + - uid: 2872 + components: + - type: Transform + pos: 78.5,-53.5 + parent: 2 + - uid: 2873 + components: + - type: Transform + pos: 78.5,-54.5 + parent: 2 + - uid: 2874 + components: + - type: Transform + pos: 78.5,-55.5 + parent: 2 + - uid: 2875 + components: + - type: Transform + pos: 79.5,-52.5 + parent: 2 + - uid: 2876 + components: + - type: Transform + pos: 79.5,-53.5 + parent: 2 + - uid: 2877 + components: + - type: Transform + pos: 79.5,-54.5 + parent: 2 + - uid: 2878 + components: + - type: Transform + pos: 79.5,-55.5 + parent: 2 + - uid: 2879 + components: + - type: Transform + pos: 80.5,-52.5 + parent: 2 + - uid: 2880 + components: + - type: Transform + pos: 80.5,-53.5 + parent: 2 + - uid: 2881 + components: + - type: Transform + pos: 80.5,-54.5 + parent: 2 + - uid: 2882 + components: + - type: Transform + pos: 80.5,-55.5 + parent: 2 + - uid: 2883 + components: + - type: Transform + pos: 82.5,-55.5 + parent: 2 + - uid: 2884 + components: + - type: Transform + pos: 81.5,-55.5 + parent: 2 + - uid: 2885 + components: + - type: Transform + pos: 83.5,-55.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: 84.5,-55.5 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: 81.5,-54.5 + parent: 2 + - uid: 2888 + components: + - type: Transform + pos: 82.5,-54.5 + parent: 2 + - uid: 2889 + components: + - type: Transform + pos: 83.5,-54.5 + parent: 2 + - uid: 2890 + components: + - type: Transform + pos: 84.5,-54.5 + parent: 2 + - uid: 2891 + components: + - type: Transform + pos: 82.5,-56.5 + parent: 2 + - uid: 2892 + components: + - type: Transform + pos: 83.5,-56.5 + parent: 2 + - uid: 2893 + components: + - type: Transform + pos: 84.5,-56.5 + parent: 2 + - uid: 2894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,40.5 + parent: 2 + - uid: 2895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,39.5 + parent: 2 + - uid: 2896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,39.5 + parent: 2 + - uid: 2897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,39.5 + parent: 2 + - uid: 2898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,39.5 + parent: 2 + - uid: 2899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,38.5 + parent: 2 + - uid: 2900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,38.5 + parent: 2 + - uid: 2901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,38.5 + parent: 2 + - uid: 2902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,38.5 + parent: 2 + - uid: 2903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,38.5 + parent: 2 + - uid: 2904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,37.5 + parent: 2 + - uid: 2905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,37.5 + parent: 2 + - uid: 2906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,37.5 + parent: 2 + - uid: 2907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,37.5 + parent: 2 + - uid: 2908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,37.5 + parent: 2 + - uid: 2909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,36.5 + parent: 2 + - uid: 2910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,36.5 + parent: 2 + - uid: 2911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,36.5 + parent: 2 + - uid: 2912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,36.5 + parent: 2 + - uid: 2913 + components: + - type: Transform + pos: 76.5,-29.5 + parent: 2 + - uid: 2914 + components: + - type: Transform + pos: 76.5,-30.5 + parent: 2 + - uid: 2915 + components: + - type: Transform + pos: 76.5,-31.5 + parent: 2 + - uid: 2916 + components: + - type: Transform + pos: 76.5,-32.5 + parent: 2 + - uid: 2917 + components: + - type: Transform + pos: 76.5,-33.5 + parent: 2 + - uid: 2918 + components: + - type: Transform + pos: 76.5,-34.5 + parent: 2 + - uid: 2919 + components: + - type: Transform + pos: 77.5,-29.5 + parent: 2 + - uid: 2920 + components: + - type: Transform + pos: 77.5,-30.5 + parent: 2 + - uid: 2921 + components: + - type: Transform + pos: 77.5,-31.5 + parent: 2 + - uid: 2922 + components: + - type: Transform + pos: 77.5,-32.5 + parent: 2 + - uid: 2923 + components: + - type: Transform + pos: 77.5,-33.5 + parent: 2 + - uid: 2924 + components: + - type: Transform + pos: 77.5,-34.5 + parent: 2 + - uid: 2925 + components: + - type: Transform + pos: 78.5,-33.5 + parent: 2 + - uid: 2926 + components: + - type: Transform + pos: 78.5,-34.5 + parent: 2 + - uid: 2927 + components: + - type: Transform + pos: 79.5,-33.5 + parent: 2 + - uid: 2928 + components: + - type: Transform + pos: 79.5,-34.5 + parent: 2 + - uid: 2929 + components: + - type: Transform + pos: 80.5,-33.5 + parent: 2 + - uid: 2930 + components: + - type: Transform + pos: 80.5,-34.5 + parent: 2 + - uid: 2931 + components: + - type: Transform + pos: 79.5,-35.5 + parent: 2 + - uid: 2932 + components: + - type: Transform + pos: 79.5,-36.5 + parent: 2 + - uid: 2933 + components: + - type: Transform + pos: 79.5,-37.5 + parent: 2 + - uid: 2934 + components: + - type: Transform + pos: 79.5,-38.5 + parent: 2 + - uid: 2935 + components: + - type: Transform + pos: 79.5,-39.5 + parent: 2 + - uid: 2936 + components: + - type: Transform + pos: 79.5,-40.5 + parent: 2 + - uid: 2937 + components: + - type: Transform + pos: 79.5,-41.5 + parent: 2 + - uid: 2938 + components: + - type: Transform + pos: 79.5,-42.5 + parent: 2 + - uid: 2939 + components: + - type: Transform + pos: 80.5,-35.5 + parent: 2 + - uid: 2940 + components: + - type: Transform + pos: 80.5,-36.5 + parent: 2 + - uid: 2941 + components: + - type: Transform + pos: 80.5,-37.5 + parent: 2 + - uid: 2942 + components: + - type: Transform + pos: 80.5,-38.5 + parent: 2 + - uid: 2943 + components: + - type: Transform + pos: 80.5,-39.5 + parent: 2 + - uid: 2944 + components: + - type: Transform + pos: 80.5,-40.5 + parent: 2 + - uid: 2945 + components: + - type: Transform + pos: 80.5,-41.5 + parent: 2 + - uid: 2946 + components: + - type: Transform + pos: 80.5,-42.5 + parent: 2 + - uid: 2947 + components: + - type: Transform + pos: 81.5,-42.5 + parent: 2 + - uid: 2948 + components: + - type: Transform + pos: 82.5,-42.5 + parent: 2 + - uid: 2949 + components: + - type: Transform + pos: 83.5,-42.5 + parent: 2 + - uid: 2950 + components: + - type: Transform + pos: 84.5,-42.5 + parent: 2 + - uid: 2951 + components: + - type: Transform + pos: 84.5,-41.5 + parent: 2 + - uid: 2952 + components: + - type: Transform + pos: 83.5,-41.5 + parent: 2 + - uid: 2953 + components: + - type: Transform + pos: 82.5,-41.5 + parent: 2 + - uid: 2954 + components: + - type: Transform + pos: 81.5,-41.5 + parent: 2 + - uid: 2955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,-5.5 + parent: 2 + - uid: 3973 + components: + - type: Transform + pos: 83.5,-15.5 + parent: 2 + - uid: 3974 + components: + - type: Transform + pos: 83.5,-14.5 + parent: 2 + - uid: 10328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-58.5 + parent: 2 + - uid: 10610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-57.5 + parent: 2 + - uid: 11540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-56.5 + parent: 2 + - uid: 12211 + components: + - type: Transform + pos: 84.5,-14.5 + parent: 2 + - uid: 12212 + components: + - type: Transform + pos: 84.5,-15.5 + parent: 2 + - uid: 12213 + components: + - type: Transform + pos: 85.5,-14.5 + parent: 2 + - uid: 12214 + components: + - type: Transform + pos: 85.5,-15.5 + parent: 2 + - uid: 12395 + components: + - type: Transform + pos: 84.5,29.5 + parent: 2 + - uid: 12396 + components: + - type: Transform + pos: 84.5,30.5 + parent: 2 + - uid: 12397 + components: + - type: Transform + pos: 84.5,31.5 + parent: 2 + - uid: 12398 + components: + - type: Transform + pos: 84.5,32.5 + parent: 2 + - uid: 12399 + components: + - type: Transform + pos: 84.5,33.5 + parent: 2 + - uid: 12400 + components: + - type: Transform + pos: 84.5,34.5 + parent: 2 + - uid: 12401 + components: + - type: Transform + pos: 83.5,29.5 + parent: 2 + - uid: 12402 + components: + - type: Transform + pos: 83.5,30.5 + parent: 2 + - uid: 12403 + components: + - type: Transform + pos: 83.5,31.5 + parent: 2 + - uid: 12404 + components: + - type: Transform + pos: 83.5,32.5 + parent: 2 + - uid: 12405 + components: + - type: Transform + pos: 83.5,33.5 + parent: 2 + - uid: 12406 + components: + - type: Transform + pos: 83.5,34.5 + parent: 2 + - uid: 12407 + components: + - type: Transform + pos: 82.5,32.5 + parent: 2 + - uid: 12408 + components: + - type: Transform + pos: 82.5,31.5 + parent: 2 + - uid: 12409 + components: + - type: Transform + pos: 79.5,37.5 + parent: 2 + - uid: 12410 + components: + - type: Transform + pos: 79.5,36.5 + parent: 2 + - uid: 12411 + components: + - type: Transform + pos: 78.5,37.5 + parent: 2 + - uid: 12412 + components: + - type: Transform + pos: 78.5,36.5 + parent: 2 + - uid: 12413 + components: + - type: Transform + pos: 83.5,-4.5 + parent: 2 + - uid: 12414 + components: + - type: Transform + pos: 84.5,-4.5 + parent: 2 + - uid: 12415 + components: + - type: Transform + pos: 85.5,-4.5 + parent: 2 + - uid: 12416 + components: + - type: Transform + pos: 85.5,-5.5 + parent: 2 + - uid: 12417 + components: + - type: Transform + pos: 85.5,-6.5 + parent: 2 + - uid: 12418 + components: + - type: Transform + pos: 86.5,-6.5 + parent: 2 + - uid: 12419 + components: + - type: Transform + pos: 86.5,-7.5 + parent: 2 + - uid: 12420 + components: + - type: Transform + pos: 87.5,-7.5 + parent: 2 + - uid: 12421 + components: + - type: Transform + pos: 87.5,-8.5 + parent: 2 + - uid: 12422 + components: + - type: Transform + pos: 87.5,-9.5 + parent: 2 + - uid: 12423 + components: + - type: Transform + pos: 87.5,-10.5 + parent: 2 + - uid: 12424 + components: + - type: Transform + pos: 87.5,-11.5 + parent: 2 + - uid: 13508 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 2 + - uid: 13509 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 2 + - uid: 13510 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 2 + - uid: 13511 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 2 + - uid: 13512 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 2 + - uid: 13513 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 2 + - uid: 13514 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 2 + - uid: 13515 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 2 + - uid: 13516 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 2 + - uid: 14087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-33.5 + parent: 2 + - uid: 14088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-33.5 + parent: 2 + - uid: 14090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-33.5 + parent: 2 + - uid: 14092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-24.5 + parent: 2 + - uid: 14093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-29.5 + parent: 2 + - uid: 14094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-31.5 + parent: 2 + - uid: 14095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-31.5 + parent: 2 + - uid: 14096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-31.5 + parent: 2 + - uid: 14097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-31.5 + parent: 2 + - uid: 14099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-31.5 + parent: 2 + - uid: 14105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-27.5 + parent: 2 + - uid: 14108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-32.5 + parent: 2 + - uid: 14129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-31.5 + parent: 2 + - uid: 14130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-33.5 + parent: 2 + - uid: 14131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-33.5 + parent: 2 + - uid: 14132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-33.5 + parent: 2 + - uid: 14142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-33.5 + parent: 2 + - uid: 14143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-27.5 + parent: 2 + - uid: 14144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-28.5 + parent: 2 + - uid: 14145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-25.5 + parent: 2 + - uid: 14146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-26.5 + parent: 2 + - uid: 14148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-24.5 + parent: 2 + - uid: 14151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-28.5 + parent: 2 + - uid: 14153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-31.5 + parent: 2 + - uid: 14154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-30.5 + parent: 2 + - uid: 14156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-31.5 + parent: 2 + - uid: 14157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-27.5 + parent: 2 + - uid: 14159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-31.5 + parent: 2 + - uid: 14160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-32.5 + parent: 2 + - uid: 14162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-31.5 + parent: 2 + - uid: 14163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-29.5 + parent: 2 + - uid: 14164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-27.5 + parent: 2 + - uid: 14166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-25.5 + parent: 2 + - uid: 14167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-26.5 + parent: 2 + - uid: 14401 + components: + - type: Transform + pos: 87.5,-42.5 + parent: 2 + - uid: 14433 + components: + - type: Transform + pos: 93.5,-45.5 + parent: 2 + - uid: 14438 + components: + - type: Transform + pos: 93.5,-44.5 + parent: 2 + - uid: 14439 + components: + - type: Transform + pos: 92.5,-45.5 + parent: 2 + - uid: 14440 + components: + - type: Transform + pos: 92.5,-44.5 + parent: 2 + - uid: 14441 + components: + - type: Transform + pos: 91.5,-45.5 + parent: 2 + - uid: 14442 + components: + - type: Transform + pos: 91.5,-44.5 + parent: 2 + - uid: 14443 + components: + - type: Transform + pos: 90.5,-45.5 + parent: 2 + - uid: 14444 + components: + - type: Transform + pos: 90.5,-44.5 + parent: 2 + - uid: 14445 + components: + - type: Transform + pos: 89.5,-45.5 + parent: 2 + - uid: 14446 + components: + - type: Transform + pos: 89.5,-44.5 + parent: 2 + - uid: 14447 + components: + - type: Transform + pos: 88.5,-45.5 + parent: 2 + - uid: 14448 + components: + - type: Transform + pos: 88.5,-44.5 + parent: 2 + - uid: 14449 + components: + - type: Transform + pos: 88.5,-43.5 + parent: 2 + - uid: 14450 + components: + - type: Transform + pos: 88.5,-42.5 + parent: 2 + - uid: 14451 + components: + - type: Transform + pos: 87.5,-41.5 + parent: 2 + - uid: 14452 + components: + - type: Transform + pos: 87.5,-40.5 + parent: 2 + - uid: 14453 + components: + - type: Transform + pos: 87.5,-39.5 + parent: 2 + - uid: 14454 + components: + - type: Transform + pos: 87.5,-38.5 + parent: 2 + - uid: 14455 + components: + - type: Transform + pos: 87.5,-37.5 + parent: 2 + - uid: 14456 + components: + - type: Transform + pos: 87.5,-36.5 + parent: 2 + - uid: 14457 + components: + - type: Transform + pos: 87.5,-35.5 + parent: 2 + - uid: 14458 + components: + - type: Transform + pos: 87.5,-34.5 + parent: 2 + - uid: 14459 + components: + - type: Transform + pos: 87.5,-33.5 + parent: 2 + - uid: 14460 + components: + - type: Transform + pos: 87.5,-32.5 + parent: 2 + - uid: 14461 + components: + - type: Transform + pos: 87.5,-31.5 + parent: 2 + - uid: 14464 + components: + - type: Transform + pos: 85.5,-31.5 + parent: 2 + - uid: 14465 + components: + - type: Transform + pos: 84.5,-31.5 + parent: 2 + - uid: 14466 + components: + - type: Transform + pos: 83.5,-31.5 + parent: 2 + - uid: 14467 + components: + - type: Transform + pos: 82.5,-31.5 + parent: 2 + - uid: 14468 + components: + - type: Transform + pos: 81.5,-31.5 + parent: 2 + - uid: 14469 + components: + - type: Transform + pos: 80.5,-31.5 + parent: 2 + - uid: 14470 + components: + - type: Transform + pos: 79.5,-31.5 + parent: 2 + - uid: 14471 + components: + - type: Transform + pos: 78.5,-31.5 + parent: 2 + - uid: 14577 + components: + - type: Transform + pos: 62.5,32.5 + parent: 2 + - uid: 14592 + components: + - type: Transform + pos: 63.5,32.5 + parent: 2 + - uid: 14634 + components: + - type: Transform + pos: 61.5,32.5 + parent: 2 + - uid: 14639 + components: + - type: Transform + pos: 60.5,32.5 + parent: 2 + - uid: 14739 + components: + - type: Transform + pos: 59.5,32.5 + parent: 2 + - uid: 14740 + components: + - type: Transform + pos: 58.5,32.5 + parent: 2 + - uid: 14741 + components: + - type: Transform + pos: 57.5,32.5 + parent: 2 + - uid: 14742 + components: + - type: Transform + pos: 56.5,32.5 + parent: 2 + - uid: 14743 + components: + - type: Transform + pos: 55.5,32.5 + parent: 2 + - uid: 14744 + components: + - type: Transform + pos: 54.5,32.5 + parent: 2 + - uid: 14745 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 + - uid: 14746 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 14748 + components: + - type: Transform + pos: 57.5,31.5 + parent: 2 + - uid: 14749 + components: + - type: Transform + pos: 57.5,30.5 + parent: 2 + - uid: 14750 + components: + - type: Transform + pos: 52.5,31.5 + parent: 2 + - uid: 14751 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 14752 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 14754 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 14755 + components: + - type: Transform + pos: 50.5,29.5 + parent: 2 + - uid: 14756 + components: + - type: Transform + pos: 49.5,29.5 + parent: 2 + - uid: 14757 + components: + - type: Transform + pos: 48.5,29.5 + parent: 2 + - uid: 14758 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 14759 + components: + - type: Transform + pos: 47.5,28.5 + parent: 2 + - uid: 14760 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - uid: 14761 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 14762 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 14763 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 14764 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 14765 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 14767 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 14768 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - uid: 14769 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 14770 + components: + - type: Transform + pos: 47.5,19.5 + parent: 2 + - uid: 14771 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 14772 + components: + - type: Transform + pos: 47.5,17.5 + parent: 2 + - uid: 14773 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 + - uid: 14774 + components: + - type: Transform + pos: 46.5,16.5 + parent: 2 + - uid: 14775 + components: + - type: Transform + pos: 45.5,16.5 + parent: 2 + - uid: 14776 + components: + - type: Transform + pos: 44.5,16.5 + parent: 2 + - uid: 14777 + components: + - type: Transform + pos: 43.5,16.5 + parent: 2 + - uid: 14778 + components: + - type: Transform + pos: 43.5,15.5 + parent: 2 + - uid: 14779 + components: + - type: Transform + pos: 42.5,15.5 + parent: 2 + - uid: 14780 + components: + - type: Transform + pos: 41.5,15.5 + parent: 2 + - uid: 14781 + components: + - type: Transform + pos: 40.5,15.5 + parent: 2 + - uid: 14782 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - uid: 14783 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 14852 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 14853 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 14854 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - uid: 14855 + components: + - type: Transform + pos: 43.5,29.5 + parent: 2 + - uid: 14856 + components: + - type: Transform + pos: 42.5,29.5 + parent: 2 + - uid: 14857 + components: + - type: Transform + pos: 41.5,29.5 + parent: 2 + - uid: 14858 + components: + - type: Transform + pos: 40.5,29.5 + parent: 2 + - uid: 14919 + components: + - type: Transform + pos: 23.5,29.5 + parent: 2 + - uid: 14920 + components: + - type: Transform + pos: 23.5,30.5 + parent: 2 + - uid: 14921 + components: + - type: Transform + pos: 22.5,30.5 + parent: 2 + - uid: 14923 + components: + - type: Transform + pos: 22.5,29.5 + parent: 2 + - uid: 14998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,22.5 + parent: 2 + - uid: 15119 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - uid: 15120 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 15121 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - uid: 15122 + components: + - type: Transform + pos: 36.5,29.5 + parent: 2 + - uid: 15123 + components: + - type: Transform + pos: 35.5,29.5 + parent: 2 + - uid: 15124 + components: + - type: Transform + pos: 35.5,28.5 + parent: 2 + - uid: 15125 + components: + - type: Transform + pos: 35.5,27.5 + parent: 2 + - uid: 15126 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 + - uid: 15127 + components: + - type: Transform + pos: 33.5,27.5 + parent: 2 + - uid: 15128 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 15129 + components: + - type: Transform + pos: 32.5,28.5 + parent: 2 + - uid: 15130 + components: + - type: Transform + pos: 31.5,28.5 + parent: 2 + - uid: 15131 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - uid: 15132 + components: + - type: Transform + pos: 30.5,30.5 + parent: 2 + - uid: 15133 + components: + - type: Transform + pos: 29.5,30.5 + parent: 2 + - uid: 15134 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 + - uid: 15135 + components: + - type: Transform + pos: 27.5,30.5 + parent: 2 + - uid: 15136 + components: + - type: Transform + pos: 26.5,30.5 + parent: 2 + - uid: 15137 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 + - uid: 15138 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 + - uid: 15139 + components: + - type: Transform + pos: 25.5,28.5 + parent: 2 + - uid: 15140 + components: + - type: Transform + pos: 25.5,27.5 + parent: 2 + - uid: 15141 + components: + - type: Transform + pos: 25.5,26.5 + parent: 2 + - uid: 15142 + components: + - type: Transform + pos: 31.5,29.5 + parent: 2 + - uid: 15446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-56.5 + parent: 2 + - uid: 15447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-58.5 + parent: 2 + - uid: 15448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-57.5 + parent: 2 + - uid: 15449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-56.5 + parent: 2 + - uid: 15450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-59.5 + parent: 2 + - uid: 15451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-59.5 + parent: 2 + - uid: 15452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-59.5 + parent: 2 + - uid: 15506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-57.5 + parent: 2 + - uid: 15507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-57.5 + parent: 2 + - uid: 15508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-58.5 + parent: 2 + - uid: 15509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-57.5 + parent: 2 + - uid: 15510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-58.5 + parent: 2 + - uid: 15511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-58.5 + parent: 2 + - uid: 15512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-58.5 + parent: 2 + - uid: 15513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-57.5 + parent: 2 + - uid: 15514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-56.5 + parent: 2 +- proto: CellRechargerCircuitboard + entities: + - uid: 215 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Chair + entities: + - uid: 2959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,1.5 + parent: 2 + - uid: 2960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,3.5 + parent: 2 + - uid: 2961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,1.5 + parent: 2 + - uid: 2962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,3.5 + parent: 2 + - uid: 2963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,1.5 + parent: 2 + - uid: 2964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,2.5 + parent: 2 + - uid: 2965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,3.5 + parent: 2 + - uid: 2966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,2.5 + parent: 2 + - uid: 2967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,2.5 + parent: 2 + - uid: 2968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,2.5 + parent: 2 + - uid: 2969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,3.5 + parent: 2 + - uid: 2970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,1.5 + parent: 2 + - uid: 2976 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 2977 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 2 + - uid: 2978 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 2 + - uid: 2979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-4.5 + parent: 2 + - uid: 2980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 2 + - uid: 2981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-3.5 + parent: 2 + - uid: 2984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-16.5 + parent: 2 + - uid: 2985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,4.5 + parent: 2 + - uid: 2986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,4.5 + parent: 2 + - uid: 2987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,4.5 + parent: 2 + - uid: 2988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,4.5 + parent: 2 + - uid: 2989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-5.5 + parent: 2 + - uid: 2990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-4.5 + parent: 2 + - uid: 2991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-3.5 + parent: 2 + - uid: 12298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-9.5 + parent: 2 + - uid: 12299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-9.5 + parent: 2 + - uid: 12314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-9.5 + parent: 2 + - uid: 12315 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - uid: 13117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,7.5 + parent: 2 +- proto: ChairFolding + entities: + - uid: 2992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.566605,-20.225159 + parent: 2 + - uid: 2993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.58537,-19.43766 + parent: 2 + - uid: 2994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.02104,-49.814922 + parent: 2 + - uid: 2995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.03667,-50.674297 + parent: 2 + - uid: 2996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.390343,-9.206156 + parent: 2 + - uid: 2997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.343468,-8.456156 + parent: 2 +- proto: ChairGreyscale + entities: + - uid: 2604 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 2956 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 2957 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - uid: 2958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 2 + - uid: 2971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 2 + - uid: 2972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 2 + - uid: 2973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 2 + - uid: 2974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 2 + - uid: 2975 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 2982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 2 + - uid: 13259 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 2998 + components: + - type: Transform + pos: -34.012062,7.6074452 + parent: 2 + - uid: 2999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.557446,9.450343 + parent: 2 + - uid: 3000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.095097,2.7269673 + parent: 2 + - uid: 3001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.553252,-2.490827 + parent: 2 + - uid: 3002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.347002,-2.4158273 + parent: 2 + - uid: 3003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.720789,-5.278646 + parent: 2 + - uid: 3004 + components: + - type: Transform + pos: -10.361414,-2.809896 + parent: 2 + - uid: 3005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.048914,-3.653646 + parent: 2 + - uid: 3006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.53661,-4.370075 + parent: 2 + - uid: 3007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.520985,-4.3857 + parent: 2 + - uid: 3008 + components: + - type: Transform + pos: -8.520849,-2.5054889 + parent: 2 + - uid: 3010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.486322,10.595192 + parent: 2 + - uid: 3011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.63069,5.543852 + parent: 2 + - uid: 3012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.47887,-19.496138 + parent: 2 + - uid: 3013 + components: + - type: Transform + pos: 72.519005,-20.43054 + parent: 2 + - uid: 3014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.48624,-26.50089 + parent: 2 + - uid: 3015 + components: + - type: Transform + pos: 89.455765,-22.43766 + parent: 2 + - uid: 3016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.289585,6.0565834 + parent: 2 + - uid: 3017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.28968,-6.3661222 + parent: 2 + - uid: 12084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.448616,10.478775 + parent: 2 + - uid: 12429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.671135,16.1597 + parent: 2 +- proto: ChairOfficeLight + entities: + - uid: 3018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.320923,-15.422701 + parent: 2 + - uid: 3019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.31185,-2.7464423 + parent: 2 + - uid: 3020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.743675,-2.8516788 + parent: 2 + - uid: 3021 + components: + - type: Transform + pos: 54.521843,-3.528751 + parent: 2 + - uid: 3022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.457382,-4.2394323 + parent: 2 + - uid: 3023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.018936,-11.055683 + parent: 2 + - uid: 3024 + components: + - type: Transform + pos: 39.999588,-4.490234 + parent: 2 + - uid: 3025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.33428,-3.2983365 + parent: 2 + - uid: 3026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.527548,2.5626729 + parent: 2 + - uid: 3027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.608477,-2.573938 + parent: 2 + - uid: 3028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.546577,-12.434338 + parent: 2 + - uid: 3029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.64182,6.720643 + parent: 2 + - uid: 3030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.70432,5.173768 + parent: 2 + - uid: 3031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.42307,3.0747237 + parent: 2 + - uid: 3032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.54807,1.0903487 + parent: 2 + - uid: 3033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.54807,-0.9252763 + parent: 2 + - uid: 3034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.627655,-2.8354068 + parent: 2 + - uid: 3035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,45.5 + parent: 2 + - uid: 3036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,45.5 + parent: 2 + - uid: 3037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.830437,5.6190715 + parent: 2 + - uid: 13425 + components: + - type: Transform + pos: -15.31891,-6.51791 + parent: 2 + - uid: 14191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.829674,-3.5894756 + parent: 2 +- proto: ChairPilotSeat + entities: + - uid: 3038 + components: + - type: Transform + pos: -54.5,2.5 + parent: 2 +- proto: ChairWood + entities: + - uid: 3039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.48151,6.6217194 + parent: 2 + - uid: 3040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.48151,7.5592194 + parent: 2 + - uid: 3041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.221325,4.5151114 + parent: 2 + - uid: 3042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.2057,5.3276114 + parent: 2 + - uid: 3043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.783825,4.5619864 + parent: 2 + - uid: 3044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.8307,5.4838614 + parent: 2 + - uid: 3045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5017912,5.5825777 + parent: 2 + - uid: 3046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.4372115,5.6239886 + parent: 2 + - uid: 3047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.6877885,5.6083636 + parent: 2 + - uid: 3048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5784135,5.6239886 + parent: 2 + - uid: 3049 + components: + - type: Transform + pos: 5.5437446,-2.3731947 + parent: 2 + - uid: 3050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.506645,-3.4956856 + parent: 2 + - uid: 3051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.19049,27.515392 + parent: 2 + - uid: 3052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.579914,27.421642 + parent: 2 + - uid: 3053 + components: + - type: Transform + pos: 44.342274,10.304993 + parent: 2 + - uid: 4199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.2331398,-0.37114346 + parent: 2 + - uid: 6699 + components: + - type: Transform + pos: 2.4831398,0.47260654 + parent: 2 + - uid: 12918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.348602,12.05517 + parent: 2 + - uid: 12954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.588245,12.532562 + parent: 2 + - uid: 12955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.57261,12.016937 + parent: 2 + - uid: 13195 + components: + - type: Transform + pos: 1.4831398,0.50385654 + parent: 2 + - uid: 13230 + components: + - type: Transform + pos: -1.4699852,-2.4805183 + parent: 2 + - uid: 13237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5012352,-4.2148933 + parent: 2 + - uid: 13238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.68626475,-0.37114346 + parent: 2 + - uid: 13260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.736406,-0.4093784 + parent: 2 + - uid: 13261 + components: + - type: Transform + pos: 9.502031,0.4499966 + parent: 2 + - uid: 13262 + components: + - type: Transform + pos: 10.517656,0.4499966 + parent: 2 + - uid: 13263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.220781,-0.3468784 + parent: 2 + - uid: 14293 + components: + - type: Transform + pos: 98.5,-43.5 + parent: 2 + - uid: 14294 + components: + - type: Transform + pos: 99.5,-43.5 + parent: 2 + - uid: 14295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.63335,-44.984596 + parent: 2 + - uid: 15035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.54207,23.693987 + parent: 2 +- proto: CheapLighter + entities: + - uid: 13396 + components: + - type: Transform + pos: -14.156409,-7.36166 + parent: 2 + - uid: 13420 + components: + - type: Transform + pos: -14.156409,-7.36166 + parent: 2 + - uid: 13421 + components: + - type: Transform + pos: -14.156409,-7.36166 + parent: 2 + - uid: 13422 + components: + - type: Transform + pos: -14.156409,-7.36166 + parent: 2 + - uid: 13423 + components: + - type: Transform + pos: -14.156409,-7.36166 + parent: 2 + - uid: 13424 + components: + - type: Transform + pos: -14.156409,-7.36166 + parent: 2 +- proto: CheapRollerBedSpawnFolded + entities: + - uid: 3054 + components: + - type: Transform + pos: -22.871439,4.553509 + parent: 2 +- proto: chem_master + entities: + - uid: 3055 + components: + - type: Transform + pos: 45.5,-3.5 + parent: 2 + - uid: 3056 + components: + - type: Transform + pos: 50.5,-3.5 + parent: 2 +- proto: ChemDispenser + entities: + - uid: 3057 + components: + - type: Transform + pos: 45.5,-2.5 + parent: 2 + - uid: 3058 + components: + - type: Transform + pos: 50.5,-2.5 + parent: 2 +- proto: ChemistryEmptyBottle01 + entities: + - uid: 14924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.65072,23.672684 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 3059 + components: + - type: Transform + pos: 47.5,-2.5 + parent: 2 +- proto: ChessBoard + entities: + - uid: 3060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.520985,-4.41695 + parent: 2 +- proto: ChurchBell + entities: + - uid: 3061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,10.5 + parent: 2 +- proto: ChurchOrganInstrument + entities: + - uid: 3062 + components: + - type: Transform + pos: 25.5,11.5 + parent: 2 +- proto: CigarCase + entities: + - uid: 10304 + components: + - type: Transform + parent: 7023 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.375322,9.109615 + parent: 2 +- proto: CigarGold + entities: + - uid: 12486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.4412,2.6947627 + parent: 2 +- proto: CigarGoldCase + entities: + - uid: 12485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.39429,1.9447628 + parent: 2 + - uid: 13613 + components: + - type: Transform + pos: 16.89298,-24.980135 + parent: 2 +- proto: CigCartonBlack + entities: + - uid: 12292 + components: + - type: Transform + parent: 12291 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: CigCartonMixed + entities: + - uid: 12294 + components: + - type: Transform + parent: 12293 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: CigPackBlack + entities: + - uid: 3063 + components: + - type: Transform + pos: -17.770985,-4.47945 + parent: 2 + - uid: 13408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.456409,-7.6054096 + parent: 2 + - uid: 13409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.456409,-7.6054096 + parent: 2 + - uid: 13410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.456409,-7.6054096 + parent: 2 + - uid: 13411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.456409,-7.6054096 + parent: 2 +- proto: CigPackGreen + entities: + - uid: 13415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.137659,-7.6054096 + parent: 2 + - uid: 13416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.137659,-7.6054096 + parent: 2 + - uid: 13417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.137659,-7.6054096 + parent: 2 + - uid: 13418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.137659,-7.6054096 + parent: 2 +- proto: CigPackRed + entities: + - uid: 3064 + components: + - type: Transform + pos: -17.47411,-4.2607 + parent: 2 + - uid: 13407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.812659,-7.62416 + parent: 2 + - uid: 13412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.812659,-7.6054096 + parent: 2 + - uid: 13413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.812659,-7.6054096 + parent: 2 + - uid: 13414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.812659,-7.6054096 + parent: 2 +- proto: CircuitImprinter + entities: + - uid: 3065 + components: + - type: Transform + pos: 59.5,4.5 + parent: 2 +- proto: CleanerDispenser + entities: + - uid: 3066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 2 +- proto: ClockworkGrilleBroken + entities: + - uid: 13549 + components: + - type: Transform + pos: 45.5,-32.5 + parent: 2 + - uid: 13550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-32.5 + parent: 2 + - uid: 13551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-32.5 + parent: 2 + - uid: 13552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-32.5 + parent: 2 +- proto: CloningPod + entities: + - uid: 3067 + components: + - type: Transform + pos: 65.5,-11.5 + parent: 2 +- proto: ClosetChefFilled + entities: + - uid: 12086 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6530 + - 6545 + - 7595 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 3070 + components: + - type: Transform + pos: -69.5,8.5 + parent: 2 + - uid: 3073 + components: + - type: Transform + pos: -69.5,-6.5 + parent: 2 + - uid: 12240 + components: + - type: Transform + pos: 91.5,-11.5 + parent: 2 + - uid: 12257 + components: + - type: Transform + pos: 10.5,12.5 + parent: 2 + - uid: 12291 + components: + - type: Transform + pos: -36.5,11.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12292 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 12453 + components: + - type: Transform + pos: 55.5,33.5 + parent: 2 + - uid: 13447 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - uid: 13480 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 2 + - uid: 13567 + components: + - type: Transform + pos: 44.5,-28.5 + parent: 2 + - uid: 13663 + components: + - type: Transform + pos: 50.5,-22.5 + parent: 2 + - uid: 13974 + components: + - type: Transform + pos: 69.5,-27.5 + parent: 2 + - uid: 14337 + components: + - type: Transform + pos: 94.5,-49.5 + parent: 2 + - uid: 14547 + components: + - type: Transform + pos: 90.5,-31.5 + parent: 2 + - uid: 14687 + components: + - type: Transform + pos: 45.5,18.5 + parent: 2 + - uid: 15111 + components: + - type: Transform + pos: 27.5,28.5 + parent: 2 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 3071 + components: + - type: Transform + pos: -70.5,8.5 + parent: 2 + - uid: 3072 + components: + - type: Transform + pos: -70.5,-6.5 + parent: 2 + - uid: 12245 + components: + - type: Transform + pos: 91.5,-10.5 + parent: 2 + - uid: 12256 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 + - uid: 12293 + components: + - type: Transform + pos: -35.5,11.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12294 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 12454 + components: + - type: Transform + pos: 56.5,33.5 + parent: 2 + - uid: 13452 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 13481 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 2 + - uid: 13568 + components: + - type: Transform + pos: 43.5,-28.5 + parent: 2 + - uid: 13666 + components: + - type: Transform + pos: 51.5,-22.5 + parent: 2 + - uid: 13975 + components: + - type: Transform + pos: 69.5,-26.5 + parent: 2 + - uid: 14336 + components: + - type: Transform + pos: 93.5,-49.5 + parent: 2 + - uid: 14548 + components: + - type: Transform + pos: 91.5,-31.5 + parent: 2 + - uid: 14673 + components: + - type: Transform + pos: 44.5,18.5 + parent: 2 + - uid: 15110 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 +- proto: ClosetFire + entities: + - uid: 13458 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 2388 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - uid: 12246 + components: + - type: Transform + pos: 91.5,-9.5 + parent: 2 + - uid: 12258 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 + - uid: 12266 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - uid: 12457 + components: + - type: Transform + pos: 61.5,33.5 + parent: 2 + - uid: 13482 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 2 + - uid: 13585 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 2 + - uid: 13896 + components: + - type: Transform + pos: 49.5,-30.5 + parent: 2 + - uid: 14155 + components: + - type: Transform + pos: 63.5,-32.5 + parent: 2 + - uid: 14414 + components: + - type: Transform + pos: 90.5,-41.5 + parent: 2 + - uid: 14546 + components: + - type: Transform + pos: 89.5,-31.5 + parent: 2 + - uid: 15112 + components: + - type: Transform + pos: 30.5,31.5 + parent: 2 +- proto: ClosetJanitorFilled + entities: + - uid: 3074 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 +- proto: ClosetL3Filled + entities: + - uid: 3075 + components: + - type: Transform + pos: 54.5,-25.5 + parent: 2 + - uid: 3076 + components: + - type: Transform + pos: 56.5,-25.5 + parent: 2 +- proto: ClosetL3ScienceFilled + entities: + - uid: 12233 + components: + - type: Transform + pos: 67.5,10.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 2026 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - uid: 3077 + components: + - type: Transform + pos: 77.5,-38.5 + parent: 2 + - uid: 3078 + components: + - type: Transform + pos: 85.5,-42.5 + parent: 2 + - uid: 3079 + components: + - type: Transform + pos: 76.5,-42.5 + parent: 2 + - uid: 8507 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 12238 + components: + - type: Transform + pos: 85.5,-7.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12239 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 12250 + components: + - type: Transform + pos: 23.5,12.5 + parent: 2 + - uid: 12255 + components: + - type: Transform + pos: 8.5,12.5 + parent: 2 + - uid: 12265 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 12447 + components: + - type: Transform + pos: 61.5,31.5 + parent: 2 + - uid: 13476 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 2 + - uid: 13571 + components: + - type: Transform + pos: 41.5,-28.5 + parent: 2 + - uid: 13584 + components: + - type: Transform + pos: 33.5,-29.5 + parent: 2 + - uid: 13667 + components: + - type: Transform + pos: 47.5,-19.5 + parent: 2 + - uid: 13897 + components: + - type: Transform + pos: 49.5,-29.5 + parent: 2 + - uid: 13973 + components: + - type: Transform + pos: 69.5,-25.5 + parent: 2 + - uid: 14140 + components: + - type: Transform + pos: 65.5,-32.5 + parent: 2 + - uid: 14338 + components: + - type: Transform + pos: 95.5,-49.5 + parent: 2 + - uid: 14413 + components: + - type: Transform + pos: 90.5,-42.5 + parent: 2 + - uid: 14545 + components: + - type: Transform + pos: 88.5,-31.5 + parent: 2 + - uid: 14593 + components: + - type: Transform + pos: 53.5,33.5 + parent: 2 + - uid: 14690 + components: + - type: Transform + pos: 42.5,17.5 + parent: 2 + - uid: 14766 + components: + - type: Transform + pos: 35.5,25.5 + parent: 2 + - uid: 14870 + components: + - type: Transform + pos: 44.5,27.5 + parent: 2 + - uid: 15108 + components: + - type: Transform + pos: 33.5,29.5 + parent: 2 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 3080 + components: + - type: Transform + pos: 87.5,37.5 + parent: 2 + - uid: 3081 + components: + - type: Transform + pos: 87.5,36.5 + parent: 2 + - uid: 3082 + components: + - type: Transform + pos: 83.5,36.5 + parent: 2 + - uid: 3083 + components: + - type: Transform + pos: 83.5,37.5 + parent: 2 + - uid: 3147 + components: + - type: Transform + pos: 66.5,10.5 + parent: 2 +- proto: ClosetToolFilled + entities: + - uid: 3084 + components: + - type: Transform + pos: 93.5,31.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3087 + - 3086 + - 3085 + - 3091 + - 3088 + - 3089 + - 3090 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetWall + entities: + - uid: 13834 + components: + - type: Transform + pos: 71.5,-39.5 + parent: 2 + - uid: 13835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-44.5 + parent: 2 + - uid: 14563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,24.5 + parent: 2 + - uid: 14573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,24.5 + parent: 2 + - uid: 14574 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 14576 + components: + - type: Transform + pos: 23.5,28.5 + parent: 2 + - uid: 14618 + components: + - type: Transform + pos: 22.5,28.5 + parent: 2 + - uid: 14625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,24.5 + parent: 2 +- proto: ClosetWallBlack + entities: + - uid: 13427 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 3092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-5.5 + parent: 2 + - uid: 12346 + components: + - type: Transform + pos: -1.5,11.5 + parent: 2 + - uid: 12351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 2 + - uid: 12352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 2 + - uid: 12370 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 12373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-9.5 + parent: 2 + - uid: 14982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 2 +- proto: ClothingBackpackDuffelSalvage + entities: + - uid: 3093 + components: + - type: Transform + pos: 83.927216,-47.170692 + parent: 2 + - uid: 3094 + components: + - type: Transform + pos: 83.927216,-47.30194 + parent: 2 +- proto: ClothingBeltChiefEngineerFilled + entities: + - uid: 3096 + components: + - type: Transform + parent: 3095 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltMilitaryWebbing + entities: + - uid: 3097 + components: + - type: Transform + pos: 18.31809,8.724509 + parent: 2 +- proto: ClothingBeltPlantFilled + entities: + - uid: 3098 + components: + - type: Transform + pos: -43.488712,6.415522 + parent: 2 +- proto: ClothingBeltUtility + entities: + - uid: 3099 + components: + - type: Transform + pos: 67.509964,-16.2584 + parent: 2 + - uid: 3100 + components: + - type: Transform + pos: 67.509964,-16.367775 + parent: 2 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 3085 + components: + - type: Transform + parent: 3084 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 3086 + components: + - type: Transform + parent: 3084 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 3087 + components: + - type: Transform + parent: 3084 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 3101 + components: + - type: Transform + pos: 92.53039,27.03766 + parent: 2 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 3102 + components: + - type: Transform + pos: 75.45599,-17.37015 + parent: 2 + - uid: 3103 + components: + - type: Transform + pos: 69.569244,-22.323315 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 3104 + components: + - type: Transform + pos: 56.531364,4.574741 + parent: 2 +- proto: ClothingEyesGlassesMeson + entities: + - uid: 3088 + components: + - type: Transform + parent: 3084 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 3089 + components: + - type: Transform + parent: 3084 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 3090 + components: + - type: Transform + parent: 3084 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 3091 + components: + - type: Transform + parent: 3084 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 3105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.28732,27.847467 + parent: 2 + - uid: 3106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.33423,27.675592 + parent: 2 +- proto: ClothingEyesGlassesSecurity + entities: + - uid: 13384 + components: + - type: Transform + pos: 17.400717,-20.337288 + parent: 2 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 3107 + components: + - type: Transform + pos: 76.4737,-14.398757 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 3108 + components: + - type: Transform + pos: 69.52559,-21.492775 + parent: 2 + - uid: 12239 + components: + - type: Transform + parent: 12238 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12466 + components: + - type: Transform + pos: 74.29856,-29.601448 + parent: 2 +- proto: ClothingHandsGlovesColorYellowBudget + entities: + - uid: 3109 + components: + - type: Transform + pos: 67.478714,-21.43679 + parent: 2 + - uid: 3110 + components: + - type: Transform + pos: 67.49434,-21.233665 + parent: 2 + - uid: 3111 + components: + - type: Transform + pos: 67.49434,-21.327415 + parent: 2 +- proto: ClothingHandsGlovesCombat + entities: + - uid: 3112 + components: + - type: Transform + pos: -48.4909,0.4299348 + parent: 2 + - uid: 15397 + components: + - type: Transform + pos: 74.49387,-44.429016 + parent: 2 +- proto: ClothingHeadHatBeretMerc + entities: + - uid: 3113 + components: + - type: Transform + pos: 18.390776,8.31608 + parent: 2 +- proto: ClothingHeadHatBowlerHat + entities: + - uid: 3114 + components: + - type: Transform + pos: 8.508974,-7.2354565 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ClothingHeadHatCaptain + entities: + - uid: 3115 + components: + - type: Transform + pos: -52.711273,10.830427 + parent: 2 +- proto: ClothingHeadHatChef + entities: + - uid: 13397 + components: + - type: Transform + pos: 16.18004,-22.915413 + parent: 2 +- proto: ClothingHeadHatHardhatArmored + entities: + - uid: 3116 + components: + - type: Transform + pos: 73.64916,-44.226128 + parent: 2 + - uid: 3117 + components: + - type: Transform + pos: 73.43041,-44.007378 + parent: 2 +- proto: ClothingHeadHatHardhatBlue + entities: + - uid: 13729 + components: + - type: Transform + pos: 62.58645,-43.55589 + parent: 2 + - uid: 13730 + components: + - type: Transform + pos: 62.58645,-43.55589 + parent: 2 +- proto: ClothingHeadHatHardhatRed + entities: + - uid: 13727 + components: + - type: Transform + pos: 69.542694,-41.21214 + parent: 2 + - uid: 13728 + components: + - type: Transform + pos: 69.542694,-41.21214 + parent: 2 +- proto: ClothingHeadHatHetmanHat + entities: + - uid: 14836 + components: + - type: Transform + pos: 21.71614,25.527136 + parent: 2 + - uid: 14837 + components: + - type: Transform + pos: 21.71614,25.527136 + parent: 2 + - uid: 14838 + components: + - type: Transform + pos: 21.71614,25.527136 + parent: 2 + - uid: 14839 + components: + - type: Transform + pos: 21.71614,25.527136 + parent: 2 + - uid: 14840 + components: + - type: Transform + pos: 21.71614,25.527136 + parent: 2 + - uid: 14841 + components: + - type: Transform + pos: 21.71614,25.527136 + parent: 2 +- proto: ClothingHeadHatHoodBioJanitor + entities: + - uid: 3118 + components: + - type: Transform + pos: 22.77668,-4.2674875 + parent: 2 + - uid: 3119 + components: + - type: Transform + pos: 22.58918,-4.2674875 + parent: 2 + - uid: 3120 + components: + - type: Transform + pos: 22.40168,-4.2362375 + parent: 2 +- proto: ClothingHeadHatHoodCulthood + entities: + - uid: 3121 + components: + - type: Transform + pos: 85.47922,-35.235664 + parent: 2 +- proto: ClothingHeadHatWeldingMaskFlame + entities: + - uid: 13731 + components: + - type: Transform + pos: 69.2052,-41.04339 + parent: 2 + - uid: 13732 + components: + - type: Transform + pos: 69.2052,-41.04339 + parent: 2 +- proto: ClothingHeadHatWeldingMaskFlameBlue + entities: + - uid: 13733 + components: + - type: Transform + pos: 62.267696,-43.537136 + parent: 2 + - uid: 13734 + components: + - type: Transform + pos: 62.267696,-43.537136 + parent: 2 +- proto: ClothingHeadHelmetERTMedic + entities: + - uid: 3122 + components: + - type: Transform + pos: -23.447702,4.800497 + parent: 2 +- proto: ClothingHeadHelmetEVA + entities: + - uid: 3123 + components: + - type: Transform + pos: -42.215073,10.864062 + parent: 2 +- proto: ClothingHeadHelmetSwat + entities: + - uid: 3124 + components: + - type: Transform + pos: -45.498688,3.7554293 + parent: 2 + - uid: 3125 + components: + - type: Transform + pos: -45.164124,3.7373447 + parent: 2 + - uid: 3126 + components: + - type: Transform + pos: -44.82052,3.7373447 + parent: 2 + - uid: 3127 + components: + - type: Transform + pos: -44.495,3.746387 + parent: 2 + - uid: 3128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.794716,0.7554556 + parent: 2 +- proto: ClothingHeadPrisonGuard + entities: + - uid: 3129 + components: + - type: Transform + pos: -34.91202,6.6280894 + parent: 2 +- proto: ClothingMaskBreathMedical + entities: + - uid: 3130 + components: + - type: Transform + pos: 63.316006,-18.292377 + parent: 2 + - uid: 3131 + components: + - type: Transform + pos: 63.371365,-16.33425 + parent: 2 +- proto: ClothingMaskBreathMedicalSecurity + entities: + - uid: 3132 + components: + - type: Transform + pos: 18.643612,8.789614 + parent: 2 +- proto: ClothingMaskClown + entities: + - uid: 3133 + components: + - type: Transform + pos: -33.968925,6.493385 + parent: 2 +- proto: ClothingMaskGas + entities: + - uid: 3134 + components: + - type: Transform + pos: 67.478714,-18.399916 + parent: 2 +- proto: ClothingMaskGasSwat + entities: + - uid: 3135 + components: + - type: Transform + pos: -48.762165,0.6035459 + parent: 2 +- proto: ClothingMaskItalianMoustache + entities: + - uid: 12259 + components: + - type: Transform + pos: 8.502539,-7.655019 + parent: 2 +- proto: ClothingNeckCloakAce + entities: + - uid: 13389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.757852,-25.212288 + parent: 2 +- proto: ClothingNeckCloakMoth + entities: + - uid: 14432 + components: + - type: Transform + pos: 88.37138,-47.49861 + parent: 2 +- proto: ClothingNeckGoldAutismPin + entities: + - uid: 3136 + components: + - type: Transform + pos: -62.35456,2.8229227 + parent: 2 +- proto: ClothingNeckStethoscope + entities: + - uid: 12483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.562847,-15.128365 + parent: 2 +- proto: ClothingNeckTieChem + entities: + - uid: 13404 + components: + - type: Transform + pos: 16.961872,-22.634163 + parent: 2 +- proto: ClothingOuterArmorBasic + entities: + - uid: 3137 + components: + - type: Transform + pos: -44.856686,3.4479928 + parent: 2 + - uid: 3138 + components: + - type: Transform + pos: -44.467873,3.4389505 + parent: 2 +- proto: ClothingOuterArmorHeavyRed + entities: + - uid: 3139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.33899,0.62524724 + 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]80%[/color]. + + - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]80%[/color]. + + - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]80%[/color]. + + - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]100%[/color]. + + - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]25%[/color]. + priority: 0 + component: Armor + title: null +- proto: ClothingOuterBcCorporateJacket + entities: + - uid: 14083 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterBioJanitor + entities: + - uid: 3140 + components: + - type: Transform + pos: 22.71418,-4.5018625 + parent: 2 + - uid: 3141 + components: + - type: Transform + pos: 22.62043,-4.5018625 + parent: 2 + - uid: 3142 + components: + - type: Transform + pos: 22.448555,-4.5018625 + parent: 2 +- proto: ClothingOuterCoatLeatherJacket + entities: + - uid: 12559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.13581,32.05587 + parent: 2 +- proto: ClothingOuterCoatLettermanRed + entities: + - uid: 14054 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterDdCorporateJacket + entities: + - uid: 14010 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterDenimJacket + entities: + - uid: 14049 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterEeCorporateJacket + entities: + - uid: 14082 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterFaCorporateJacket + entities: + - uid: 14060 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterFlannelBlue + entities: + - uid: 14086 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterFlannelGreen + entities: + - uid: 14057 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterFlannelRed + entities: + - uid: 14030 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterGeCorporateJacket + entities: + - uid: 14031 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 3143 + components: + - type: Transform + pos: -42.34528,10.434375 + parent: 2 +- proto: ClothingOuterHardsuitSalvage + entities: + - uid: 3144 + components: + - type: Transform + pos: 89.45171,-27.43839 + parent: 2 +- proto: ClothingOuterHiCorporateJacket + entities: + - uid: 14011 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHmCorporateJacket + entities: + - uid: 14063 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterIdCorporateJacket + entities: + - uid: 14059 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterRobesCult + entities: + - uid: 3145 + components: + - type: Transform + pos: 85.76568,-35.35285 + parent: 2 +- proto: ClothingOuterVest + entities: + - uid: 14121 + components: + - type: Transform + pos: 62.58378,-43.834568 + parent: 2 + - uid: 14122 + components: + - type: Transform + pos: 69.91503,-41.28457 + parent: 2 + - uid: 14123 + components: + - type: Transform + pos: 69.91503,-41.28457 + parent: 2 + - uid: 14124 + components: + - type: Transform + pos: 62.58378,-43.834568 + parent: 2 +- proto: ClothingOuterVestWeb + entities: + - uid: 3149 + components: + - type: Transform + pos: -45.571026,3.4389505 + parent: 2 + - uid: 3150 + components: + - type: Transform + pos: -45.209335,3.4389505 + parent: 2 +- proto: ClothingOuterWinterChef + entities: + - uid: 12526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.794598,8.278988 + parent: 2 +- proto: ClothingOuterWinterChem + entities: + - uid: 13399 + components: + - type: Transform + pos: 17.071327,-22.493538 + parent: 2 +- proto: ClothingOuterWinterWeb + entities: + - uid: 3151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.67887,-14.380022 + parent: 2 +- proto: ClothingOuterZhCorporateJacket + entities: + - uid: 14052 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingRandomSpawner + entities: + - uid: 7062 + components: + - type: Transform + parent: 7012 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7485 + components: + - type: Transform + parent: 7012 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8361 + components: + - type: Transform + parent: 7013 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8441 + components: + - type: Transform + parent: 7013 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13492 + components: + - type: Transform + pos: 21.370947,-27.428114 + parent: 2 + - uid: 13493 + components: + - type: Transform + pos: 21.699318,-27.443739 + parent: 2 + - uid: 14040 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14041 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14044 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14045 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14046 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14047 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14051 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14053 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14055 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14056 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14058 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14319 + components: + - type: Transform + parent: 14316 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14324 + components: + - type: Transform + parent: 14316 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBling + entities: + - uid: 3152 + components: + - type: Transform + pos: -62.307686,3.4166727 + parent: 2 +- proto: ClothingShoesBootsWinterCap + entities: + - uid: 3153 + components: + - type: Transform + pos: -52.336273,9.877302 + parent: 2 +- proto: ClothingShoesColorBlack + entities: + - uid: 3154 + components: + - type: Transform + pos: 67.416214,-19.181166 + parent: 2 +- proto: ClothingShoesCult + entities: + - uid: 3155 + components: + - type: Transform + pos: 85.33599,-35.535145 + parent: 2 +- proto: ClothingShoesGeta + entities: + - uid: 4200 + components: + - type: Transform + pos: 23.552132,25.408585 + parent: 2 + - uid: 14578 + components: + - type: Transform + pos: 23.00838,25.408585 + parent: 2 + - uid: 14579 + components: + - type: Transform + pos: 23.57088,25.633583 + parent: 2 + - uid: 14580 + components: + - type: Transform + pos: 23.57088,25.821083 + parent: 2 + - uid: 14581 + components: + - type: Transform + pos: 23.027132,25.821083 + parent: 2 + - uid: 14622 + components: + - type: Transform + pos: 22.970882,25.614834 + parent: 2 +- proto: ClothingUniformJumpskirtJanimaidmini + entities: + - uid: 3156 + components: + - type: Transform + pos: 20.507698,-4.5467825 + parent: 2 +- proto: ClothingUniformJumpskirtLawyerRed + entities: + - uid: 3157 + components: + - type: MetaData + desc: От этой юбки пахнет кровью и странной манящей энергией. + name: Кровавая юбка + - type: Transform + pos: 8.546632,-18.623951 + parent: 2 +- proto: ClothingUniformJumpsuitAncient + entities: + - uid: 3158 + components: + - type: Transform + pos: 67.478714,-18.85304 + parent: 2 +- proto: ClothingUniformJumpsuitERTEngineer + entities: + - uid: 13379 + components: + - type: Transform + pos: 16.415607,-20.337288 + parent: 2 + - uid: 13380 + components: + - type: Transform + pos: 16.571976,-20.399788 + parent: 2 +- proto: ClothingUniformJumpsuitERTJanitor + entities: + - uid: 3159 + components: + - type: Transform + pos: 20.769112,-4.3924875 + parent: 2 +- proto: ClothingUniformJumpsuitGalaxyRed + entities: + - uid: 15292 + components: + - type: Transform + pos: 8.474243,-18.638319 + parent: 2 +- proto: ClothingUniformJumpsuitKimono + entities: + - uid: 14584 + components: + - type: Transform + pos: 22.483381,25.614834 + parent: 2 + - uid: 14585 + components: + - type: Transform + pos: 22.483381,25.614834 + parent: 2 + - uid: 14586 + components: + - type: Transform + pos: 22.483381,25.614834 + parent: 2 + - uid: 14589 + components: + - type: Transform + pos: 22.483381,25.614834 + parent: 2 + - uid: 14590 + components: + - type: Transform + pos: 22.483381,25.614834 + parent: 2 + - uid: 14591 + components: + - type: Transform + pos: 22.483381,25.614834 + parent: 2 +- proto: ClothingUniformJumpsuitMusician + entities: + - uid: 13419 + components: + - type: Transform + pos: 17.242947,-24.556038 + parent: 2 +- proto: ClothingUniformRandomArmless + entities: + - uid: 7183 + components: + - type: Transform + parent: 7012 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7486 + components: + - type: Transform + parent: 7012 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8590 + components: + - type: Transform + parent: 7013 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 9865 + components: + - type: Transform + parent: 7013 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14062 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14064 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14065 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14066 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14067 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14068 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14069 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14081 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14085 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14323 + components: + - type: Transform + parent: 14316 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14325 + components: + - type: Transform + parent: 14316 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformRandomBra + entities: + - uid: 7712 + components: + - type: Transform + parent: 7012 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7743 + components: + - type: Transform + parent: 7012 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8588 + components: + - type: Transform + parent: 7013 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8662 + components: + - type: Transform + parent: 7013 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14005 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14017 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14018 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14019 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14020 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14021 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14022 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14023 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14317 + components: + - type: Transform + parent: 14316 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14318 + components: + - type: Transform + parent: 14316 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformRandomShirt + entities: + - uid: 8064 + components: + - type: Transform + parent: 7012 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8211 + components: + - type: Transform + parent: 7012 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8212 + components: + - type: Transform + parent: 7013 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8595 + components: + - type: Transform + parent: 7013 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14070 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14071 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14072 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14073 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14074 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14075 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14076 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14077 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14078 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14079 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformRandomShorts + entities: + - uid: 7063 + components: + - type: Transform + parent: 7012 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7064 + components: + - type: Transform + parent: 7012 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7065 + components: + - type: Transform + parent: 7012 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7496 + components: + - type: Transform + parent: 7012 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8472 + components: + - type: Transform + parent: 7013 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8585 + components: + - type: Transform + parent: 7013 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8587 + components: + - type: Transform + parent: 7013 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8589 + components: + - type: Transform + parent: 7013 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14003 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14004 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14006 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14007 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14008 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14012 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14013 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14014 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14015 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14016 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14024 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14025 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14026 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14027 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14028 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14029 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14032 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14320 + components: + - type: Transform + parent: 14316 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14321 + components: + - type: Transform + parent: 14316 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14322 + components: + - type: Transform + parent: 14316 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformRandomStandard + entities: + - uid: 8052 + components: + - type: Transform + parent: 7012 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8061 + components: + - type: Transform + parent: 7012 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8213 + components: + - type: Transform + parent: 7013 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8319 + components: + - type: Transform + parent: 7013 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14034 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14035 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14036 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14037 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14038 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14039 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14042 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14043 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Cobweb1 + entities: + - uid: 3160 + components: + - type: Transform + pos: 53.5,-22.5 + parent: 2 + - uid: 3161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-23.5 + parent: 2 + - uid: 3162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-4.5 + parent: 2 + - uid: 3163 + components: + - type: Transform + pos: 74.5,-15.5 + parent: 2 + - uid: 3164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-14.5 + parent: 2 + - uid: 3165 + components: + - type: Transform + pos: 73.5,-44.5 + parent: 2 +- proto: Cobweb2 + entities: + - uid: 3166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-4.5 + parent: 2 + - uid: 3167 + components: + - type: Transform + pos: 57.5,-22.5 + parent: 2 + - uid: 3168 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 3169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-4.5 + parent: 2 + - uid: 3170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-14.5 + parent: 2 + - uid: 3171 + components: + - type: Transform + pos: 73.5,-14.5 + parent: 2 +- proto: CombatKnife + entities: + - uid: 13274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.756393,-30.200525 + parent: 2 +- proto: CombatMedipen + entities: + - uid: 3172 + components: + - type: Transform + pos: -24.579874,4.3284187 + parent: 2 +- proto: ComfyChair + entities: + - uid: 3173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,0.5 + parent: 2 + - uid: 3174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-0.5 + parent: 2 + - uid: 3175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-1.5 + parent: 2 + - uid: 3176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-1.5 + parent: 2 + - uid: 3177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-0.5 + parent: 2 + - uid: 3178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,0.5 + parent: 2 + - uid: 3179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-3.5 + parent: 2 + - uid: 3180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,4.5 + parent: 2 + - uid: 3181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,4.5 + parent: 2 + - uid: 3182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,5.5 + parent: 2 + - uid: 3183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-28.5 + parent: 2 + - uid: 3184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-29.5 + parent: 2 + - uid: 3185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-28.5 + parent: 2 + - uid: 3186 + components: + - type: Transform + pos: -1.5,9.5 + parent: 2 + - uid: 3187 + components: + - type: Transform + pos: -36.5,6.5 + parent: 2 + - uid: 3188 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 3189 + components: + - type: Transform + pos: 72.5,47.5 + parent: 2 + - uid: 3190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,4.5 + parent: 2 + - uid: 3191 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 3192 + components: + - type: Transform + pos: 61.5,29.5 + parent: 2 + - uid: 12956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,14.5 + parent: 2 + - uid: 12982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,44.5 + parent: 2 + - uid: 14296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 97.5,-41.5 + parent: 2 +- proto: CommsComputerCircuitboard + entities: + - uid: 3193 + components: + - type: Transform + pos: 95.520676,23.400787 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 3194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,2.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 3195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7284: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + - uid: 3196 + components: + - type: Transform + pos: -71.5,7.5 + parent: 2 +- proto: computerBodyScanner + entities: + - uid: 3197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-20.5 + parent: 2 + - uid: 12479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-19.5 + parent: 2 + - uid: 12480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-15.5 + parent: 2 +- proto: ComputerBroken + entities: + - uid: 13617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-26.5 + parent: 2 + - uid: 13618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-26.5 + parent: 2 +- proto: ComputerCargoBounty + entities: + - uid: 3198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,6.5 + parent: 2 + - uid: 3199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,-23.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 3200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-19.5 + parent: 2 + - uid: 3201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-17.5 + parent: 2 + - uid: 3202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,-4.5 + parent: 2 +- proto: ComputerCargoShuttle + entities: + - uid: 3203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,-23.5 + parent: 2 +- proto: ComputerCloningConsole + entities: + - uid: 3204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-10.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 3205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,0.5 + parent: 2 +- proto: ComputerCrewMonitoring + entities: + - uid: 3206 + components: + - type: Transform + pos: 64.5,-27.5 + parent: 2 + - uid: 3207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-4.5 + parent: 2 + - uid: 3208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-5.5 + parent: 2 + - uid: 3209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,2.5 + parent: 2 + - uid: 3210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,5.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 3211 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - uid: 3212 + components: + - type: Transform + pos: -40.5,3.5 + parent: 2 + - uid: 3213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 2 + - uid: 3214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,3.5 + parent: 2 +- proto: ComputerId + entities: + - uid: 3215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 2 + - uid: 3216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,1.5 + parent: 2 +- proto: ComputerMassMedia + entities: + - uid: 3217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 3218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-5.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: 63.5,-27.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,4.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 3221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,19.5 + parent: 2 + - uid: 3222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-3.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 3223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-51.5 + parent: 2 + - uid: 13621 + components: + - type: Transform + pos: 41.5,-21.5 + parent: 2 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 3224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,4.5 + parent: 2 + - uid: 3225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,16.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: -72.5,7.5 + parent: 2 +- proto: ComputerSalvageExpedition + entities: + - uid: 3227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-50.5 + parent: 2 +- proto: ComputerShuttle + entities: + - uid: 3228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-0.5 + parent: 2 +- proto: ComputerShuttleCargo + entities: + - uid: 3229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,-23.5 + parent: 2 +- proto: ComputerShuttleSalvage + entities: + - uid: 3230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-47.5 + parent: 2 +- proto: ComputerSolarControl + entities: + - uid: 3231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-2.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 3232 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 + - uid: 3233 + components: + - type: Transform + pos: -41.5,3.5 + parent: 2 + - uid: 3234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 2 + - uid: 3235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-1.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 3236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,-2.5 + parent: 2 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 3237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 3238 + components: + - type: Transform + pos: 59.5,-27.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 3242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8661 + - uid: 3243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8661 + - uid: 3245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8661 + - uid: 3246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 92.5,-7.5 + parent: 2 + - uid: 3247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-7.5 + parent: 2 + - uid: 3248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,-7.5 + parent: 2 + - uid: 3249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,-7.5 + parent: 2 + - uid: 3250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.5,-7.5 + parent: 2 +- proto: CorpSofaCorner + entities: + - uid: 14285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,-47.5 + parent: 2 +- proto: CorpSofaLeft + entities: + - uid: 14289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 97.5,-46.5 + parent: 2 +- proto: CorpSofaMiddle + entities: + - uid: 14288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,-47.5 + parent: 2 +- proto: CorpSofaRight + entities: + - uid: 14287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 99.5,-47.5 + parent: 2 +- proto: CrateArtifactContainer + entities: + - uid: 3251 + components: + - type: Transform + pos: 61.5,10.5 + parent: 2 + - uid: 3252 + components: + - type: Transform + pos: 61.5,9.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3253 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEmptySpawner + entities: + - uid: 3254 + components: + - type: Transform + pos: 71.5,-16.5 + parent: 2 + - uid: 3255 + components: + - type: Transform + pos: 72.5,-15.5 + parent: 2 + - uid: 3256 + components: + - type: Transform + pos: 72.5,-24.5 + parent: 2 + - uid: 3257 + components: + - type: Transform + pos: 73.5,-24.5 + parent: 2 + - uid: 3258 + components: + - type: Transform + pos: 81.5,-39.5 + parent: 2 + - uid: 14550 + components: + - type: Transform + pos: 93.5,-29.5 + parent: 2 +- proto: CrateEngineeringAMEControl + entities: + - uid: 12354 + components: + - type: Transform + pos: 93.5,10.5 + parent: 2 +- proto: CrateEngineeringAMEJar + entities: + - uid: 3262 + components: + - type: Transform + pos: 83.5,5.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 167 + - 166 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringAMEShielding + entities: + - uid: 12349 + components: + - type: Transform + pos: 91.5,10.5 + parent: 2 + - uid: 12350 + components: + - type: Transform + pos: 90.5,10.5 + parent: 2 + - uid: 12353 + components: + - type: Transform + pos: 92.5,10.5 + parent: 2 +- proto: CrateEngineeringCableBulk + entities: + - uid: 15456 + components: + - type: Transform + pos: 83.5,39.5 + parent: 2 +- proto: CrateEngineeringCableHV + entities: + - uid: 3264 + components: + - type: Transform + pos: 84.5,16.5 + parent: 2 +- proto: CrateEngineeringCableLV + entities: + - uid: 3265 + components: + - type: Transform + pos: 87.5,16.5 + parent: 2 +- proto: CrateEngineeringCableMV + entities: + - uid: 3266 + components: + - type: Transform + pos: 86.5,16.5 + parent: 2 +- proto: CrateEngineeringSecure + entities: + - uid: 3267 + components: + - type: Transform + pos: 93.5,25.5 + parent: 2 + - uid: 13640 + components: + - type: Transform + pos: 46.5,-21.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13641 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateFilledSpawner + entities: + - uid: 3273 + components: + - type: Transform + pos: 72.5,-16.5 + parent: 2 + - uid: 3274 + components: + - type: Transform + pos: 72.5,-17.5 + parent: 2 + - uid: 3275 + components: + - type: Transform + pos: 71.5,-15.5 + parent: 2 + - uid: 3276 + components: + - type: Transform + pos: 71.5,-14.5 + parent: 2 + - uid: 3277 + components: + - type: Transform + pos: 72.5,-14.5 + parent: 2 + - uid: 3278 + components: + - type: Transform + pos: 74.5,-24.5 + parent: 2 + - uid: 3279 + components: + - type: Transform + pos: 76.5,-24.5 + parent: 2 + - uid: 3280 + components: + - type: Transform + pos: 73.5,-26.5 + parent: 2 + - uid: 3281 + components: + - type: Transform + pos: 75.5,-26.5 + parent: 2 + - uid: 3282 + components: + - type: Transform + pos: 81.5,-40.5 + parent: 2 + - uid: 13701 + components: + - type: Transform + pos: 40.5,-14.5 + parent: 2 + - uid: 13702 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 2 + - uid: 13704 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 + - uid: 13705 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - uid: 13706 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 2 + - uid: 13707 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 2 + - uid: 13708 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 2 + - uid: 13895 + components: + - type: Transform + pos: 49.5,-31.5 + parent: 2 + - uid: 14419 + components: + - type: Transform + pos: 93.5,-47.5 + parent: 2 + - uid: 14420 + components: + - type: Transform + pos: 92.5,-47.5 + parent: 2 + - uid: 14551 + components: + - type: Transform + pos: 95.5,-25.5 + parent: 2 + - uid: 14552 + components: + - type: Transform + pos: 94.5,-25.5 + parent: 2 +- proto: CrateFreezer + entities: + - uid: 3283 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 +- proto: CrateFunBikeHornImplants + entities: + - uid: 14558 + components: + - type: Transform + pos: 95.5,-21.5 + parent: 2 +- proto: CrateFunInstrumentsVariety + entities: + - uid: 3284 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 +- proto: CrateFunMysteryFigurines + entities: + - uid: 15039 + components: + - type: Transform + pos: 29.5,26.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15056 + - 15055 + - 15054 + - 15053 + - 15052 + - 15051 + - 15050 + - 15049 + - 15048 + - 15047 + - 15046 + - 15045 + - 15044 + - 15043 + - 15042 + - 15041 + - 15040 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateGenericSteel + entities: + - uid: 12904 + components: + - type: Transform + pos: 75.5,-24.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: 12905 + components: + - type: Transform + pos: 72.5,-26.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: 12906 + components: + - type: Transform + pos: 76.5,-26.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: CrateMaterialCardboard + entities: + - uid: 4220 + components: + - type: Transform + pos: 87.5,-15.5 + parent: 2 +- proto: CrateMaterialSteel + entities: + - uid: 12591 + components: + - type: Transform + pos: 84.5,49.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12592 + - 12593 + - 12594 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 12598 + components: + - type: Transform + pos: 103.5,52.5 + parent: 2 + - uid: 12610 + components: + - type: Transform + pos: 83.5,49.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12611 + - 12612 + - 12613 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateMedicalScrubs + entities: + - uid: 3285 + components: + - type: Transform + pos: 67.5,-11.5 + parent: 2 +- proto: CrateMedicalSecure + entities: + - uid: 3286 + components: + - type: Transform + pos: 57.5,-22.5 + parent: 2 + - uid: 3287 + components: + - type: Transform + pos: 56.5,-22.5 + parent: 2 +- proto: CrateMedicalSurgery + entities: + - uid: 3288 + components: + - type: Transform + pos: 65.5,-20.5 + parent: 2 + - uid: 3289 + components: + - type: Transform + pos: 65.5,-14.5 + parent: 2 +- proto: CrateScienceSecure + entities: + - uid: 3290 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3291 + - 3292 + - 3294 + - 3293 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateServiceBooks + entities: + - uid: 3295 + components: + - type: Transform + pos: 44.5,11.5 + parent: 2 +- proto: CrateServiceBureaucracy + entities: + - uid: 4219 + components: + - type: Transform + pos: 87.5,-16.5 + parent: 2 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 3297 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 +- proto: CrateSyndicateSamurai + entities: + - uid: 13039 + components: + - type: Transform + pos: 95.5,12.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5069 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateTrackingImplants + entities: + - uid: 3298 + components: + - type: Transform + pos: -63.5,-0.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3299 + - 3300 + - 3301 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateTrashCartJani + entities: + - uid: 3302 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 2 +- proto: CrateWeaponSecure + entities: + - uid: 438 + components: + - type: Transform + pos: -40.5,-4.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 450 + - 446 + - 441 + - 449 + - 445 + - 442 + - 452 + - 440 + - 444 + - 451 + - 439 + - 448 + - 443 + - 447 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: Crematorium + entities: + - uid: 8015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-20.5 + parent: 2 + - uid: 13298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 2 + - uid: 13303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 2 +- proto: CrewMonitoringServer + entities: + - uid: 3303 + components: + - type: Transform + pos: 65.5,23.5 + parent: 2 + - type: SingletonDeviceNetServer + active: False + available: False +- proto: CryogenicSleepUnit + entities: + - uid: 3304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-23.5 + parent: 2 + - uid: 3305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-25.5 + parent: 2 + - uid: 3306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-14.5 + parent: 2 + - uid: 3309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-24.5 + parent: 2 + - uid: 3310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-22.5 + parent: 2 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 5812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,-11.5 + parent: 2 + - uid: 6054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,-9.5 + parent: 2 + - uid: 6763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,-10.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 5087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-7.5 + parent: 2 + - uid: 5428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-8.5 + parent: 2 + - uid: 5433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-11.5 + parent: 2 + - uid: 5805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-9.5 + parent: 2 + - uid: 6343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-10.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerPrisoner + entities: + - uid: 9624 + components: + - type: Transform + pos: -44.5,8.5 + parent: 2 + - uid: 9625 + components: + - type: Transform + pos: -45.5,8.5 + parent: 2 +- proto: CryoPod + entities: + - uid: 3317 + components: + - type: Transform + pos: 50.5,-9.5 + parent: 2 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 14174 + components: + - type: Transform + pos: 48.36537,-9.338615 + parent: 2 + - uid: 14175 + components: + - type: Transform + pos: 48.61556,-9.588615 + parent: 2 + - uid: 14176 + components: + - type: Transform + pos: 48.349735,-9.85424 + parent: 2 +- proto: CultAltarSpawner + entities: + - uid: 3318 + components: + - type: Transform + pos: 84.5,-37.5 + parent: 2 +- proto: CurtainsBlack + entities: + - uid: 14120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-29.5 + parent: 2 + - uid: 15037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,24.5 + parent: 2 +- proto: CurtainsBlackOpen + entities: + - uid: 3319 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 15038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,23.5 + parent: 2 +- proto: CurtainsBlueOpen + entities: + - uid: 14604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,28.5 + parent: 2 +- proto: CurtainsCyanOpen + entities: + - uid: 3320 + components: + - type: Transform + pos: 54.5,-12.5 + parent: 2 +- proto: CurtainsOrange + entities: + - uid: 12177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,43.5 + parent: 2 + - uid: 12178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,45.5 + parent: 2 +- proto: CurtainSpawner + entities: + - uid: 3321 + components: + - type: Transform + pos: 72.5,-10.5 + parent: 2 + - uid: 3322 + components: + - type: Transform + pos: 72.5,-2.5 + parent: 2 +- proto: CurtainsPurpleOpen + entities: + - uid: 3323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,21.5 + parent: 2 +- proto: CurtainsRed + entities: + - uid: 14788 + components: + - type: Transform + pos: 22.5,29.5 + parent: 2 +- proto: CurtainsRedOpen + entities: + - uid: 3324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 2 + - uid: 3325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 2 + - uid: 3326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 2 + - uid: 3327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 2 +- proto: CurtainsWhiteOpen + entities: + - uid: 3328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-4.5 + parent: 2 + - uid: 3329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-25.5 + parent: 2 + - uid: 3330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-2.5 + parent: 2 + - uid: 3331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-25.5 + parent: 2 + - uid: 14315 + components: + - type: Transform + pos: 102.5,-48.5 + parent: 2 +- proto: DefaultStationBeaconAME + entities: + - uid: 3332 + components: + - type: Transform + pos: 88.5,8.5 + parent: 2 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 3333 + components: + - type: Transform + pos: 75.5,11.5 + parent: 2 +- proto: DefaultStationBeaconArmory + entities: + - uid: 3334 + components: + - type: Transform + pos: -44.5,-2.5 + parent: 2 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 3335 + components: + - type: Transform + pos: 62.5,5.5 + parent: 2 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 3336 + components: + - type: Transform + pos: 80.5,21.5 + parent: 2 +- proto: DefaultStationBeaconBar + entities: + - uid: 3337 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 +- proto: DefaultStationBeaconBotany + entities: + - uid: 3338 + components: + - type: Transform + pos: 20.5,5.5 + parent: 2 +- proto: DefaultStationBeaconBridge + entities: + - uid: 3339 + components: + - type: Transform + pos: -72.5,1.5 + parent: 2 +- proto: DefaultStationBeaconBrig + entities: + - uid: 3340 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 +- proto: DefaultStationBeaconCameraServerRoom + entities: + - uid: 3341 + components: + - type: Transform + pos: 94.5,-0.5 + parent: 2 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 3342 + components: + - type: Transform + pos: -55.5,7.5 + parent: 2 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 3343 + components: + - type: Transform + pos: 102.5,-18.5 + parent: 2 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 3344 + components: + - type: Transform + pos: 70.5,45.5 + parent: 2 +- proto: DefaultStationBeaconChapel + entities: + - uid: 3345 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 3346 + components: + - type: Transform + pos: 48.5,-4.5 + parent: 2 +- proto: DefaultStationBeaconChiefJustice + entities: + - uid: 3347 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 3348 + components: + - type: Transform + pos: 57.5,-11.5 + parent: 2 +- proto: DefaultStationBeaconConferenceRoom + entities: + - uid: 3349 + components: + - type: Transform + pos: -54.5,-0.5 + parent: 2 +- proto: DefaultStationBeaconCorpsman + entities: + - uid: 3350 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 3351 + components: + - type: Transform + pos: -1.5,7.5 + parent: 2 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 3352 + components: + - type: Transform + pos: 50.5,-10.5 + parent: 2 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 3353 + components: + - type: Transform + pos: 84.5,-10.5 + parent: 2 + - uid: 3354 + components: + - type: Transform + pos: 63.5,-23.5 + parent: 2 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 3355 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 +- proto: DefaultStationBeaconDorms + entities: + - uid: 3356 + components: + - type: Transform + pos: 74.5,-7.5 + parent: 2 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 3357 + components: + - type: Transform + pos: 84.5,10.5 + parent: 2 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 3358 + components: + - type: Transform + pos: 89.5,-0.5 + parent: 2 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 3359 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 3360 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 3361 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 +- proto: DefaultStationBeaconJustice + entities: + - uid: 3362 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 3363 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 3364 + components: + - type: Transform + pos: 40.5,6.5 + parent: 2 +- proto: DefaultStationBeaconMedical + entities: + - uid: 3365 + components: + - type: Transform + pos: 43.5,-8.5 + parent: 2 +- proto: DefaultStationBeaconMetempsychosis + entities: + - uid: 3366 + components: + - type: Transform + pos: 66.5,-11.5 + parent: 2 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 3367 + components: + - type: Transform + pos: 55.5,-17.5 + parent: 2 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 3368 + components: + - type: Transform + pos: -44.5,7.5 + parent: 2 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 3369 + components: + - type: Transform + pos: 87.5,19.5 + parent: 2 +- proto: DefaultStationBeaconPsychologist + entities: + - uid: 3370 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 2 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 3371 + components: + - type: Transform + pos: 83.5,-24.5 + parent: 2 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 3372 + components: + - type: Transform + pos: 64.5,19.5 + parent: 2 +- proto: DefaultStationBeaconReporter + entities: + - uid: 3373 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 3374 + components: + - type: Transform + pos: 50.5,12.5 + parent: 2 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 3375 + components: + - type: Transform + pos: 82.5,-45.5 + parent: 2 +- proto: DefaultStationBeaconScience + entities: + - uid: 3376 + components: + - type: Transform + pos: 56.5,6.5 + parent: 2 +- proto: DefaultStationBeaconSecurity + entities: + - uid: 3377 + components: + - type: Transform + pos: -33.5,1.5 + parent: 2 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 3378 + components: + - type: Transform + pos: 64.5,24.5 + parent: 2 +- proto: DefaultStationBeaconSupply + entities: + - uid: 3379 + components: + - type: Transform + pos: 80.5,-20.5 + parent: 2 +- proto: DefaultStationBeaconSurgery + entities: + - uid: 3380 + components: + - type: Transform + pos: 64.5,-15.5 + parent: 2 + - uid: 3381 + components: + - type: Transform + pos: 64.5,-19.5 + parent: 2 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 3382 + components: + - type: Transform + pos: -62.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconTheater + entities: + - uid: 3383 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 2 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 3384 + components: + - type: Transform + pos: 68.5,-18.5 + parent: 2 +- proto: DefaultStationBeaconVault + entities: + - uid: 3385 + components: + - type: Transform + pos: -63.5,1.5 + parent: 2 +- proto: DefaultStationBeaconVirology + entities: + - uid: 3386 + components: + - type: Transform + pos: 55.5,-24.5 + parent: 2 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 3387 + components: + - type: Transform + pos: -41.5,0.5 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 13994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-21.5 + parent: 2 + - uid: 13995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-12.5 + parent: 2 + - uid: 13996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-9.5 + parent: 2 + - uid: 13997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-12.5 + parent: 2 + - uid: 13998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 2 + - uid: 13999 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 2 + - uid: 14000 + components: + - type: Transform + pos: 64.5,-13.5 + parent: 2 + - uid: 14001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-21.5 + parent: 2 +- proto: DinnerSofaCorner + entities: + - uid: 3388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 2 + - uid: 3389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 2 + - uid: 3939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 2 +- proto: DinnerSofaLeft + entities: + - uid: 3392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 3393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 + - uid: 3940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 2 +- proto: DinnerSofaMiddle + entities: + - uid: 3395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 2 + - uid: 3396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 2 + - uid: 3397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 2 +- proto: DinnerSofaRight + entities: + - uid: 3398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 2 + - uid: 3399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 3400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 + - uid: 3401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 2 +- proto: DiseaseDiagnoser + entities: + - uid: 3402 + components: + - type: Transform + pos: 53.5,-22.5 + parent: 2 +- proto: DisposalBend + entities: + - uid: 3403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-29.5 + parent: 2 + - uid: 3404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-7.5 + parent: 2 + - uid: 3405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 2 + - uid: 3406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,0.5 + parent: 2 + - uid: 3407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,0.5 + parent: 2 + - uid: 3408 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 3409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-6.5 + parent: 2 + - uid: 3410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,12.5 + parent: 2 + - uid: 3411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,13.5 + parent: 2 + - uid: 3412 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 3413 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - uid: 3414 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 3415 + components: + - type: Transform + pos: 43.5,5.5 + parent: 2 + - uid: 3416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,5.5 + parent: 2 + - uid: 3417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-6.5 + parent: 2 + - uid: 3418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-5.5 + parent: 2 + - uid: 3419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,28.5 + parent: 2 + - uid: 3420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,11.5 + parent: 2 + - uid: 3421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,8.5 + parent: 2 + - uid: 3422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,8.5 + parent: 2 + - uid: 3423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,34.5 + parent: 2 + - uid: 3424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,17.5 + parent: 2 + - uid: 3425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,17.5 + parent: 2 + - uid: 3426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,14.5 + parent: 2 + - uid: 3427 + components: + - type: Transform + pos: 80.5,14.5 + parent: 2 + - uid: 3428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,-17.5 + parent: 2 + - uid: 3429 + components: + - type: Transform + pos: 81.5,-17.5 + parent: 2 + - uid: 3430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-20.5 + parent: 2 + - uid: 3431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-20.5 + parent: 2 + - uid: 3432 + components: + - type: Transform + pos: 85.5,-4.5 + parent: 2 + - uid: 3433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-7.5 + parent: 2 +- proto: DisposalJunction + entities: + - uid: 3434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,2.5 + parent: 2 + - uid: 3435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,0.5 + parent: 2 + - uid: 3436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,0.5 + parent: 2 + - uid: 3437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,0.5 + parent: 2 + - uid: 3438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,0.5 + parent: 2 + - uid: 3439 + components: + - type: Transform + pos: 80.5,0.5 + parent: 2 + - uid: 3440 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 3441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-6.5 + parent: 2 +- proto: DisposalJunctionFlipped + entities: + - uid: 3442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,0.5 + parent: 2 + - uid: 3443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,0.5 + parent: 2 + - uid: 3444 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - uid: 3445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 2 + - uid: 3446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,0.5 + parent: 2 + - uid: 3447 + components: + - type: Transform + pos: 50.5,4.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 3448 + components: + - type: Transform + pos: -50.5,2.5 + parent: 2 + - uid: 3449 + components: + - type: Transform + pos: -50.5,1.5 + parent: 2 + - uid: 3450 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 + - uid: 3451 + components: + - type: Transform + pos: -50.5,-0.5 + parent: 2 + - uid: 3452 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - uid: 3453 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - uid: 3454 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 + - uid: 3455 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 + - uid: 3456 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 3457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 2 + - uid: 3458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-6.5 + parent: 2 + - uid: 3459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-6.5 + parent: 2 + - uid: 3460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-6.5 + parent: 2 + - uid: 3461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-6.5 + parent: 2 + - uid: 3462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-6.5 + parent: 2 + - uid: 3463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-6.5 + parent: 2 + - uid: 3464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-6.5 + parent: 2 + - uid: 3465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 2 + - uid: 3466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-6.5 + parent: 2 + - uid: 3467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-6.5 + parent: 2 + - uid: 3468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-6.5 + parent: 2 + - uid: 3469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-6.5 + parent: 2 + - uid: 3470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-6.5 + parent: 2 + - uid: 3471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-6.5 + parent: 2 + - uid: 3472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-6.5 + parent: 2 + - uid: 3473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-6.5 + parent: 2 + - uid: 3474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-6.5 + parent: 2 + - uid: 3475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-6.5 + parent: 2 + - uid: 3476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-6.5 + parent: 2 + - uid: 3477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-6.5 + parent: 2 + - uid: 3478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-6.5 + parent: 2 + - uid: 3479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-6.5 + parent: 2 + - uid: 3480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-6.5 + parent: 2 + - uid: 3481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-6.5 + parent: 2 + - uid: 3482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-6.5 + parent: 2 + - uid: 3483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-6.5 + parent: 2 + - uid: 3484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-6.5 + parent: 2 + - uid: 3485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 2 + - uid: 3486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 2 + - uid: 3487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-6.5 + parent: 2 + - uid: 3488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-6.5 + parent: 2 + - uid: 3489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-6.5 + parent: 2 + - uid: 3490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-6.5 + parent: 2 + - uid: 3491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-6.5 + parent: 2 + - uid: 3492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-6.5 + parent: 2 + - uid: 3493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-7.5 + parent: 2 + - uid: 3494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 2 + - uid: 3495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 2 + - uid: 3496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 2 + - uid: 3497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + - uid: 3498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 2 + - uid: 3499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 3500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 2 + - uid: 3501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 2 + - uid: 3502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 2 + - uid: 3503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 2 + - uid: 3504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 2 + - uid: 3505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 2 + - uid: 3506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 2 + - uid: 3507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 2 + - uid: 3508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 2 + - uid: 3509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 2 + - uid: 3510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,2.5 + parent: 2 + - uid: 3511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,1.5 + parent: 2 + - uid: 3512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,0.5 + parent: 2 + - uid: 3513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,0.5 + parent: 2 + - uid: 3514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,0.5 + parent: 2 + - uid: 3515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,0.5 + parent: 2 + - uid: 3516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,0.5 + parent: 2 + - uid: 3517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,0.5 + parent: 2 + - uid: 3518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,0.5 + parent: 2 + - uid: 3519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,0.5 + parent: 2 + - uid: 3520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,0.5 + parent: 2 + - uid: 3521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,0.5 + parent: 2 + - uid: 3522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,0.5 + parent: 2 + - uid: 3523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,0.5 + parent: 2 + - uid: 3524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,0.5 + parent: 2 + - uid: 3525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,0.5 + parent: 2 + - uid: 3526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,0.5 + parent: 2 + - uid: 3527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,0.5 + parent: 2 + - uid: 3528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,0.5 + parent: 2 + - uid: 3529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,0.5 + parent: 2 + - uid: 3530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,0.5 + parent: 2 + - uid: 3531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,0.5 + parent: 2 + - uid: 3532 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 + - uid: 3533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,2.5 + parent: 2 + - uid: 3534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,2.5 + parent: 2 + - uid: 3535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,2.5 + parent: 2 + - uid: 3536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,2.5 + parent: 2 + - uid: 3537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,2.5 + parent: 2 + - uid: 3538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,2.5 + parent: 2 + - uid: 3539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,2.5 + parent: 2 + - uid: 3540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,2.5 + parent: 2 + - uid: 3541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,2.5 + parent: 2 + - uid: 3542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 2 + - uid: 3543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 2 + - uid: 3544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 2 + - uid: 3545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 2 + - uid: 3546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 2 + - uid: 3547 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 3548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + - uid: 3549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + - uid: 3550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 2 + - uid: 3551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + - uid: 3552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - uid: 3553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - uid: 3554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + - uid: 3555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + - uid: 3556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + - uid: 3557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 2 + - uid: 3558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 2 + - uid: 3559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,0.5 + parent: 2 + - uid: 3560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 2 + - uid: 3561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 2 + - uid: 3562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,0.5 + parent: 2 + - uid: 3563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,0.5 + parent: 2 + - uid: 3564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,0.5 + parent: 2 + - uid: 3565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,0.5 + parent: 2 + - uid: 3566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,0.5 + parent: 2 + - uid: 3567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,0.5 + parent: 2 + - uid: 3568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,0.5 + parent: 2 + - uid: 3569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,0.5 + parent: 2 + - uid: 3570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,0.5 + parent: 2 + - uid: 3571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,0.5 + parent: 2 + - uid: 3572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,0.5 + parent: 2 + - uid: 3573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,0.5 + parent: 2 + - uid: 3574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,0.5 + parent: 2 + - uid: 3575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,0.5 + parent: 2 + - uid: 3576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,0.5 + parent: 2 + - uid: 3577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,0.5 + parent: 2 + - uid: 3578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,0.5 + parent: 2 + - uid: 3579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,0.5 + parent: 2 + - uid: 3580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,0.5 + parent: 2 + - uid: 3581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,0.5 + parent: 2 + - uid: 3582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,0.5 + parent: 2 + - uid: 3583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,0.5 + parent: 2 + - uid: 3584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,0.5 + parent: 2 + - uid: 3585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,0.5 + parent: 2 + - uid: 3586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,0.5 + parent: 2 + - uid: 3587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,0.5 + parent: 2 + - uid: 3588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,0.5 + parent: 2 + - uid: 3589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,0.5 + parent: 2 + - uid: 3590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,0.5 + parent: 2 + - uid: 3591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,0.5 + parent: 2 + - uid: 3592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,0.5 + parent: 2 + - uid: 3593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,0.5 + parent: 2 + - uid: 3594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,0.5 + parent: 2 + - uid: 3595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,0.5 + parent: 2 + - uid: 3596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,0.5 + parent: 2 + - uid: 3597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,0.5 + parent: 2 + - uid: 3598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,0.5 + parent: 2 + - uid: 3599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,0.5 + parent: 2 + - uid: 3600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,0.5 + parent: 2 + - uid: 3601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,0.5 + parent: 2 + - uid: 3602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,0.5 + parent: 2 + - uid: 3603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,0.5 + parent: 2 + - uid: 3604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,0.5 + parent: 2 + - uid: 3605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,0.5 + parent: 2 + - uid: 3606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,0.5 + parent: 2 + - uid: 3607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,0.5 + parent: 2 + - uid: 3608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,0.5 + parent: 2 + - uid: 3609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,0.5 + parent: 2 + - uid: 3610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,0.5 + parent: 2 + - uid: 3611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,0.5 + parent: 2 + - uid: 3612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,0.5 + parent: 2 + - uid: 3613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,0.5 + parent: 2 + - uid: 3614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,0.5 + parent: 2 + - uid: 3615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,0.5 + parent: 2 + - uid: 3616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,0.5 + parent: 2 + - uid: 3617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,0.5 + parent: 2 + - uid: 3618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,0.5 + parent: 2 + - uid: 3619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,0.5 + parent: 2 + - uid: 3620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-6.5 + parent: 2 + - uid: 3621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-5.5 + parent: 2 + - uid: 3622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-4.5 + parent: 2 + - uid: 3623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-3.5 + parent: 2 + - uid: 3624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-2.5 + parent: 2 + - uid: 3625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-1.5 + parent: 2 + - uid: 3626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-0.5 + parent: 2 + - uid: 3627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,0.5 + parent: 2 + - uid: 3628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,0.5 + parent: 2 + - uid: 3629 + components: + - type: Transform + pos: 80.5,-0.5 + parent: 2 + - uid: 3630 + components: + - type: Transform + pos: 80.5,-1.5 + parent: 2 + - uid: 3631 + components: + - type: Transform + pos: 80.5,-2.5 + parent: 2 + - uid: 3632 + components: + - type: Transform + pos: 80.5,-3.5 + parent: 2 + - uid: 3633 + components: + - type: Transform + pos: 80.5,-5.5 + parent: 2 + - uid: 3634 + components: + - type: Transform + pos: 80.5,-6.5 + parent: 2 + - uid: 3635 + components: + - type: Transform + pos: 80.5,-7.5 + parent: 2 + - uid: 3636 + components: + - type: Transform + pos: 80.5,-8.5 + parent: 2 + - uid: 3637 + components: + - type: Transform + pos: 80.5,-9.5 + parent: 2 + - uid: 3638 + components: + - type: Transform + pos: 80.5,-10.5 + parent: 2 + - uid: 3639 + components: + - type: Transform + pos: 80.5,-11.5 + parent: 2 + - uid: 3640 + components: + - type: Transform + pos: 80.5,-12.5 + parent: 2 + - uid: 3641 + components: + - type: Transform + pos: 80.5,-13.5 + parent: 2 + - uid: 3642 + components: + - type: Transform + pos: 80.5,-14.5 + parent: 2 + - uid: 3643 + components: + - type: Transform + pos: 80.5,-15.5 + parent: 2 + - uid: 3644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-4.5 + parent: 2 + - uid: 3645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-4.5 + parent: 2 + - uid: 3646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,-4.5 + parent: 2 + - uid: 3647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,-4.5 + parent: 2 + - uid: 3648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,1.5 + parent: 2 + - uid: 3649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,2.5 + parent: 2 + - uid: 3650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,3.5 + parent: 2 + - uid: 3651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,4.5 + parent: 2 + - uid: 3652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,5.5 + parent: 2 + - uid: 3653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,6.5 + parent: 2 + - uid: 3654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,7.5 + parent: 2 + - uid: 3655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,8.5 + parent: 2 + - uid: 3656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,9.5 + parent: 2 + - uid: 3657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,10.5 + parent: 2 + - uid: 3658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,11.5 + parent: 2 + - uid: 3659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,12.5 + parent: 2 + - uid: 3660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,13.5 + parent: 2 + - uid: 3661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,12.5 + parent: 2 + - uid: 3662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,12.5 + parent: 2 + - uid: 3663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,12.5 + parent: 2 + - uid: 3664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,12.5 + parent: 2 + - uid: 3665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,13.5 + parent: 2 + - uid: 3666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,13.5 + parent: 2 + - uid: 3667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,13.5 + parent: 2 + - uid: 3668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,13.5 + parent: 2 + - uid: 3669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,13.5 + parent: 2 + - uid: 3670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,13.5 + parent: 2 + - uid: 3671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,13.5 + parent: 2 + - uid: 3672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,13.5 + parent: 2 + - uid: 3673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,13.5 + parent: 2 + - uid: 3674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,13.5 + parent: 2 + - uid: 3675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,13.5 + parent: 2 + - uid: 3676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 2 + - uid: 3677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 2 + - uid: 3678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 2 + - uid: 3679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 2 + - uid: 3680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 2 + - uid: 3681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,13.5 + parent: 2 + - uid: 3682 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 3683 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - uid: 3684 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 + - uid: 3685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2 + - uid: 3686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + - uid: 3687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 + - uid: 3688 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - uid: 3689 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 3690 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 3691 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 3692 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 3693 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 3694 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 3695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,6.5 + parent: 2 + - uid: 3696 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - uid: 3697 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - uid: 3698 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 + - uid: 3699 + components: + - type: Transform + pos: 22.5,2.5 + parent: 2 + - uid: 3700 + components: + - type: Transform + pos: 22.5,1.5 + parent: 2 + - uid: 3701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-10.5 + parent: 2 + - uid: 3702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-9.5 + parent: 2 + - uid: 3703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-8.5 + parent: 2 + - uid: 3704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-7.5 + parent: 2 + - uid: 3705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-6.5 + parent: 2 + - uid: 3706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-5.5 + parent: 2 + - uid: 3707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-4.5 + parent: 2 + - uid: 3708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-3.5 + parent: 2 + - uid: 3709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-2.5 + parent: 2 + - uid: 3710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-1.5 + parent: 2 + - uid: 3711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-0.5 + parent: 2 + - uid: 3712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,5.5 + parent: 2 + - uid: 3713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,5.5 + parent: 2 + - uid: 3714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,5.5 + parent: 2 + - uid: 3715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,5.5 + parent: 2 + - uid: 3716 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 3717 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - uid: 3718 + components: + - type: Transform + pos: 38.5,2.5 + parent: 2 + - uid: 3719 + components: + - type: Transform + pos: 38.5,1.5 + parent: 2 + - uid: 3720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-6.5 + parent: 2 + - uid: 3721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-6.5 + parent: 2 + - uid: 3722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-6.5 + parent: 2 + - uid: 3723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-6.5 + parent: 2 + - uid: 3724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-6.5 + parent: 2 + - uid: 3725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-6.5 + parent: 2 + - uid: 3726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-6.5 + parent: 2 + - uid: 3727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-6.5 + parent: 2 + - uid: 3728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-5.5 + parent: 2 + - uid: 3729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-4.5 + parent: 2 + - uid: 3730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-3.5 + parent: 2 + - uid: 3731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-2.5 + parent: 2 + - uid: 3732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-1.5 + parent: 2 + - uid: 3733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-0.5 + parent: 2 + - uid: 3734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-4.5 + parent: 2 + - uid: 3735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-3.5 + parent: 2 + - uid: 3736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-2.5 + parent: 2 + - uid: 3737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-1.5 + parent: 2 + - uid: 3738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-0.5 + parent: 2 + - uid: 3739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,4.5 + parent: 2 + - uid: 3740 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 3741 + components: + - type: Transform + pos: 57.5,26.5 + parent: 2 + - uid: 3742 + components: + - type: Transform + pos: 57.5,25.5 + parent: 2 + - uid: 3743 + components: + - type: Transform + pos: 57.5,24.5 + parent: 2 + - uid: 3744 + components: + - type: Transform + pos: 57.5,23.5 + parent: 2 + - uid: 3745 + components: + - type: Transform + pos: 57.5,22.5 + parent: 2 + - uid: 3746 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 3747 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 3748 + components: + - type: Transform + pos: 57.5,19.5 + parent: 2 + - uid: 3749 + components: + - type: Transform + pos: 57.5,18.5 + parent: 2 + - uid: 3750 + components: + - type: Transform + pos: 57.5,17.5 + parent: 2 + - uid: 3751 + components: + - type: Transform + pos: 57.5,16.5 + parent: 2 + - uid: 3752 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 + - uid: 3753 + components: + - type: Transform + pos: 57.5,14.5 + parent: 2 + - uid: 3754 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 + - uid: 3755 + components: + - type: Transform + pos: 57.5,12.5 + parent: 2 + - uid: 3756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,11.5 + parent: 2 + - uid: 3757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,10.5 + parent: 2 + - uid: 3758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,9.5 + parent: 2 + - uid: 3759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,8.5 + parent: 2 + - uid: 3760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,8.5 + parent: 2 + - uid: 3761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,8.5 + parent: 2 + - uid: 3762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,8.5 + parent: 2 + - uid: 3763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,8.5 + parent: 2 + - uid: 3764 + components: + - type: Transform + pos: 50.5,7.5 + parent: 2 + - uid: 3765 + components: + - type: Transform + pos: 50.5,6.5 + parent: 2 + - uid: 3766 + components: + - type: Transform + pos: 50.5,5.5 + parent: 2 + - uid: 3767 + components: + - type: Transform + pos: 50.5,3.5 + parent: 2 + - uid: 3768 + components: + - type: Transform + pos: 50.5,2.5 + parent: 2 + - uid: 3769 + components: + - type: Transform + pos: 50.5,1.5 + parent: 2 + - uid: 3770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-29.5 + parent: 2 + - uid: 3771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-29.5 + parent: 2 + - uid: 3772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-28.5 + parent: 2 + - uid: 3773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-27.5 + parent: 2 + - uid: 3774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-26.5 + parent: 2 + - uid: 3775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-25.5 + parent: 2 + - uid: 3776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-24.5 + parent: 2 + - uid: 3777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-23.5 + parent: 2 + - uid: 3778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-22.5 + parent: 2 + - uid: 3779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-21.5 + parent: 2 + - uid: 3780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-20.5 + parent: 2 + - uid: 3781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-19.5 + parent: 2 + - uid: 3782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-18.5 + parent: 2 + - uid: 3783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-17.5 + parent: 2 + - uid: 3784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-16.5 + parent: 2 + - uid: 3785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-15.5 + parent: 2 + - uid: 3786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-14.5 + parent: 2 + - uid: 3787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-13.5 + parent: 2 + - uid: 3788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-12.5 + parent: 2 + - uid: 3789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-11.5 + parent: 2 + - uid: 3790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-10.5 + parent: 2 + - uid: 3791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-9.5 + parent: 2 + - uid: 3792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-8.5 + parent: 2 + - uid: 3793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-7.5 + parent: 2 + - uid: 3794 + components: + - type: Transform + pos: 86.5,33.5 + parent: 2 + - uid: 3795 + components: + - type: Transform + pos: 86.5,32.5 + parent: 2 + - uid: 3796 + components: + - type: Transform + pos: 86.5,31.5 + parent: 2 + - uid: 3797 + components: + - type: Transform + pos: 86.5,30.5 + parent: 2 + - uid: 3798 + components: + - type: Transform + pos: 86.5,29.5 + parent: 2 + - uid: 3799 + components: + - type: Transform + pos: 86.5,28.5 + parent: 2 + - uid: 3800 + components: + - type: Transform + pos: 86.5,27.5 + parent: 2 + - uid: 3801 + components: + - type: Transform + pos: 86.5,26.5 + parent: 2 + - uid: 3802 + components: + - type: Transform + pos: 86.5,25.5 + parent: 2 + - uid: 3803 + components: + - type: Transform + pos: 86.5,24.5 + parent: 2 + - uid: 3804 + components: + - type: Transform + pos: 86.5,23.5 + parent: 2 + - uid: 3805 + components: + - type: Transform + pos: 86.5,22.5 + parent: 2 + - uid: 3806 + components: + - type: Transform + pos: 86.5,21.5 + parent: 2 + - uid: 3807 + components: + - type: Transform + pos: 86.5,20.5 + parent: 2 + - uid: 3808 + components: + - type: Transform + pos: 86.5,19.5 + parent: 2 + - uid: 3809 + components: + - type: Transform + pos: 86.5,18.5 + parent: 2 + - uid: 3810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,17.5 + parent: 2 + - uid: 3811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,17.5 + parent: 2 + - uid: 3812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,17.5 + parent: 2 + - uid: 3813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,17.5 + parent: 2 + - uid: 3814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,17.5 + parent: 2 + - uid: 3815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,17.5 + parent: 2 + - uid: 3816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,16.5 + parent: 2 + - uid: 3817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,15.5 + parent: 2 + - uid: 3818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-20.5 + parent: 2 + - uid: 3819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-20.5 + parent: 2 + - uid: 3820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-20.5 + parent: 2 + - uid: 3821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-20.5 + parent: 2 + - uid: 3822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-20.5 + parent: 2 + - uid: 3823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-19.5 + parent: 2 + - uid: 3824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-18.5 + parent: 2 + - uid: 3825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,-16.5 + parent: 2 + - uid: 3826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-5.5 + parent: 2 + - uid: 3827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-6.5 + parent: 2 + - uid: 3828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-7.5 + parent: 2 + - uid: 3829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,-7.5 + parent: 2 + - uid: 3830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-7.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 3831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-29.5 + parent: 2 + - uid: 3832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,6.5 + parent: 2 + - uid: 3833 + components: + - type: Transform + pos: -50.5,3.5 + parent: 2 + - uid: 3834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-7.5 + parent: 2 + - uid: 3835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-6.5 + parent: 2 + - uid: 3836 + components: + - type: Transform + pos: -38.5,3.5 + parent: 2 + - uid: 3837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,2.5 + parent: 2 + - uid: 3838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-6.5 + parent: 2 + - uid: 3839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,12.5 + parent: 2 + - uid: 3840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,8.5 + parent: 2 + - uid: 3841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,6.5 + parent: 2 + - uid: 3842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-11.5 + parent: 2 + - uid: 3843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,4.5 + parent: 2 + - uid: 3844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-5.5 + parent: 2 + - uid: 3845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-6.5 + parent: 2 + - uid: 3846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,4.5 + parent: 2 + - uid: 3847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,11.5 + parent: 2 + - uid: 3848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,28.5 + parent: 2 + - uid: 3849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,34.5 + parent: 2 + - uid: 3850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-21.5 + parent: 2 + - uid: 3851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,-7.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 3852 + components: + - type: Transform + pos: 52.5,-6.5 + parent: 2 + - uid: 3853 + components: + - type: Transform + pos: 68.5,-6.5 + parent: 2 + - uid: 3854 + components: + - type: Transform + pos: 75.5,-21.5 + parent: 2 + - uid: 3855 + components: + - type: Transform + pos: 78.5,14.5 + parent: 2 + - uid: 3856 + components: + - type: Transform + pos: 87.5,34.5 + parent: 2 + - uid: 3857 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - uid: 3858 + components: + - type: Transform + pos: 52.5,4.5 + parent: 2 + - uid: 3859 + components: + - type: Transform + pos: 58.5,28.5 + parent: 2 + - uid: 3860 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 + - uid: 3861 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 3862 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 3863 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 3864 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 3865 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 + - uid: 3866 + components: + - type: Transform + pos: -18.5,12.5 + parent: 2 + - uid: 3867 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 3868 + components: + - type: Transform + pos: -50.5,3.5 + parent: 2 + - uid: 3869 + components: + - type: Transform + pos: -38.5,3.5 + parent: 2 + - uid: 3870 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 + - uid: 3871 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 3872 + components: + - type: Transform + pos: 64.5,-29.5 + parent: 2 +- proto: DisposalYJunction + entities: + - uid: 3873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-6.5 + parent: 2 + - uid: 3874 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 3875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 + - uid: 3876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-4.5 + parent: 2 + - uid: 3877 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 +- proto: DogBed + entities: + - uid: 3878 + components: + - type: Transform + pos: -56.5,9.5 + parent: 2 + - uid: 3879 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 2 +- proto: DonkpocketBoxSpawner + entities: + - uid: 3880 + components: + - type: Transform + pos: 57.5,-29.5 + parent: 2 + - uid: 3881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 2 + - uid: 3882 + components: + - type: Transform + pos: 76.5,-16.5 + parent: 2 + - uid: 3883 + components: + - type: Transform + pos: 78.5,-44.5 + parent: 2 + - uid: 3884 + components: + - type: Transform + pos: 57.5,-29.5 + parent: 2 + - uid: 14125 + components: + - type: Transform + pos: 69.5,-29.5 + parent: 2 + - uid: 14139 + components: + - type: Transform + pos: 64.5,-32.5 + parent: 2 + - uid: 15157 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 +- proto: DoorElectronics + entities: + - uid: 216 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 217 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 218 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 3885 + components: + - type: Transform + pos: -42.20205,10.265103 + parent: 2 +- proto: DresserCaptainFilled + entities: + - uid: 3886 + components: + - type: Transform + pos: -52.5,10.5 + parent: 2 +- proto: DresserChiefEngineerFilled + entities: + - uid: 3887 + components: + - type: Transform + pos: 66.5,47.5 + parent: 2 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 3888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-11.5 + parent: 2 +- proto: DresserFilled + entities: + - uid: 3889 + components: + - type: Transform + pos: 64.5,29.5 + parent: 2 + - uid: 3890 + components: + - type: Transform + pos: 75.5,-2.5 + parent: 2 + - uid: 3891 + components: + - type: Transform + pos: 75.5,-12.5 + parent: 2 + - uid: 12919 + components: + - type: Transform + pos: 37.5,9.5 + parent: 2 + - uid: 14284 + components: + - type: Transform + pos: 102.5,-43.5 + parent: 2 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 3892 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - uid: 3893 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 3894 + components: + - type: Transform + pos: -24.5,9.5 + parent: 2 +- proto: DresserQuarterMasterFilled + entities: + - uid: 3895 + components: + - type: Transform + pos: 87.5,-25.5 + parent: 2 +- proto: DresserResearchDirectorFilled + entities: + - uid: 3896 + components: + - type: Transform + pos: 65.5,21.5 + parent: 2 +- proto: DrinkBananaHonkGlass + entities: + - uid: 3897 + components: + - type: Transform + pos: 18.709286,-4.117686 + parent: 2 +- proto: DrinkBeerBottleFull + entities: + - uid: 3898 + components: + - type: Transform + pos: -45.10559,0.79170734 + parent: 2 + - uid: 3899 + components: + - type: Transform + pos: -28.727594,9.774844 + parent: 2 + - uid: 3900 + components: + - type: Transform + pos: 86.70346,-19.32516 + parent: 2 + - uid: 3901 + components: + - type: Transform + pos: 86.440765,-19.15641 + parent: 2 + - uid: 3902 + components: + - type: Transform + pos: 83.00542,-51.221172 + parent: 2 + - uid: 3903 + components: + - type: Transform + pos: 83.11479,-49.314922 + parent: 2 + - uid: 3904 + components: + - type: Transform + pos: 5.8517704,-2.9581518 + parent: 2 + - uid: 3905 + components: + - type: Transform + pos: 5.5247564,-3.4700003 + parent: 2 + - uid: 3906 + components: + - type: Transform + pos: 16.296593,-7.971781 + parent: 2 + - uid: 3907 + components: + - type: Transform + pos: 16.546593,-8.159281 + parent: 2 + - uid: 12980 + components: + - type: Transform + pos: 72.738594,46.929222 + parent: 2 + - uid: 12987 + components: + - type: Transform + pos: 66.49225,44.95134 + parent: 2 +- proto: DrinkBeerCan + entities: + - uid: 3908 + components: + - type: Transform + pos: -28.477594,9.743594 + parent: 2 + - uid: 3909 + components: + - type: Transform + pos: -28.24322,9.774844 + parent: 2 +- proto: DrinkBeerglass + entities: + - uid: 3910 + components: + - type: Transform + pos: 86.25313,-19.45641 + parent: 2 +- proto: DrinkBloodGlass + entities: + - uid: 3911 + components: + - type: Transform + pos: 83.44941,-37.47116 + parent: 2 + - uid: 3912 + components: + - type: Transform + pos: 85.51972,-37.45814 + parent: 2 +- proto: DrinkBottleBeer + entities: + - uid: 14936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.18922,24.124798 + parent: 2 + - uid: 14939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.56023,24.043417 + parent: 2 + - uid: 14940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.605476,24.224262 + parent: 2 +- proto: DrinkCanPack + entities: + - uid: 14478 + components: + - type: Transform + pos: 95.00258,-47.583176 + parent: 2 +- proto: DrinkColaCan + entities: + - uid: 13243 + components: + - type: Transform + pos: 35.753418,-24.073599 + parent: 2 + - uid: 13244 + components: + - type: Transform + pos: 35.315594,-24.386099 + parent: 2 +- proto: DrinkColaCanEmpty + entities: + - uid: 13245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.26943,-22.839224 + parent: 2 + - uid: 13246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.00584,-23.589224 + parent: 2 + - uid: 13247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.912018,-22.401724 + parent: 2 +- proto: DrinkDemonsBlood + entities: + - uid: 3913 + components: + - type: Transform + pos: 8.645561,-18.242357 + parent: 2 + - uid: 3914 + components: + - type: Transform + pos: 84.51711,-37.536266 + parent: 2 +- proto: DrinkGlass + entities: + - uid: 3915 + components: + - type: Transform + pos: -28.49322,9.524844 + parent: 2 + - uid: 3916 + components: + - type: Transform + pos: -28.27447,9.524844 + parent: 2 + - uid: 3917 + components: + - type: Transform + pos: 7.434128,-6.30023 + parent: 2 + - uid: 3918 + components: + - type: Transform + pos: 7.5905256,-6.527718 + parent: 2 + - uid: 12392 + components: + - type: Transform + pos: 64.61043,41.81616 + parent: 2 + - uid: 12393 + components: + - type: Transform + pos: 64.344604,41.62866 + parent: 2 +- proto: DrinkGoldenCup + entities: + - uid: 3919 + components: + - type: Transform + pos: -62.745186,3.5416727 + parent: 2 +- proto: DrinkGreenTea + entities: + - uid: 3920 + components: + - type: Transform + pos: 58.61704,-3.8319535 + parent: 2 +- proto: DrinkHotCoco + entities: + - uid: 14138 + components: + - type: Transform + pos: 69.84014,-29.21535 + parent: 2 +- proto: DrinkHotCoffee + entities: + - uid: 3921 + components: + - type: Transform + pos: 52.397186,-3.7316165 + parent: 2 + - uid: 14427 + components: + - type: Transform + pos: 88.51153,-46.48895 + parent: 2 +- proto: DrinkMilkCarton + entities: + - uid: 12530 + components: + - type: Transform + pos: 10.618966,7.183319 + parent: 2 + - uid: 12531 + components: + - type: Transform + pos: 10.32187,7.183319 + parent: 2 +- proto: DrinkMug + entities: + - uid: 14428 + components: + - type: Transform + pos: 88.63662,-46.7077 + parent: 2 + - uid: 14429 + components: + - type: Transform + pos: 88.43334,-46.92645 + parent: 2 + - uid: 14430 + components: + - type: Transform + pos: 88.60535,-47.11395 + parent: 2 +- proto: DrinkMugBlue + entities: + - uid: 3922 + components: + - type: Transform + pos: 55.45476,18.535337 + parent: 2 +- proto: DrinkMugDog + entities: + - uid: 3923 + components: + - type: Transform + pos: 55.643284,18.821674 + parent: 2 +- proto: DrinkMugHeart + entities: + - uid: 14135 + components: + - type: Transform + pos: 70.18414,-29.480974 + parent: 2 +- proto: DrinkMugMetal + entities: + - uid: 12501 + components: + - type: Transform + pos: -8.440036,10.657619 + parent: 2 +- proto: DrinkMugRed + entities: + - uid: 3924 + components: + - type: Transform + pos: 55.183292,18.81414 + parent: 2 +- proto: DrinkSilencerGlass + entities: + - uid: 3925 + components: + - type: Transform + pos: 18.315243,-4.6377425 + parent: 2 +- proto: DrinkSodaWaterBottleFull + entities: + - uid: 11599 + components: + - type: Transform + pos: -53.90259,-1.0980163 + parent: 2 + - uid: 11600 + components: + - type: Transform + pos: -53.9495,-0.08239126 + parent: 2 + - uid: 11601 + components: + - type: Transform + pos: -53.91823,0.90198374 + parent: 2 + - uid: 11602 + components: + - type: Transform + pos: -55.20043,1.0269837 + parent: 2 + - uid: 11603 + components: + - type: Transform + pos: -55.325523,-0.11364126 + parent: 2 + - uid: 11604 + components: + - type: Transform + pos: -55.12225,-1.1136413 + parent: 2 + - uid: 14186 + components: + - type: Transform + pos: 48.318462,-11.682365 + parent: 2 + - uid: 14187 + components: + - type: Transform + pos: 48.69374,-11.682365 + parent: 2 + - uid: 14188 + components: + - type: Transform + pos: 48.56865,-11.51049 + parent: 2 + - uid: 15159 + components: + - type: Transform + pos: 38.376553,28.301775 + parent: 2 +- proto: DrinkTeacup + entities: + - uid: 3926 + components: + - type: Transform + pos: 1.7608132,-3.1856463 + parent: 2 + - uid: 3927 + components: + - type: Transform + pos: 1.7750306,-3.4273527 + parent: 2 + - uid: 3928 + components: + - type: Transform + pos: 1.2489648,-3.6264043 + parent: 2 + - uid: 3929 + components: + - type: Transform + pos: 1.5617611,-3.65484 + parent: 2 + - uid: 3930 + components: + - type: Transform + pos: 8.155735,-7.629216 + parent: 2 + - uid: 14487 + components: + - type: Transform + pos: 54.881516,18.8364 + parent: 2 + - uid: 14488 + components: + - type: Transform + pos: 55.08777,18.423899 + parent: 2 + - uid: 14489 + components: + - type: Transform + pos: 53.194016,18.93015 + parent: 2 +- proto: DrinkTeapot + entities: + - uid: 3931 + components: + - type: Transform + pos: 1.3058369,-3.1714284 + parent: 2 + - uid: 3932 + components: + - type: Transform + pos: 3.3177247,-8.274782 + parent: 2 + - uid: 3933 + components: + - type: Transform + pos: 53.99667,18.63105 + parent: 2 +- proto: DrinkVermouthBottleFull + entities: + - uid: 3934 + components: + - type: Transform + pos: 71.729004,-21.216696 + parent: 2 +- proto: DrinkVisualizerTestNot + entities: + - uid: 14848 + components: + - type: Transform + pos: 19.43544,22.585976 + parent: 2 +- proto: DrinkWaterBottleFull + entities: + - uid: 3935 + components: + - type: Transform + pos: -35.726097,-4.3780985 + parent: 2 + - uid: 3936 + components: + - type: Transform + pos: -31.767765,-4.4301815 + parent: 2 + - uid: 3937 + components: + - type: Transform + pos: -27.747372,-4.4432025 + parent: 2 + - uid: 3938 + components: + - type: Transform + pos: 1.8566638,10.639614 + parent: 2 +- proto: DrinkWaterJug + entities: + - uid: 15158 + components: + - type: Transform + pos: 38.62674,28.333025 + parent: 2 +- proto: DrinkWhiskeyGlass + entities: + - uid: 8505 + components: + - type: Transform + pos: 15.362172,-27.21932 + parent: 2 +- proto: DrinkWineBottleFull + entities: + - uid: 2983 + components: + - type: Transform + pos: 15.643632,-26.953695 + parent: 2 + - uid: 4167 + components: + - type: Transform + pos: 1.5623362,-6.9816303 + parent: 2 + - uid: 12923 + components: + - type: Transform + pos: 34.40817,9.86767 + parent: 2 + - uid: 14297 + components: + - type: Transform + pos: 99.53953,-44.122665 + parent: 2 +- proto: DrinkWineGlass + entities: + - uid: 3941 + components: + - type: Transform + pos: 1.2029612,-7.2316303 + parent: 2 + - uid: 3942 + components: + - type: Transform + pos: 1.2498362,-7.5910053 + parent: 2 + - uid: 3984 + components: + - type: Transform + pos: 1.5779612,-7.6066303 + parent: 2 + - uid: 8607 + components: + - type: Transform + pos: 15.893818,-27.297445 + parent: 2 + - uid: 12924 + components: + - type: Transform + pos: 34.7209,9.93017 + parent: 2 + - uid: 12925 + components: + - type: Transform + pos: 34.877266,9.664545 + parent: 2 + - uid: 13333 + components: + - type: Transform + pos: 16.269096,-27.12557 + parent: 2 + - uid: 14298 + components: + - type: Transform + pos: 99.1017,-44.10704 + parent: 2 + - uid: 14299 + components: + - type: Transform + pos: 99.21116,-44.45079 + parent: 2 +- proto: EmergencyLight + entities: + - uid: 13304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 2 + - uid: 13305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 2 + - uid: 13306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-8.5 + parent: 2 + - uid: 13307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 2 + - uid: 13308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 2 +- proto: Emitter + entities: + - uid: 4298 + components: + - type: Transform + pos: 93.5,50.5 + parent: 2 + - uid: 8066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,47.5 + parent: 2 + - uid: 11537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,44.5 + parent: 2 +- proto: EnergyDagger + entities: + - uid: 3946 + components: + - type: Transform + pos: 106.77476,27.75994 + parent: 2 +- proto: ExosuitFabricator + entities: + - uid: 3947 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 3948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 2 + - uid: 3949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 2 + - uid: 12362 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 + - uid: 13313 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 +- proto: FaxMachineBase + entities: + - uid: 3950 + components: + - type: Transform + pos: 58.5,-10.5 + parent: 2 + - type: FaxMachine + name: Главный Врач + - uid: 3951 + components: + - type: Transform + pos: -21.5,8.5 + parent: 2 + - type: FaxMachine + name: Глава Службы Безопасности + - uid: 3952 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 2 + - type: FaxMachine + name: Офис Главы Персонала + - uid: 3953 + components: + - type: Transform + pos: 87.5,-27.5 + parent: 2 + - uid: 4218 + components: + - type: Transform + pos: 86.5,-17.5 + parent: 2 + - uid: 11581 + components: + - type: Transform + pos: -71.5,3.5 + parent: 2 + - type: FaxMachine + name: Мостик + - uid: 12387 + components: + - type: Transform + pos: 87.5,14.5 + parent: 2 + - type: FaxMachine + name: Инженерный отдел + - uid: 12388 + components: + - type: Transform + pos: 72.5,42.5 + parent: 2 + - type: FaxMachine + name: Старший инженер + - uid: 12962 + components: + - type: Transform + pos: -32.5,7.5 + parent: 2 + - type: FaxMachine + name: Бриг + - uid: 12963 + components: + - type: Transform + pos: 44.5,7.5 + parent: 2 + - type: FaxMachine + name: Библиотека + - uid: 12967 + components: + - type: Transform + pos: 48.5,-12.5 + parent: 2 + - type: FaxMachine + name: Мед. Отдел + - uid: 12968 + components: + - type: Transform + pos: 63.5,15.5 + parent: 2 + - type: FaxMachine + name: Научный Директор + - uid: 12972 + components: + - type: Transform + pos: 56.5,14.5 + parent: 2 + - type: FaxMachine + name: Научный отдел + - uid: 12973 + components: + - type: Transform + pos: 82.5,-25.5 + parent: 2 + - type: FaxMachine + name: Офицер Логистики\КМ + - uid: 12975 + components: + - type: Transform + pos: 83.5,-19.5 + parent: 2 + - type: FaxMachine + name: Отдел логистики + - uid: 14495 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 +- proto: FaxMachineCaptain + entities: + - uid: 12959 + components: + - type: Transform + pos: -53.5,5.5 + parent: 2 +- proto: FenceMetalBroken + entities: + - uid: 6938 + components: + - type: Transform + pos: 78.5,-34.5 + parent: 2 +- proto: FenceMetalStraight + entities: + - uid: 6934 + components: + - type: Transform + pos: 78.5,-33.5 + parent: 2 + - uid: 15306 + components: + - type: Transform + pos: 74.5,-32.5 + parent: 2 + - uid: 15308 + components: + - type: Transform + pos: 74.5,-33.5 + parent: 2 +- proto: FenceWoodSmallCorner + entities: + - uid: 14900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,23.5 + parent: 2 +- proto: FenceWoodSmallGate + entities: + - uid: 14898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,22.5 + parent: 2 + - uid: 14899 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 +- proto: filingCabinetDrawerRandom + entities: + - uid: 3296 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 + - uid: 12196 + components: + - type: Transform + pos: 72.5,48.5 + parent: 2 + - uid: 12511 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 + - uid: 13505 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 2 +- proto: filingCabinetRandom + entities: + - uid: 3956 + components: + - type: Transform + pos: 57.5,-14.5 + parent: 2 + - uid: 3959 + components: + - type: Transform + pos: 65.5,17.5 + parent: 2 + - uid: 3960 + components: + - type: Transform + pos: 61.5,7.5 + parent: 2 +- proto: FireAlarm + entities: + - uid: 9129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 4045 + - 4046 + - 4047 + - 4048 + - 4032 + - 4033 + - 4034 + - 4029 + - uid: 15260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 4211 + - 4207 + - uid: 15267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 4208 + - 4211 + - 4209 + - uid: 15271 + components: + - type: Transform + pos: -57.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 4206 + - 4204 + - 4203 + - 4208 + - uid: 15273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 4206 + - 4205 + - 4207 + - uid: 15286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 4205 + - 4204 + - 4203 + - 4202 + - 4201 + - uid: 15294 + components: + - type: Transform + pos: -43.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 4198 + - 4197 + - 4196 + - 4201 + - 4202 + - uid: 15296 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 4196 + - 4197 + - 4198 + - 4192 + - 4193 + - 4194 + - 4195 + - uid: 15298 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 4169 + - 4168 + - 14568 + - 4166 + - 4192 + - 4193 + - 4194 + - 4195 + - uid: 15300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + - type: DeviceList + configurators: + - invalid + devices: + - 3987 + - 4169 + - 4168 + - 14568 + - 4166 + - 4216 + - 13217 + - 13218 + - 13219 + - uid: 15304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 4170 + - uid: 15307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 4171 + - uid: 15309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 4173 + - 4174 + - 4176 + - 4175 + - 4177 + - 4178 + - uid: 15314 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 4159 + - 4170 + - 4160 + - 4161 + - 4162 + - 4171 + - 4174 + - 4173 + - 4172 + - uid: 15317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 4175 + - 4172 + - uid: 15323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 4181 + - uid: 15324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 4179 + - 4177 + - 4178 + - 4181 + - 4180 + - 4182 + - 4186 + - 4185 + - 4184 + - 4183 + - 4187 + - 4188 + - 4190 + - 4191 + - uid: 15337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 12344 + - 12345 + - 12340 + - 12343 + - 3970 + - 3969 + - 3968 + - 3967 + - 3966 + - 3971 + - 3972 + - uid: 15339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 4212 + - 4213 + - 4152 + - 4153 + - 4154 + - 4155 + - 12206 + - 12207 + - 12208 + - 12209 + - 3978 + - 12306 + - 13219 + - 13218 + - 13217 + - 4216 + - 4159 + - 4160 + - 4161 + - 4162 + - 3968 + - 3969 + - uid: 15341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 12311 + - 12310 + - 12308 + - 12309 + - 4164 + - 4165 + - uid: 15343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 4154 + - 4155 + - 4153 + - 4152 + - 4136 + - 4137 + - 4138 + - uid: 15350 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 4130 + - 4131 + - 4134 + - 4135 + - 4138 + - 4137 + - 4136 + - uid: 15352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 4129 + - 4128 + - 4133 + - 4132 + - uid: 15355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 4015 + - 4125 + - 4126 + - uid: 15360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 4146 + - 4147 + - 4149 + - 4148 + - 4145 + - 4144 + - uid: 15367 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 12209 + - 12208 + - 12207 + - 12206 + - 4135 + - 4134 + - 4131 + - 4214 + - 4139 + - 4146 + - 4147 + - 4132 + - 4133 + - 4122 + - 4123 + - 4124 + - 4151 + - uid: 15370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 4108 + - 4109 + - 4114 + - 4115 + - 4116 + - 4111 + - 4112 + - 4113 + - uid: 15372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-9.5 + parent: 2 + - type: DeviceList + configurators: + - invalid + devices: + - 4109 + - 4108 + - 4117 + - 3964 + - 3965 + - 4104 + - 4105 + - uid: 15379 + components: + - type: Transform + pos: 59.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 4083 + - 4082 + - 4085 + - 4086 + - 4102 + - 4101 + - 4097 + - 4098 + - 3964 + - 3965 + - 4103 + - uid: 15393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 4102 + - 4101 + - 4087 + - 4095 + - 4088 + - 4089 + - 4090 + - 4092 + - 4091 + - 4093 + - uid: 15399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 4012 + - 4011 + - 4013 + - 4014 + - 4005 + - 4004 + - 4003 + - 4006 + - 4007 + - 4008 + - uid: 15401 + components: + - type: Transform + pos: 52.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 4122 + - 4123 + - 4124 + - 4015 + - 4113 + - 4112 + - 4111 + - 4106 + - 4107 + - 4014 + - 4013 + - 4011 + - 4012 + - 4100 + - 4099 + - 4118 + - 4119 + - 4121 + - 4120 + - uid: 15403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 4005 + - 4004 + - 4003 + - 4002 + - 4001 + - uid: 15405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 4010 + - 4009 + - 4006 + - 4007 + - 4008 + - uid: 15407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 4002 + - 3961 + - 3962 + - 3963 + - 4010 + - 3991 + - 3990 + - 3989 + - 3988 + - 3992 + - 3993 + - uid: 15421 + components: + - type: Transform + pos: 67.5,14.5 + parent: 2 + - type: DeviceList + devices: + - 3961 + - 3962 + - 3963 + - 3996 + - 4001 + - 4000 + - 3997 + - 3998 + - 3999 + - uid: 15427 + components: + - type: Transform + pos: 69.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 4118 + - 4119 + - 4120 + - 4121 + - 4083 + - 4082 + - 4081 + - 4080 + - 4056 + - 4055 + - 4054 + - 4053 + - uid: 15430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 4052 + - 4051 + - 4050 + - 4049 + - 4056 + - 4055 + - 4054 + - 4053 + - 4045 + - 4046 + - 4047 + - 4048 + - uid: 15443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 4029 + - 4028 + - 4027 + - uid: 15444 + components: + - type: Transform + pos: 85.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 4028 + - 4030 + - 4031 + - uid: 15454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 4031 + - 4026 + - 4025 + - 4024 + - 4023 + - 3986 + - uid: 15470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,24.5 + parent: 2 + - type: DeviceList + devices: + - 4026 + - 4025 + - 4024 + - 4023 + - uid: 15493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 4052 + - 4051 + - 4050 + - 4049 + - 4057 + - 4058 + - 4059 + - 4060 + - 4061 + - 4062 + - 4063 + - 4044 + - uid: 15498 + components: + - type: Transform + pos: 72.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 4079 + - 4076 + - 4077 + - 4078 + - 4059 + - 4058 + - 4057 + - uid: 15518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 12241 + - 4065 + - 12247 + - 4063 + - 4062 + - 4061 + - 4060 + - 3985 +- proto: FireAxe + entities: + - uid: 12986 + components: + - type: Transform + pos: 66.4297,45.091965 + parent: 2 +- proto: Firelock + entities: + - uid: 2602 + components: + - type: Transform + pos: 86.5,-29.5 + parent: 2 + - uid: 5043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,22.5 + parent: 2 + - uid: 12093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 2 + - uid: 12241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15516 + - 15518 + - uid: 12247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15516 + - 15518 + - uid: 13171 + components: + - type: Transform + pos: 40.5,-12.5 + parent: 2 + - uid: 13173 + components: + - type: Transform + pos: 48.5,-20.5 + parent: 2 + - uid: 13176 + components: + - type: Transform + pos: 78.5,-31.5 + parent: 2 + - uid: 13177 + components: + - type: Transform + pos: 88.5,-11.5 + parent: 2 + - uid: 13178 + components: + - type: Transform + pos: 54.5,32.5 + parent: 2 + - uid: 13179 + components: + - type: Transform + pos: 45.5,30.5 + parent: 2 + - uid: 13235 + components: + - type: Transform + pos: 40.5,-23.5 + parent: 2 + - uid: 13236 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 + - uid: 13471 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 2 + - uid: 13472 + components: + - type: Transform + pos: 34.5,-27.5 + parent: 2 + - uid: 13590 + components: + - type: Transform + pos: 41.5,-25.5 + parent: 2 + - uid: 13602 + components: + - type: Transform + pos: 49.5,-26.5 + parent: 2 + - uid: 13969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-28.5 + parent: 2 + - uid: 14261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,-45.5 + parent: 2 + - uid: 14275 + components: + - type: Transform + pos: 101.5,-46.5 + parent: 2 + - uid: 14350 + components: + - type: Transform + pos: 87.5,-40.5 + parent: 2 + - uid: 14501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,-27.5 + parent: 2 + - uid: 14502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 93.5,-24.5 + parent: 2 + - uid: 14606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,26.5 + parent: 2 + - uid: 14796 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - uid: 15098 + components: + - type: Transform + pos: 29.5,30.5 + parent: 2 + - uid: 15396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15395 +- proto: FirelockEdge + entities: + - uid: 3961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15407 + - 15406 + - 15421 + - 15420 + - uid: 3962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15407 + - 15406 + - 15421 + - 15420 + - uid: 3963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15407 + - 15406 + - 15421 + - 15420 + - uid: 3964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15372 + - 15374 + - 15379 + - 15378 + - uid: 3965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15372 + - 15374 + - 15379 + - 15378 + - uid: 3966 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15337 + - 15336 + - uid: 3967 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15337 + - 15336 + - uid: 3968 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15337 + - 15336 + - 15339 + - 15338 + - uid: 3969 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15337 + - 15336 + - 15339 + - 15338 + - uid: 3970 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15337 + - 15336 + - uid: 3971 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15337 + - 15336 + - uid: 3972 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15337 + - 15336 + - uid: 3977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 2 + - uid: 3978 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15339 + - 15338 + - uid: 3979 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 3980 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 3981 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 3982 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 3983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-7.5 + parent: 2 + - uid: 12089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 2 + - uid: 12107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-16.5 + parent: 2 + - uid: 12306 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15339 + - 15338 + - uid: 12308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15341 + - 15340 + - uid: 12309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15341 + - 15340 + - uid: 12310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15341 + - 15340 + - uid: 12311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15341 + - 15340 + - uid: 12312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + - uid: 12340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15337 + - 15336 + - uid: 12343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15337 + - 15336 + - uid: 12344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15337 + - 15336 + - uid: 12345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15337 + - 15336 +- proto: FirelockGlass + entities: + - uid: 3985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11613 + - 15516 + - 15518 + - uid: 3986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15454 + - 11541 + - 15478 + - uid: 3987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15300 + - 15299 + - uid: 3988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15407 + - 15406 + - 15409 + - uid: 3989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15407 + - 15406 + - 15409 + - uid: 3990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15407 + - 15406 + - 15409 + - uid: 3991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15407 + - 15406 + - 15409 + - uid: 3992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15407 + - 15406 + - 15414 + - uid: 3993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15407 + - 15406 + - uid: 3994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15415 + - uid: 3995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15415 + - 15416 + - uid: 3996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15416 + - 15421 + - 15420 + - uid: 3997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15421 + - 15420 + - 15424 + - uid: 3998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15421 + - 15420 + - 15424 + - uid: 3999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15421 + - 15420 + - 15423 + - uid: 4000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15421 + - 15420 + - uid: 4001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15403 + - 15402 + - 15421 + - 15420 + - uid: 4002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15403 + - 15402 + - 15407 + - 15406 + - uid: 4003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15399 + - 15398 + - 15403 + - 15402 + - uid: 4004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15399 + - 15398 + - 15403 + - 15402 + - uid: 4005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15399 + - 15398 + - 15403 + - 15402 + - uid: 4006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15399 + - 15398 + - 15405 + - 15404 + - uid: 4007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15399 + - 15398 + - 15405 + - 15404 + - uid: 4008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15399 + - 15398 + - 15405 + - 15404 + - uid: 4009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15405 + - 15404 + - uid: 4010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15405 + - 15404 + - 15407 + - 15406 + - uid: 4011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15399 + - 15398 + - 15401 + - 15400 + - uid: 4012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15399 + - 15398 + - 15401 + - 15400 + - uid: 4013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15399 + - 15398 + - 15401 + - 15400 + - uid: 4014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15399 + - 15398 + - 15401 + - 15400 + - uid: 4015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15355 + - 15354 + - 15401 + - 15400 + - uid: 4016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15478 + - 15479 + - uid: 4018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15485 + - 15486 + - uid: 4019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15486 + - 15487 + - uid: 4020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15487 + - uid: 4021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15487 + - uid: 4023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15454 + - 11541 + - 15470 + - 15468 + - uid: 4024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15454 + - 11541 + - 15470 + - 15468 + - uid: 4025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15454 + - 11541 + - 15470 + - 15468 + - uid: 4026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15454 + - 11541 + - 15470 + - 15468 + - uid: 4027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15443 + - 15442 + - uid: 4028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15443 + - 15442 + - 15444 + - 15438 + - uid: 4029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9129 + - 15431 + - 15443 + - 15442 + - uid: 4030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15437 + - 15444 + - 15438 + - uid: 4031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15444 + - 15438 + - 15454 + - 11541 + - uid: 4032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9129 + - 15431 + - 15437 + - uid: 4033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9129 + - 15431 + - 15437 + - uid: 4034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9129 + - 15431 + - 15437 + - uid: 4035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15437 + - 15440 + - uid: 4036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15437 + - 15440 + - uid: 4037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15437 + - 15440 + - uid: 4038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15437 + - 15440 + - uid: 4039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15437 + - 15440 + - uid: 4040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15440 + - uid: 4041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15441 + - uid: 4042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15441 + - uid: 4043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15441 + - uid: 4044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15493 + - 15490 + - uid: 4045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15430 + - 15428 + - 9129 + - 15431 + - uid: 4046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15430 + - 15428 + - 9129 + - 15431 + - uid: 4047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15430 + - 15428 + - 9129 + - 15431 + - uid: 4048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15430 + - 15428 + - 9129 + - 15431 + - uid: 4049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15430 + - 15428 + - 15493 + - 15490 + - uid: 4050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15430 + - 15428 + - 15493 + - 15490 + - uid: 4051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15430 + - 15428 + - 15493 + - 15490 + - uid: 4052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15430 + - 15428 + - 15493 + - 15490 + - uid: 4053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15427 + - 15426 + - 15430 + - 15428 + - uid: 4054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15427 + - 15426 + - 15430 + - 15428 + - uid: 4055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15427 + - 15426 + - 15430 + - 15428 + - uid: 4056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15427 + - 15426 + - 15430 + - 15428 + - uid: 4057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15493 + - 15490 + - 15498 + - 15497 + - uid: 4058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15493 + - 15490 + - 15498 + - 15497 + - uid: 4059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15493 + - 15490 + - 15498 + - 15497 + - uid: 4060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15493 + - 15490 + - 15516 + - 15518 + - uid: 4061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15493 + - 15490 + - 15516 + - 15518 + - uid: 4062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15493 + - 15490 + - 15516 + - 15518 + - uid: 4063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15493 + - 15490 + - 15516 + - 15518 + - uid: 4064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15538 + - uid: 4065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15516 + - 15518 + - 15538 + - uid: 4066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15529 + - 15538 + - uid: 4067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15539 + - uid: 4068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,-13.5 + parent: 2 + - uid: 4069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15538 + - 15539 + - uid: 4070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15538 + - 15540 + - uid: 4071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15539 + - 15541 + - uid: 4072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15540 + - 15541 + - uid: 4073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15541 + - 5068 + - uid: 4074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15539 + - 9626 + - uid: 4075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15539 + - 9626 + - uid: 4076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15498 + - 15497 + - 15501 + - uid: 4077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15498 + - 15497 + - 15499 + - uid: 4078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15498 + - 15497 + - 15500 + - uid: 4079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15498 + - 15497 + - uid: 4080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15427 + - 15426 + - uid: 4081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15382 + - 15427 + - 15426 + - uid: 4082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15379 + - 15378 + - 15427 + - 15426 + - uid: 4083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15379 + - 15378 + - 15427 + - 15426 + - uid: 4084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15382 + - 15377 + - uid: 4085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15379 + - 15378 + - 15377 + - uid: 4086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15379 + - 15378 + - 15385 + - uid: 4087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15388 + - 15393 + - 15390 + - uid: 4088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15389 + - 15393 + - 15390 + - uid: 4089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15393 + - 15390 + - 15394 + - uid: 4090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15393 + - 15390 + - 15394 + - uid: 4091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15393 + - 15390 + - 15395 + - uid: 4092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15393 + - 15390 + - 15395 + - uid: 4093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15391 + - 15393 + - 15390 + - uid: 4094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15391 + - uid: 4095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15392 + - 15393 + - 15390 + - uid: 4096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15392 + - uid: 4097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15379 + - 15378 + - 15380 + - uid: 4098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15375 + - 15379 + - 15378 + - uid: 4099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15375 + - 15401 + - 15400 + - uid: 4100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15376 + - 15401 + - 15400 + - uid: 4101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15379 + - 15378 + - 15393 + - 15390 + - uid: 4102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15379 + - 15378 + - 15393 + - 15390 + - uid: 4103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15373 + - 15379 + - 15378 + - uid: 4104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15372 + - 15374 + - 15373 + - uid: 4105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15372 + - 15374 + - 15373 + - uid: 4106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15373 + - 15401 + - 15400 + - uid: 4107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15373 + - 15401 + - 15400 + - uid: 4108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15370 + - 15369 + - 15372 + - 15374 + - uid: 4109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15370 + - 15369 + - 15372 + - 15374 + - uid: 4110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-9.5 + parent: 2 + - uid: 4111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15370 + - 15369 + - 15401 + - 15400 + - uid: 4112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15370 + - 15369 + - 15401 + - 15400 + - uid: 4113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15370 + - 15369 + - 15401 + - 15400 + - uid: 4114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15370 + - 15369 + - 15371 + - uid: 4115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15370 + - 15369 + - 15371 + - uid: 4116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15370 + - 15369 + - 15371 + - uid: 4117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15371 + - 15372 + - 15374 + - uid: 4118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15401 + - 15400 + - 15427 + - 15426 + - uid: 4119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15401 + - 15400 + - 15427 + - 15426 + - uid: 4120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15401 + - 15400 + - 15427 + - 15426 + - uid: 4121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15401 + - 15400 + - 15427 + - 15426 + - uid: 4122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15367 + - 15366 + - 15401 + - 15400 + - uid: 4123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15367 + - 15366 + - 15401 + - 15400 + - uid: 4124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15367 + - 15366 + - 15401 + - 15400 + - uid: 4125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15355 + - 15354 + - 15356 + - uid: 4126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15355 + - 15354 + - uid: 4127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15353 + - uid: 4128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15352 + - 15351 + - 15353 + - uid: 4129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15352 + - 15351 + - uid: 4130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15350 + - 15349 + - uid: 4131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15350 + - 15349 + - 15367 + - 15366 + - uid: 4132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15352 + - 15351 + - 15367 + - 15366 + - uid: 4133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15352 + - 15351 + - 15367 + - 15366 + - uid: 4134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15350 + - 15349 + - 15367 + - 15366 + - uid: 4135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15350 + - 15349 + - 15367 + - 15366 + - uid: 4136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15343 + - 15342 + - 15350 + - 15349 + - uid: 4137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15343 + - 15342 + - 15350 + - 15349 + - uid: 4138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15343 + - 15342 + - 15350 + - 15349 + - uid: 4139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15357 + - 15367 + - 15366 + - uid: 4144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15360 + - 15359 + - uid: 4145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15360 + - 15359 + - uid: 4146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15360 + - 15359 + - 15367 + - 15366 + - uid: 4147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15360 + - 15359 + - 15367 + - 15366 + - uid: 4148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15358 + - 15360 + - 15359 + - uid: 4149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15360 + - 15359 + - 15363 + - uid: 4150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15364 + - uid: 4151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15367 + - 15366 + - uid: 4152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15339 + - 15338 + - 15343 + - 15342 + - uid: 4153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15339 + - 15338 + - 15343 + - 15342 + - uid: 4154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15339 + - 15338 + - 15343 + - 15342 + - uid: 4155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15339 + - 15338 + - 15343 + - 15342 + - uid: 4156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,13.5 + parent: 2 + - uid: 4157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15333 + - uid: 4158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15335 + - uid: 4159 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15314 + - 15313 + - 15339 + - 15338 + - uid: 4160 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15314 + - 15313 + - 15339 + - 15338 + - uid: 4161 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15314 + - 15313 + - 15339 + - 15338 + - uid: 4162 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15314 + - 15313 + - 15339 + - 15338 + - uid: 4163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 2 + - uid: 4164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15341 + - 15340 + - uid: 4165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15341 + - 15340 + - 15368 + - uid: 4166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15298 + - 15297 + - 15300 + - 15299 + - uid: 4168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15298 + - 15297 + - 15300 + - 15299 + - uid: 4169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15298 + - 15297 + - 15300 + - 15299 + - uid: 4170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15304 + - 15302 + - 15314 + - 15313 + - uid: 4171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15307 + - 15305 + - 15314 + - 15313 + - uid: 4172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15314 + - 15313 + - 15317 + - 15316 + - uid: 4173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15314 + - 15313 + - 15309 + - 15315 + - uid: 4174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15314 + - 15313 + - 15309 + - 15315 + - uid: 4175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15309 + - 15315 + - 15317 + - 15316 + - uid: 4176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15309 + - 15315 + - 15318 + - uid: 4177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15309 + - 15315 + - 15324 + - 15325 + - uid: 4178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15309 + - 15315 + - 15324 + - 15325 + - uid: 4179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15321 + - 15324 + - 15325 + - uid: 4180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15319 + - 15324 + - 15325 + - uid: 4181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15323 + - 15322 + - 15324 + - 15325 + - uid: 4182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15324 + - 15325 + - uid: 4183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15324 + - 15325 + - 15329 + - uid: 4184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15324 + - 15325 + - 15328 + - uid: 4185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15324 + - 15325 + - 15327 + - uid: 4186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15324 + - 15325 + - 15326 + - uid: 4187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15324 + - 15325 + - 15329 + - uid: 4188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15324 + - 15325 + - 15331 + - uid: 4189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15331 + - 15330 + - uid: 4190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15324 + - 15325 + - uid: 4191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15324 + - 15325 + - 15332 + - uid: 4192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15296 + - 15295 + - 15298 + - 15297 + - uid: 4193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15296 + - 15295 + - 15298 + - 15297 + - uid: 4194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15296 + - 15295 + - 15298 + - 15297 + - uid: 4195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15296 + - 15295 + - 15298 + - 15297 + - uid: 4196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15294 + - 15293 + - 15296 + - 15295 + - uid: 4197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15294 + - 15293 + - 15296 + - 15295 + - uid: 4198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15294 + - 15293 + - 15296 + - 15295 + - uid: 4201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15286 + - 15285 + - 15294 + - 15293 + - uid: 4202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15286 + - 15285 + - 15294 + - 15293 + - uid: 4203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15271 + - 15270 + - 15286 + - 15285 + - uid: 4204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15271 + - 15270 + - 15286 + - 15285 + - uid: 4205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15272 + - 15273 + - 15286 + - 15285 + - uid: 4206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15271 + - 15270 + - 15272 + - 15273 + - uid: 4207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15260 + - 15261 + - 15272 + - 15273 + - uid: 4208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15267 + - 15266 + - 15271 + - 15270 + - uid: 4209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15267 + - 15266 + - 15268 + - uid: 4210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15268 + - 15269 + - uid: 4211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15260 + - 15261 + - 15267 + - 15266 + - uid: 4212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15333 + - 15339 + - 15338 + - uid: 4213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15333 + - 15339 + - 15338 + - uid: 4214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15367 + - 15366 + - 15368 + - uid: 4215 + components: + - type: Transform + pos: 76.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15540 + - uid: 4216 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15300 + - 15299 + - 15339 + - 15338 + - uid: 12166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15479 + - 15485 + - uid: 12169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15485 + - uid: 12206 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15339 + - 15338 + - 15367 + - 15366 + - uid: 12207 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15339 + - 15338 + - 15367 + - 15366 + - uid: 12208 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15339 + - 15338 + - 15367 + - 15366 + - uid: 12209 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15339 + - 15338 + - 15367 + - 15366 + - uid: 13217 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15300 + - 15299 + - 15339 + - 15338 + - uid: 13218 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15300 + - 15299 + - 15339 + - 15338 + - uid: 13219 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15300 + - 15299 + - 15339 + - 15338 + - uid: 14568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15298 + - 15297 + - 15300 + - 15299 + - uid: 15365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15363 + - 15364 + - uid: 15455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15479 + - uid: 15504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15501 +- proto: Fireplace + entities: + - uid: 4217 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 12981 + components: + - type: Transform + pos: 63.5,47.5 + parent: 2 + - uid: 14263 + components: + - type: Transform + pos: 99.5,-41.5 + parent: 2 + - uid: 14787 + components: + - type: Transform + pos: 20.5,28.5 + parent: 2 +- proto: FitnessWeightLifter + entities: + - uid: 10775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,33.5 + parent: 2 + - uid: 12551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,33.5 + parent: 2 +- proto: FitnessWeightsBench1 + entities: + - uid: 12545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,33.5 + parent: 2 + - uid: 12557 + components: + - type: Transform + pos: 45.5,33.5 + parent: 2 +- proto: FlatpackerMachineCircuitboard + entities: + - uid: 219 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FlippoLighter + entities: + - uid: 11606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.467,2.4019837 + parent: 2 +- proto: FloorDrain + entities: + - uid: 4221 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 4222 + components: + - type: Transform + pos: 49.5,-3.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 4223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,21.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 4224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-2.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 4225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-10.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 6768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-19.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 12134 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 12135 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 12280 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 14314 + components: + - type: Transform + pos: 102.5,-48.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloorLavaEntity + entities: + - uid: 4226 + components: + - type: Transform + pos: 76.5,21.5 + parent: 2 + - uid: 4227 + components: + - type: Transform + pos: 75.5,21.5 + parent: 2 +- proto: FloorTileItemDirty + entities: + - uid: 13653 + components: + - type: Transform + pos: 44.972748,-25.85292 + parent: 2 + - uid: 13654 + components: + - type: Transform + pos: 46.677143,-24.774796 + parent: 2 + - uid: 13655 + components: + - type: Transform + pos: 47.068058,-22.29042 + parent: 2 + - uid: 13656 + components: + - type: Transform + pos: 42.877438,-22.44667 + parent: 2 + - uid: 13657 + components: + - type: Transform + pos: 43.956367,-23.337296 + parent: 2 + - uid: 13658 + components: + - type: Transform + pos: 41.89233,-24.493546 + parent: 2 +- proto: FloorTileItemMining + entities: + - uid: 4228 + components: + - type: Transform + pos: 75.54273,-45.444878 + parent: 2 + - uid: 4229 + components: + - type: Transform + pos: 74.49586,-46.460503 + parent: 2 + - uid: 4230 + components: + - type: Transform + pos: 73.52711,-45.507378 + parent: 2 +- proto: FloorWaterEntity + entities: + - uid: 4231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,42.5 + parent: 2 + - uid: 4232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,41.5 + parent: 2 + - uid: 4233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,42.5 + parent: 2 + - uid: 4234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,41.5 + parent: 2 + - uid: 14872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,22.5 + parent: 2 + - uid: 14873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,22.5 + parent: 2 + - uid: 14874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,22.5 + parent: 2 + - uid: 14877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,22.5 + parent: 2 + - uid: 14879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,22.5 + parent: 2 + - uid: 14880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,22.5 + parent: 2 +- proto: FloraTree02 + entities: + - uid: 4235 + components: + - type: Transform + pos: -70.27842,1.8428295 + parent: 2 +- proto: FoamCrossbow + entities: + - uid: 13919 + components: + - type: Transform + pos: 71.87267,-45.047043 + parent: 2 + - uid: 13920 + components: + - type: Transform + pos: 71.87267,-45.047043 + parent: 2 + - uid: 13921 + components: + - type: Transform + pos: 71.87267,-45.047043 + parent: 2 + - uid: 13922 + components: + - type: Transform + pos: 71.87267,-45.047043 + parent: 2 +- proto: FolderSpawner + entities: + - uid: 4236 + components: + - type: Transform + pos: 54.563107,18.618225 + parent: 2 + - uid: 4237 + components: + - type: Transform + pos: 54.744087,18.527802 + parent: 2 + - uid: 4238 + components: + - type: Transform + pos: 64.335304,9.623833 + parent: 2 + - uid: 4239 + components: + - type: Transform + pos: 64.569855,9.483208 + parent: 2 + - uid: 4240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.38584,5.677499 + parent: 2 + - uid: 4241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.57348,5.489999 + parent: 2 + - uid: 4242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.417114,5.239999 + parent: 2 + - uid: 4243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.551285,-6.4637785 + parent: 2 + - uid: 4244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.562143,-6.6156883 + parent: 2 + - uid: 4245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.507849,-6.8218517 + parent: 2 + - uid: 11587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.652405,0.41760874 + parent: 2 + - uid: 11588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.62113,-0.47301626 + parent: 2 + - uid: 11589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.66804,-1.5042663 + parent: 2 + - uid: 11590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.48189,-1.5511413 + parent: 2 + - uid: 11591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.544437,-0.67614126 + parent: 2 + - uid: 11592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.513165,0.55823374 + parent: 2 + - uid: 12936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.566574,12.133363 + parent: 2 + - uid: 12969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.393166,16.664963 + parent: 2 + - uid: 12970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.494957,-3.3243897 + parent: 2 + - uid: 12976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.518936,46.632347 + parent: 2 + - uid: 12977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.65967,46.616722 + parent: 2 + - uid: 12978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.76912,46.710472 + parent: 2 + - uid: 13496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.514656,-22.490614 + parent: 2 +- proto: FoodApple + entities: + - uid: 4246 + components: + - type: Transform + pos: 86.51582,-19.475159 + parent: 2 + - uid: 4247 + components: + - type: Transform + pos: 86.34695,-19.193909 + parent: 2 +- proto: FoodBakedBunHoney + entities: + - uid: 4248 + components: + - type: Transform + pos: -22.650827,4.714241 + parent: 2 + - uid: 4249 + components: + - type: Transform + pos: -22.322702,4.464241 + parent: 2 +- proto: FoodBakedCookie + entities: + - uid: 15412 + components: + - type: Transform + pos: 82.53458,-47.555412 + parent: 2 +- proto: FoodBakedPancake + entities: + - uid: 4250 + components: + - type: Transform + pos: 8.437884,-7.4629445 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: FoodBoxDonkpocket + entities: + - uid: 4251 + components: + - type: Transform + pos: 57.751324,-28.748795 + parent: 2 +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 4252 + components: + - type: Transform + pos: 57.26695,-28.73317 + parent: 2 + - uid: 4253 + components: + - type: Transform + pos: 2.8598366,-6.642563 + parent: 2 +- proto: FoodBoxDonut + entities: + - uid: 4254 + components: + - type: Transform + pos: 52.600174,-4.1564937 + parent: 2 + - uid: 4255 + components: + - type: Transform + pos: -17.44286,-4.463825 + parent: 2 + - uid: 4256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.535963,-3.5666614 + parent: 2 + - uid: 4257 + components: + - type: Transform + pos: -33.00936,6.6812496 + parent: 2 + - uid: 8608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.878181,-23.891195 + parent: 2 +- proto: FoodBoxPizzaFilled + entities: + - uid: 14331 + components: + - type: Transform + pos: 98.58151,-44.13808 + parent: 2 +- proto: FoodBreadMoldySlice + entities: + - uid: 12926 + components: + - type: Transform + pos: 35.299458,9.727045 + parent: 2 + - uid: 12927 + components: + - type: Transform + pos: 35.440186,9.570795 + parent: 2 + - uid: 13335 + components: + - type: Transform + pos: 16.58183,-27.46932 + parent: 2 + - uid: 13340 + components: + - type: Transform + pos: 17.598211,-27.234945 + parent: 2 + - uid: 13341 + components: + - type: Transform + pos: 17.410572,-27.43807 + parent: 2 +- proto: FoodBreadVolcanic + entities: + - uid: 14477 + components: + - type: Transform + pos: 93.44819,-40.321903 + parent: 2 +- proto: FoodCakeBatter + entities: + - uid: 4143 + components: + - type: Transform + pos: 11.010391,5.728097 + parent: 2 +- proto: FoodCakeSuppermatterSlice + entities: + - uid: 15408 + components: + - type: Transform + pos: 82.67564,-47.34925 + parent: 2 +- proto: FoodCartHot + entities: + - uid: 15151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,32.5 + parent: 2 +- proto: FoodDoughCornmeal + entities: + - uid: 12210 + components: + - type: Transform + pos: 11.010391,6.509347 + parent: 2 +- proto: FoodDoughFlat + entities: + - uid: 4140 + components: + - type: Transform + pos: 11.432581,6.056222 + parent: 2 +- proto: FoodDoughPie + entities: + - uid: 12516 + components: + - type: Transform + pos: 10.775842,6.149972 + parent: 2 +- proto: FoodDoughTortilla + entities: + - uid: 4142 + components: + - type: Transform + pos: 11.62022,5.634347 + parent: 2 +- proto: FoodMeat + entities: + - uid: 12114 + components: + - type: Transform + parent: 12113 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12115 + components: + - type: Transform + parent: 12113 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12116 + components: + - type: Transform + parent: 12113 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12117 + components: + - type: Transform + parent: 12113 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatBear + entities: + - uid: 12127 + components: + - type: Transform + parent: 12113 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12128 + components: + - type: Transform + parent: 12113 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12129 + components: + - type: Transform + parent: 12113 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12130 + components: + - type: Transform + parent: 12113 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatChicken + entities: + - uid: 12121 + components: + - type: Transform + parent: 12113 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12122 + components: + - type: Transform + parent: 12113 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12123 + components: + - type: Transform + parent: 12113 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12125 + components: + - type: Transform + parent: 12113 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatKebab + entities: + - uid: 4258 + components: + - type: Transform + pos: 16.452843,-8.237406 + parent: 2 +- proto: FoodPieBananaCream + entities: + - uid: 4259 + components: + - type: Transform + pos: 18.126347,-4.3451743 + parent: 2 +- proto: FoodPieBananaCreamSlice + entities: + - uid: 4260 + components: + - type: Transform + pos: 1.504889,-3.3562624 + parent: 2 + - uid: 4261 + components: + - type: Transform + pos: 1.504889,-3.3562624 + parent: 2 + - uid: 4262 + components: + - type: Transform + pos: 1.504889,-3.3562624 + parent: 2 + - uid: 4263 + components: + - type: Transform + pos: 1.504889,-3.3562624 + parent: 2 + - uid: 4264 + components: + - type: Transform + pos: 1.504889,-3.3562624 + parent: 2 + - uid: 4265 + components: + - type: Transform + pos: 1.504889,-3.3562624 + parent: 2 +- proto: FoodPizzaMeatSlice + entities: + - uid: 4266 + components: + - type: Transform + pos: 57.324142,-27.962175 + parent: 2 + - uid: 4267 + components: + - type: Transform + pos: 57.70497,-27.998407 + parent: 2 + - uid: 4268 + components: + - type: Transform + pos: 5.254614,-3.157204 + parent: 2 + - uid: 4269 + components: + - type: Transform + pos: 5.482102,-3.214076 + parent: 2 + - uid: 4270 + components: + - type: Transform + pos: 5.2403965,-3.370474 + parent: 2 +- proto: FoodPizzaMoldySlice + entities: + - uid: 13366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.035294,-27.422445 + parent: 2 +- proto: FoodPlate + entities: + - uid: 4271 + components: + - type: Transform + pos: 57.487354,-27.94406 + parent: 2 + - uid: 4272 + components: + - type: Transform + pos: 8.468532,-7.4017277 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: FoodPoppy + entities: + - uid: 4273 + components: + - type: Transform + pos: 28.237709,10.701619 + parent: 2 + - uid: 4274 + components: + - type: Transform + pos: 28.518959,10.404744 + parent: 2 + - uid: 4275 + components: + - type: Transform + pos: 28.753334,10.748494 + parent: 2 +- proto: FoodSnackAncientPizza + entities: + - uid: 3390 + components: + - type: Transform + pos: 16.644377,-24.141195 + parent: 2 +- proto: FoodSnackChocolateBar + entities: + - uid: 12118 + components: + - type: Transform + parent: 12113 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12119 + components: + - type: Transform + parent: 12113 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12120 + components: + - type: Transform + parent: 12113 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12124 + components: + - type: Transform + parent: 12113 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12126 + components: + - type: Transform + parent: 12113 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodTartMime + entities: + - uid: 4276 + components: + - type: Transform + pos: 18.762386,-4.5148306 + parent: 2 +- proto: FoodWatermelon + entities: + - uid: 14560 + components: + - type: Transform + pos: 84.681335,-37.331436 + parent: 2 +- proto: FultonBeacon + entities: + - uid: 4277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.26835,-15.914747 + parent: 2 +- proto: GasFilter + entities: + - uid: 4278 + components: + - type: Transform + pos: 49.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasFilterFlipped + entities: + - uid: 4281 + components: + - type: Transform + pos: 74.5,26.5 + parent: 2 + - uid: 4282 + components: + - type: Transform + pos: 74.5,28.5 + parent: 2 + - uid: 4283 + components: + - type: Transform + pos: 74.5,30.5 + parent: 2 + - uid: 4284 + components: + - type: Transform + pos: 74.5,32.5 + parent: 2 + - uid: 4285 + components: + - type: Transform + pos: 74.5,34.5 + parent: 2 +- proto: GasMinerCarbonDioxide + entities: + - uid: 4286 + components: + - type: Transform + pos: 69.5,29.5 + parent: 2 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 4287 + components: + - type: Transform + pos: 69.5,25.5 + parent: 2 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 4288 + components: + - type: Transform + pos: 69.5,27.5 + parent: 2 +- proto: GasMinerPlasma + entities: + - uid: 4289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,33.5 + parent: 2 +- proto: GasMinerWaterVapor + entities: + - uid: 4290 + components: + - type: Transform + pos: 69.5,31.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 4291 + components: + - type: Transform + pos: 75.5,25.5 + parent: 2 + - uid: 4364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,42.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.7 + inletOneConcentration: 0.3 + targetPressure: 121.325 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasOutletInjector + entities: + - uid: 4292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,25.5 + parent: 2 + - uid: 4293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,27.5 + parent: 2 + - uid: 4294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,29.5 + parent: 2 + - uid: 4295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,31.5 + parent: 2 + - uid: 4296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,33.5 + parent: 2 + - uid: 12645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' +- proto: GasPassiveGate + entities: + - uid: 4300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPassiveVent + entities: + - uid: 2047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,29.5 + parent: 2 + - uid: 4301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,6.5 + parent: 2 + - uid: 4302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,4.5 + parent: 2 + - uid: 4303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,24.5 + parent: 2 + - uid: 4304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,31.5 + parent: 2 + - uid: 4305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,29.5 + parent: 2 + - uid: 4306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,27.5 + parent: 2 + - uid: 4307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,25.5 + parent: 2 + - uid: 4308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,34.5 + parent: 2 + - uid: 4309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,35.5 + parent: 2 + - uid: 4310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,33.5 + parent: 2 + - uid: 4311 + components: + - type: Transform + pos: 72.5,38.5 + parent: 2 + - uid: 6205 + components: + - type: Transform + pos: 60.5,43.5 + parent: 2 +- proto: GasPipeBend + entities: + - uid: 51 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 103.5,45.5 + parent: 2 + - uid: 3308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,23.5 + parent: 2 + - uid: 4317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-12.5 + parent: 2 + - uid: 4319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-10.5 + parent: 2 + - uid: 4320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-11.5 + parent: 2 + - uid: 4321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,23.5 + parent: 2 + - uid: 4323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,25.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + pos: 63.5,25.5 + parent: 2 + - uid: 4325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,37.5 + parent: 2 + - uid: 4326 + components: + - type: Transform + pos: 74.5,37.5 + parent: 2 + - uid: 4327 + components: + - type: Transform + pos: 75.5,27.5 + parent: 2 + - uid: 4328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,26.5 + parent: 2 + - uid: 4329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,28.5 + parent: 2 + - uid: 4330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,30.5 + parent: 2 + - uid: 4331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,32.5 + parent: 2 + - uid: 4332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,24.5 + parent: 2 + - uid: 4333 + components: + - type: Transform + pos: 79.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,34.5 + parent: 2 + - uid: 4344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4349 + components: + - type: Transform + pos: 87.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4353 + components: + - type: Transform + pos: 87.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4355 + components: + - type: Transform + pos: 86.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4366 + components: + - type: Transform + pos: 63.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4367 + components: + - type: Transform + pos: 64.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4372 + components: + - type: Transform + pos: 89.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4374 + components: + - type: Transform + pos: 91.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4377 + components: + - type: Transform + pos: 88.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4383 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4387 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4388 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4392 + components: + - type: Transform + pos: 50.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4405 + components: + - type: Transform + pos: 73.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4406 + components: + - type: Transform + pos: 65.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4411 + components: + - type: Transform + pos: 87.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4418 + components: + - type: Transform + pos: 85.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4420 + components: + - type: Transform + pos: 89.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4440 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4442 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4452 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4460 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4465 + components: + - type: Transform + pos: -23.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4476 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4477 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4480 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4481 + components: + - type: Transform + pos: -52.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4483 + components: + - type: Transform + pos: -54.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4485 + components: + - type: Transform + pos: -59.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4487 + components: + - type: Transform + pos: -65.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4491 + components: + - type: Transform + pos: -50.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4494 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4497 + components: + - type: Transform + pos: 79.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4498 + components: + - type: Transform + pos: 80.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4499 + components: + - type: Transform + pos: 84.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4597 + components: + - type: Transform + pos: 85.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4601 + components: + - type: Transform + pos: -3.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5975 + components: + - type: Transform + pos: 84.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6787 + components: + - type: Transform + pos: 103.5,51.5 + parent: 2 + - uid: 6809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 101.5,45.5 + parent: 2 + - uid: 6904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 102.5,45.5 + parent: 2 + - uid: 6906 + components: + - type: Transform + pos: 102.5,50.5 + parent: 2 + - uid: 8100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10773 + components: + - type: Transform + pos: 65.5,42.5 + parent: 2 + - uid: 10989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 101.5,50.5 + parent: 2 + - uid: 12618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 12619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 12631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 14624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,29.5 + parent: 2 +- proto: GasPipeBroken + entities: + - uid: 13608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-24.5 + parent: 2 + - uid: 13609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-24.5 + parent: 2 + - uid: 13610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-24.5 + parent: 2 +- proto: GasPipeFourway + entities: + - uid: 4500 + components: + - type: Transform + pos: 81.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4501 + components: + - type: Transform + pos: 74.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4502 + components: + - type: Transform + pos: 46.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4503 + components: + - type: Transform + pos: 17.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4504 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4505 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4506 + components: + - type: Transform + pos: 62.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4508 + components: + - type: Transform + pos: 61.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4509 + components: + - type: Transform + pos: 61.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4510 + components: + - type: Transform + pos: 60.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4511 + components: + - type: Transform + pos: 57.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4512 + components: + - type: Transform + pos: 58.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4513 + components: + - type: Transform + pos: -9.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4514 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4515 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4516 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4517 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4518 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeStraight + entities: + - uid: 4453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4522 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4523 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4524 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4525 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4527 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4528 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,6.5 + parent: 2 + - uid: 4535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,6.5 + parent: 2 + - uid: 4536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,4.5 + parent: 2 + - uid: 4537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,4.5 + parent: 2 + - uid: 4538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,6.5 + parent: 2 + - uid: 4539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,4.5 + parent: 2 + - uid: 4540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,23.5 + parent: 2 + - uid: 4541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,25.5 + parent: 2 + - uid: 4542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,37.5 + parent: 2 + - uid: 4543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,31.5 + parent: 2 + - uid: 4544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,31.5 + parent: 2 + - uid: 4545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,29.5 + parent: 2 + - uid: 4546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,29.5 + parent: 2 + - uid: 4547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,27.5 + parent: 2 + - uid: 4548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,27.5 + parent: 2 + - uid: 4549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,25.5 + parent: 2 + - uid: 4550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,25.5 + parent: 2 + - uid: 4551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,35.5 + parent: 2 + - uid: 4552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,34.5 + parent: 2 + - uid: 4553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,34.5 + parent: 2 + - uid: 4554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,33.5 + parent: 2 + - uid: 4555 + components: + - type: Transform + pos: 74.5,35.5 + parent: 2 + - uid: 4556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,27.5 + parent: 2 + - uid: 4557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,26.5 + parent: 2 + - uid: 4558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,25.5 + parent: 2 + - uid: 4559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,32.5 + parent: 2 + - uid: 4560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,32.5 + parent: 2 + - uid: 4561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,32.5 + parent: 2 + - uid: 4562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,30.5 + parent: 2 + - uid: 4563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,30.5 + parent: 2 + - uid: 4564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,30.5 + parent: 2 + - uid: 4565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,28.5 + parent: 2 + - uid: 4566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,28.5 + parent: 2 + - uid: 4567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,28.5 + parent: 2 + - uid: 4568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,26.5 + parent: 2 + - uid: 4569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,26.5 + parent: 2 + - uid: 4570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,26.5 + parent: 2 + - uid: 4571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,26.5 + parent: 2 + - uid: 4572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,28.5 + parent: 2 + - uid: 4573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,30.5 + parent: 2 + - uid: 4574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,32.5 + parent: 2 + - uid: 4575 + components: + - type: Transform + pos: 74.5,33.5 + parent: 2 + - uid: 4576 + components: + - type: Transform + pos: 74.5,27.5 + parent: 2 + - uid: 4577 + components: + - type: Transform + pos: 74.5,29.5 + parent: 2 + - uid: 4578 + components: + - type: Transform + pos: 74.5,31.5 + parent: 2 + - uid: 4579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,33.5 + parent: 2 + - uid: 4580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,24.5 + parent: 2 + - uid: 4582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,23.5 + parent: 2 + - uid: 4583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,24.5 + parent: 2 + - uid: 4584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,25.5 + parent: 2 + - uid: 4585 + components: + - type: Transform + pos: 81.5,25.5 + parent: 2 + - uid: 4586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,24.5 + parent: 2 + - uid: 4587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,24.5 + parent: 2 + - uid: 4588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,24.5 + parent: 2 + - uid: 4589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,24.5 + parent: 2 + - uid: 4590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,24.5 + parent: 2 + - uid: 4591 + components: + - type: Transform + pos: 74.5,25.5 + parent: 2 + - uid: 4592 + components: + - type: Transform + pos: 79.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,34.5 + parent: 2 + - uid: 4594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,34.5 + parent: 2 + - uid: 4595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,34.5 + parent: 2 + - uid: 4596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4625 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4626 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4627 + components: + - type: Transform + pos: 81.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4640 + components: + - type: Transform + pos: 84.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4641 + components: + - type: Transform + pos: 84.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4642 + components: + - type: Transform + pos: 84.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4643 + components: + - type: Transform + pos: 87.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4644 + components: + - type: Transform + pos: 87.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4645 + components: + - type: Transform + pos: 87.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4656 + components: + - type: Transform + pos: 86.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4657 + components: + - type: Transform + pos: 86.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4671 + components: + - type: Transform + pos: 86.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4672 + components: + - type: Transform + pos: 87.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4673 + components: + - type: Transform + pos: 86.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4688 + components: + - type: Transform + pos: 85.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4689 + components: + - type: Transform + pos: 85.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4720 + components: + - type: Transform + pos: 86.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4721 + components: + - type: Transform + pos: 87.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4735 + components: + - type: Transform + pos: 84.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4750 + components: + - type: Transform + pos: 89.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4751 + components: + - type: Transform + pos: 89.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4752 + components: + - type: Transform + pos: 88.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4753 + components: + - type: Transform + pos: 88.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4754 + components: + - type: Transform + pos: 78.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4755 + components: + - type: Transform + pos: 78.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4756 + components: + - type: Transform + pos: 78.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4757 + components: + - type: Transform + pos: 78.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4758 + components: + - type: Transform + pos: 78.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4759 + components: + - type: Transform + pos: 78.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4760 + components: + - type: Transform + pos: 78.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4761 + components: + - type: Transform + pos: 78.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4762 + components: + - type: Transform + pos: 78.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4763 + components: + - type: Transform + pos: 78.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4764 + components: + - type: Transform + pos: 81.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4765 + components: + - type: Transform + pos: 81.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4766 + components: + - type: Transform + pos: 81.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4767 + components: + - type: Transform + pos: 81.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4768 + components: + - type: Transform + pos: 81.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4769 + components: + - type: Transform + pos: 81.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4770 + components: + - type: Transform + pos: 81.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4771 + components: + - type: Transform + pos: 81.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4772 + components: + - type: Transform + pos: 81.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4773 + components: + - type: Transform + pos: 81.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4774 + components: + - type: Transform + pos: 81.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4775 + components: + - type: Transform + pos: 81.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4812 + components: + - type: Transform + pos: 78.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4813 + components: + - type: Transform + pos: 81.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4823 + components: + - type: Transform + pos: 75.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4824 + components: + - type: Transform + pos: 75.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4825 + components: + - type: Transform + pos: 75.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4826 + components: + - type: Transform + pos: 74.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4827 + components: + - type: Transform + pos: 74.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4828 + components: + - type: Transform + pos: 74.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4829 + components: + - type: Transform + pos: 74.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4830 + components: + - type: Transform + pos: 75.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4831 + components: + - type: Transform + pos: 74.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4832 + components: + - type: Transform + pos: 75.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4833 + components: + - type: Transform + pos: 74.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4834 + components: + - type: Transform + pos: 75.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4935 + components: + - type: Transform + pos: 67.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4936 + components: + - type: Transform + pos: 67.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4952 + components: + - type: Transform + pos: 67.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4953 + components: + - type: Transform + pos: 67.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4954 + components: + - type: Transform + pos: 67.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4955 + components: + - type: Transform + pos: 66.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4956 + components: + - type: Transform + pos: 66.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4957 + components: + - type: Transform + pos: 62.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4958 + components: + - type: Transform + pos: 62.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4959 + components: + - type: Transform + pos: 62.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4960 + components: + - type: Transform + pos: 62.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4961 + components: + - type: Transform + pos: 62.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4962 + components: + - type: Transform + pos: 62.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4963 + components: + - type: Transform + pos: 61.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4964 + components: + - type: Transform + pos: 61.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4965 + components: + - type: Transform + pos: 61.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4971 + components: + - type: Transform + pos: 54.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4972 + components: + - type: Transform + pos: 54.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4973 + components: + - type: Transform + pos: 54.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4974 + components: + - type: Transform + pos: 54.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4975 + components: + - type: Transform + pos: 54.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4976 + components: + - type: Transform + pos: 53.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4977 + components: + - type: Transform + pos: 53.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4978 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4979 + components: + - type: Transform + pos: 49.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4980 + components: + - type: Transform + pos: 49.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4981 + components: + - type: Transform + pos: 49.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4982 + components: + - type: Transform + pos: 49.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4983 + components: + - type: Transform + pos: 49.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4984 + components: + - type: Transform + pos: 46.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4985 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4986 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4987 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4988 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4989 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4990 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4991 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4992 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4993 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4994 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4995 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4996 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4997 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4998 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4999 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5015 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5044 + components: + - type: Transform + pos: 61.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5045 + components: + - type: Transform + pos: 61.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5046 + components: + - type: Transform + pos: 62.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5047 + components: + - type: Transform + pos: 62.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5048 + components: + - type: Transform + pos: 62.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5049 + components: + - type: Transform + pos: 61.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5058 + components: + - type: Transform + pos: 51.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5059 + components: + - type: Transform + pos: 48.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5060 + components: + - type: Transform + pos: 48.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5061 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5149 + components: + - type: Transform + pos: 46.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5177 + components: + - type: Transform + pos: 56.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5178 + components: + - type: Transform + pos: 55.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5179 + components: + - type: Transform + pos: 55.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5180 + components: + - type: Transform + pos: 56.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5181 + components: + - type: Transform + pos: 56.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5182 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5183 + components: + - type: Transform + pos: 55.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5189 + components: + - type: Transform + pos: 59.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5190 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5191 + components: + - type: Transform + pos: 58.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5193 + components: + - type: Transform + pos: 58.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5194 + components: + - type: Transform + pos: 58.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5195 + components: + - type: Transform + pos: 58.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5196 + components: + - type: Transform + pos: 58.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5197 + components: + - type: Transform + pos: 58.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5198 + components: + - type: Transform + pos: 59.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5199 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5200 + components: + - type: Transform + pos: 59.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5201 + components: + - type: Transform + pos: 59.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5202 + components: + - type: Transform + pos: 59.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5203 + components: + - type: Transform + pos: 59.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5204 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5205 + components: + - type: Transform + pos: 59.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5220 + components: + - type: Transform + pos: 65.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5221 + components: + - type: Transform + pos: 65.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5222 + components: + - type: Transform + pos: 65.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5223 + components: + - type: Transform + pos: 65.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5224 + components: + - type: Transform + pos: 63.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5225 + components: + - type: Transform + pos: 63.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5226 + components: + - type: Transform + pos: 63.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5268 + components: + - type: Transform + pos: 58.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5269 + components: + - type: Transform + pos: 58.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5270 + components: + - type: Transform + pos: 59.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5287 + components: + - type: Transform + pos: 73.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5316 + components: + - type: Transform + pos: 73.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5317 + components: + - type: Transform + pos: 73.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5318 + components: + - type: Transform + pos: 73.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5319 + components: + - type: Transform + pos: 73.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5320 + components: + - type: Transform + pos: 74.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5321 + components: + - type: Transform + pos: 74.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5334 + components: + - type: Transform + pos: 91.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5335 + components: + - type: Transform + pos: 91.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5336 + components: + - type: Transform + pos: 89.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 100.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 93.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 97.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 100.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5356 + components: + - type: Transform + pos: 81.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5357 + components: + - type: Transform + pos: 81.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5358 + components: + - type: Transform + pos: 85.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5384 + components: + - type: Transform + pos: 40.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5385 + components: + - type: Transform + pos: 40.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5386 + components: + - type: Transform + pos: 40.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5387 + components: + - type: Transform + pos: 40.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5388 + components: + - type: Transform + pos: 41.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5389 + components: + - type: Transform + pos: 41.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5390 + components: + - type: Transform + pos: 41.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5450 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5451 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5452 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5458 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5459 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5460 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5461 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5462 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5463 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5476 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5478 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5479 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5481 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5482 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5483 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5484 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5485 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5486 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5532 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5533 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5534 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5535 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5536 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5537 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5538 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5539 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5541 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5564 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5575 + components: + - type: Transform + pos: -3.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5576 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5577 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5578 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5587 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5588 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5589 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5590 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5591 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5592 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5593 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5594 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5595 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5596 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5597 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5598 + components: + - type: Transform + pos: -11.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5599 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5600 + components: + - type: Transform + pos: -11.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5601 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5602 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5603 + components: + - type: Transform + pos: -9.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5604 + components: + - type: Transform + pos: -9.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5636 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5637 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5638 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5639 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5640 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5641 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5642 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5643 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5644 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5645 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5685 + components: + - type: Transform + pos: -38.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5686 + components: + - type: Transform + pos: -38.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5687 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5806 + components: + - type: Transform + pos: -52.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5807 + components: + - type: Transform + pos: -52.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5808 + components: + - type: Transform + pos: -52.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5809 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5810 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5858 + components: + - type: Transform + pos: -68.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5859 + components: + - type: Transform + pos: -68.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5860 + components: + - type: Transform + pos: -68.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5861 + components: + - type: Transform + pos: -68.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5862 + components: + - type: Transform + pos: -68.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5863 + components: + - type: Transform + pos: -68.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5864 + components: + - type: Transform + pos: -68.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5865 + components: + - type: Transform + pos: -67.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5866 + components: + - type: Transform + pos: -67.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5867 + components: + - type: Transform + pos: -67.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5868 + components: + - type: Transform + pos: -67.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5869 + components: + - type: Transform + pos: -67.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5870 + components: + - type: Transform + pos: -67.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5871 + components: + - type: Transform + pos: -67.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5872 + components: + - type: Transform + pos: -68.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5899 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5900 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5901 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5904 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5905 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5906 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5907 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5908 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5910 + components: + - type: Transform + pos: 73.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5912 + components: + - type: Transform + pos: 76.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5913 + components: + - type: Transform + pos: 76.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5914 + components: + - type: Transform + pos: 76.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5915 + components: + - type: Transform + pos: 76.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5916 + components: + - type: Transform + pos: 77.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5917 + components: + - type: Transform + pos: 77.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5918 + components: + - type: Transform + pos: 77.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5919 + components: + - type: Transform + pos: 76.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5920 + components: + - type: Transform + pos: 76.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5921 + components: + - type: Transform + pos: 76.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5922 + components: + - type: Transform + pos: 76.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5925 + components: + - type: Transform + pos: 79.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5926 + components: + - type: Transform + pos: 79.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5927 + components: + - type: Transform + pos: 79.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5928 + components: + - type: Transform + pos: 79.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5929 + components: + - type: Transform + pos: 79.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5930 + components: + - type: Transform + pos: 79.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5931 + components: + - type: Transform + pos: 79.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5932 + components: + - type: Transform + pos: 79.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5933 + components: + - type: Transform + pos: 79.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5934 + components: + - type: Transform + pos: 79.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5939 + components: + - type: Transform + pos: 80.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5940 + components: + - type: Transform + pos: 80.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5941 + components: + - type: Transform + pos: 80.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5942 + components: + - type: Transform + pos: 80.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5943 + components: + - type: Transform + pos: 80.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5944 + components: + - type: Transform + pos: 80.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5945 + components: + - type: Transform + pos: 80.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5946 + components: + - type: Transform + pos: 80.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5947 + components: + - type: Transform + pos: 84.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5948 + components: + - type: Transform + pos: 84.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5973 + components: + - type: Transform + pos: 85.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 102.5,51.5 + parent: 2 + - uid: 6786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 100.5,51.5 + parent: 2 + - uid: 6788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,45.5 + parent: 2 + - uid: 6939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9128 + components: + - type: Transform + pos: 61.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 101.5,51.5 + parent: 2 + - uid: 10984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 100.5,45.5 + parent: 2 + - uid: 10988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,51.5 + parent: 2 + - uid: 12615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12617 + components: + - type: Transform + pos: 77.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 12620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 12621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 12622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 12623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 12624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 12625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 12626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 12627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 12628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 12629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 12630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 12632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 12633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 12634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 12635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 12636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 12637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 12638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' + - uid: 13611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-22.5 + parent: 2 + - uid: 14572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,29.5 + parent: 2 + - uid: 15381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeTJunction + entities: + - uid: 5950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5952 + components: + - type: Transform + pos: 45.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5953 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5954 + components: + - type: Transform + pos: 67.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5955 + components: + - type: Transform + pos: 66.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-10.5 + parent: 2 + - uid: 5957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-10.5 + parent: 2 + - uid: 5958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-11.5 + parent: 2 + - uid: 5959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-12.5 + parent: 2 + - uid: 5960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,24.5 + parent: 2 + - uid: 5962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,24.5 + parent: 2 + - uid: 5963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,23.5 + parent: 2 + - uid: 5965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,23.5 + parent: 2 + - uid: 5966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5988 + components: + - type: Transform + pos: 75.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5990 + components: + - type: Transform + pos: 70.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5992 + components: + - type: Transform + pos: 65.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6000 + components: + - type: Transform + pos: 90.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6017 + components: + - type: Transform + pos: 68.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6018 + components: + - type: Transform + pos: 62.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6019 + components: + - type: Transform + pos: 54.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6020 + components: + - type: Transform + pos: 43.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6022 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6025 + components: + - type: Transform + pos: 61.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6026 + components: + - type: Transform + pos: 53.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6028 + components: + - type: Transform + pos: 49.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6031 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6032 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6034 + components: + - type: Transform + pos: 24.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6035 + components: + - type: Transform + pos: 19.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6036 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6039 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6040 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6042 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6043 + components: + - type: Transform + pos: 56.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6044 + components: + - type: Transform + pos: 57.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6048 + components: + - type: Transform + pos: 48.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6049 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6070 + components: + - type: Transform + pos: 58.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6077 + components: + - type: Transform + pos: 59.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6080 + components: + - type: Transform + pos: 68.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6094 + components: + - type: Transform + pos: 83.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6098 + components: + - type: Transform + pos: 84.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6099 + components: + - type: Transform + pos: 85.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6100 + components: + - type: Transform + pos: 82.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6102 + components: + - type: Transform + pos: 97.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6106 + components: + - type: Transform + pos: 77.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6114 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6115 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6118 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6119 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6120 + components: + - type: Transform + pos: 16.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6123 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6124 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6125 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6129 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6131 + components: + - type: Transform + pos: -14.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6132 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6133 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6134 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6137 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6138 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6139 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6140 + components: + - type: Transform + pos: -36.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6142 + components: + - type: Transform + pos: -35.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6145 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6146 + components: + - type: Transform + pos: -37.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6151 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6153 + components: + - type: Transform + pos: -43.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6157 + components: + - type: Transform + pos: -57.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6164 + components: + - type: Transform + pos: -55.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7290 + components: + - type: Transform + pos: 60.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,29.5 + parent: 2 + - uid: 15287 + components: + - type: Transform + pos: -53.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPort + entities: + - uid: 6168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-12.5 + parent: 2 + - uid: 6169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,4.5 + parent: 2 + - uid: 6170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,6.5 + parent: 2 + - uid: 6171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,23.5 + parent: 2 + - uid: 6172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,41.5 + parent: 2 + - uid: 13270 + components: + - type: Transform + pos: 42.5,-21.5 + parent: 2 +- proto: GasPressurePump + entities: + - uid: 6181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6182 + components: + - type: Transform + pos: 79.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6183 + components: + - type: Transform + pos: 51.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-12.5 + parent: 2 + - uid: 6185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,6.5 + parent: 2 + - uid: 6186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,31.5 + parent: 2 + - uid: 6187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,29.5 + parent: 2 + - uid: 6188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,27.5 + parent: 2 + - uid: 6189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,25.5 + parent: 2 + - uid: 6190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,35.5 + parent: 2 + - uid: 6191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,33.5 + parent: 2 + - uid: 6192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,29.5 + parent: 2 +- proto: GasThermoMachineFreezer + entities: + - uid: 6194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-11.5 + parent: 2 + - uid: 6195 + components: + - type: Transform + pos: 76.5,37.5 + parent: 2 + - uid: 12609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,43.5 + parent: 2 + - uid: 12648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,44.5 + parent: 2 +- proto: GasThermoMachineHeater + entities: + - uid: 6196 + components: + - type: Transform + pos: 75.5,37.5 + parent: 2 + - uid: 14689 + components: + - type: Transform + pos: 23.5,30.5 + parent: 2 + - type: GasThermoMachine + targetTemperature: 333.15 +- proto: GasValve + entities: + - uid: 6197 + components: + - type: Transform + pos: 74.5,36.5 + parent: 2 + - type: GasValve + open: False + - uid: 6198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,24.5 + parent: 2 + - type: GasValve + open: False +- proto: GasVentPump + entities: + - uid: 4603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15374 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6199 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15340 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15398 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6201 + components: + - type: Transform + pos: 77.5,26.5 + parent: 2 + - uid: 6202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15468 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11541 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6204 + components: + - type: Transform + pos: 82.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15479 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15487 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15486 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15485 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15441 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15437 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6213 + components: + - type: Transform + pos: 88.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15440 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15499 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6215 + components: + - type: Transform + pos: 74.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15500 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11613 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6217 + components: + - type: Transform + pos: 58.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15378 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15382 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15376 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15375 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15373 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15369 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15377 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6224 + components: + - type: Transform + pos: 58.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15392 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15371 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15380 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15385 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15391 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15395 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15394 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15388 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15389 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15392 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15392 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6236 + components: + - type: Transform + pos: 64.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15415 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15416 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6238 + components: + - type: Transform + pos: 72.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15424 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15420 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6240 + components: + - type: Transform + pos: 69.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15420 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6241 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15406 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15406 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15409 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15414 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6245 + components: + - type: Transform + pos: 48.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15404 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15402 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15442 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15431 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15490 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6251 + components: + - type: Transform + pos: 74.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15529 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15538 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9626 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 101.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9626 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15539 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15541 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5068 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15516 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15497 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15426 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15400 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15356 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15354 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15351 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15353 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15358 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15363 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15364 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15340 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15357 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15368 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15349 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15342 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6276 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15342 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15349 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6278 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15338 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15335 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6280 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15336 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15366 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15338 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15302 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6284 + components: + - type: Transform + pos: -9.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15305 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6285 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15318 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15316 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15315 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15313 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15299 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15319 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15321 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15322 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15326 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15327 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15328 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6296 + components: + - type: Transform + pos: -28.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15325 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15330 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6299 + components: + - type: Transform + pos: -39.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15331 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15329 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6301 + components: + - type: Transform + pos: -24.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15332 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15297 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15295 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15293 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15261 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15261 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6307 + components: + - type: Transform + pos: -61.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15266 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15268 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15269 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15270 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15272 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15428 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15390 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15478 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15423 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15540 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15406 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15285 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15359 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentScrubber + entities: + - uid: 4343 + components: + - type: Transform + pos: 81.5,26.5 + parent: 2 + - uid: 6319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15442 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6320 + components: + - type: Transform + pos: 57.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15392 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11541 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15468 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15479 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6325 + components: + - type: Transform + pos: 75.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15485 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6326 + components: + - type: Transform + pos: 69.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15486 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6327 + components: + - type: Transform + pos: 66.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15487 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15441 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15437 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15440 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6334 + components: + - type: Transform + pos: 75.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15500 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15499 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11613 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15382 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15376 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15375 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15373 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15369 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6342 + components: + - type: Transform + pos: 66.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15377 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15371 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15380 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15385 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15391 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15394 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15395 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15389 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15388 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15392 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15392 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15398 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6356 + components: + - type: Transform + pos: 46.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15404 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6357 + components: + - type: Transform + pos: 57.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15402 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15406 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15420 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15416 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6361 + components: + - type: Transform + pos: 63.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15415 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15406 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15409 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15414 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6365 + components: + - type: Transform + pos: 71.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15424 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15431 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15490 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6369 + components: + - type: Transform + pos: 75.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15538 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6370 + components: + - type: Transform + pos: 73.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15529 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15541 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6372 + components: + - type: Transform + pos: 86.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15539 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6373 + components: + - type: Transform + pos: 93.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9626 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 101.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9626 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5068 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15516 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6377 + components: + - type: Transform + pos: 76.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15497 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6378 + components: + - type: Transform + pos: 68.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15426 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6379 + components: + - type: Transform + pos: 43.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15400 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15354 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15356 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15351 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15353 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15364 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6385 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15363 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15358 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15340 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15340 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15357 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15368 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6393 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15338 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15299 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15335 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6396 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15336 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6397 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15366 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6398 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15338 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15302 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6400 + components: + - type: Transform + pos: -11.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15305 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15318 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15316 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6403 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15315 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6404 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15313 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15319 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15321 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15322 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6409 + components: + - type: Transform + pos: -27.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15326 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15327 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15328 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6413 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15325 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15329 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15330 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6416 + components: + - type: Transform + pos: -40.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15331 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6417 + components: + - type: Transform + pos: -25.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15332 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6418 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15297 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6419 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15295 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6420 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15293 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15261 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15261 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6423 + components: + - type: Transform + pos: -61.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15266 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15269 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6425 + components: + - type: Transform + pos: -57.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15268 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6426 + components: + - type: Transform + pos: -57.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15270 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6427 + components: + - type: Transform + pos: -58.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15272 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15428 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15390 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15478 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15423 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15420 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6433 + components: + - type: Transform + pos: 79.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15540 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15406 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6766 + components: + - type: Transform + pos: 44.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15374 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15378 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15289 + components: + - type: Transform + pos: -51.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15285 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15359 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasVolumePump + entities: + - uid: 4280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,51.5 + parent: 2 + - uid: 4297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 98.5,45.5 + parent: 2 + - uid: 6436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,34.5 + parent: 2 + - uid: 6439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,4.5 + parent: 2 + - uid: 12614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#008000FF' +- proto: Gateway + entities: + - uid: 6440 + components: + - type: Transform + pos: 52.5,25.5 + parent: 2 +- proto: Gauze1 + entities: + - uid: 13636 + components: + - type: Transform + pos: 39.52813,-29.901411 + parent: 2 +- proto: Gavel + entities: + - uid: 12341 + components: + - type: Transform + pos: -0.72265697,8.618493 + parent: 2 +- proto: GavelBlock + entities: + - uid: 6441 + components: + - type: Transform + pos: -1.0731118,8.570146 + parent: 2 +- proto: GeigerCounterWallMount + entities: + - uid: 12650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,47.5 + parent: 2 +- proto: Girder + entities: + - uid: 13614 + components: + - type: Transform + pos: 45.5,-23.5 + parent: 2 + - uid: 13615 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 2 +- proto: GlassBoxLaserFilled + entities: + - uid: 10324 + components: + - type: Transform + pos: -57.5,9.5 + parent: 2 +- proto: GlimmerDrain + entities: + - uid: 6442 + components: + - type: Transform + pos: 63.5,25.5 + parent: 2 + - type: ApcPowerReceiver + powerDisabled: True +- proto: GlimmerProber + entities: + - uid: 6443 + components: + - type: Transform + pos: 65.5,25.5 + parent: 2 +- proto: GrassBattlemap + entities: + - uid: 14991 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 +- proto: GravityGenerator + entities: + - uid: 6444 + components: + - type: Transform + pos: 89.5,1.5 + parent: 2 +- proto: Grille + entities: + - uid: 3391 + components: + - type: Transform + pos: 18.5,27.5 + parent: 2 + - uid: 4017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,44.5 + parent: 2 + - uid: 4360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,44.5 + parent: 2 + - uid: 4684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,42.5 + parent: 2 + - uid: 4685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,43.5 + parent: 2 + - uid: 4686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,45.5 + parent: 2 + - uid: 6445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,14.5 + parent: 2 + - uid: 6446 + components: + - type: Transform + pos: -37.5,-1.5 + parent: 2 + - uid: 6447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,14.5 + parent: 2 + - uid: 6448 + components: + - type: Transform + pos: -51.5,-9.5 + parent: 2 + - uid: 6449 + components: + - type: Transform + pos: -44.5,11.5 + parent: 2 + - uid: 6450 + components: + - type: Transform + pos: -43.5,11.5 + parent: 2 + - uid: 6451 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 6452 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 6453 + components: + - type: Transform + pos: -42.5,11.5 + parent: 2 + - uid: 6454 + components: + - type: Transform + pos: -51.5,14.5 + parent: 2 + - uid: 6455 + components: + - type: Transform + pos: -38.5,14.5 + parent: 2 + - uid: 6456 + components: + - type: Transform + pos: -50.5,14.5 + parent: 2 + - uid: 6457 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 6458 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 2 + - uid: 6459 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 2 + - uid: 6460 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 2 + - uid: 6461 + components: + - type: Transform + pos: -47.5,-9.5 + parent: 2 + - uid: 6462 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 2 + - uid: 6463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-1.5 + parent: 2 + - uid: 6464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 2 + - uid: 6465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,14.5 + parent: 2 + - uid: 6466 + components: + - type: Transform + pos: -62.5,10.5 + parent: 2 + - uid: 6467 + components: + - type: Transform + pos: -63.5,10.5 + parent: 2 + - uid: 6468 + components: + - type: Transform + pos: 48.5,4.5 + parent: 2 + - uid: 6469 + components: + - type: Transform + pos: 48.5,3.5 + parent: 2 + - uid: 6470 + components: + - type: Transform + pos: -39.5,14.5 + parent: 2 + - uid: 6471 + components: + - type: Transform + pos: -63.5,-8.5 + parent: 2 + - uid: 6472 + components: + - type: Transform + pos: -62.5,-8.5 + parent: 2 + - uid: 6473 + components: + - type: Transform + pos: -61.5,-8.5 + parent: 2 + - uid: 6474 + components: + - type: Transform + pos: -70.5,-7.5 + parent: 2 + - uid: 6475 + components: + - type: Transform + pos: -71.5,-7.5 + parent: 2 + - uid: 6476 + components: + - type: Transform + pos: -71.5,-6.5 + parent: 2 + - uid: 6477 + components: + - type: Transform + pos: -72.5,-6.5 + parent: 2 + - uid: 6478 + components: + - type: Transform + pos: -73.5,-5.5 + parent: 2 + - uid: 6479 + components: + - type: Transform + pos: -74.5,-5.5 + parent: 2 + - uid: 6480 + components: + - type: Transform + pos: -74.5,-4.5 + parent: 2 + - uid: 6481 + components: + - type: Transform + pos: -75.5,-3.5 + parent: 2 + - uid: 6482 + components: + - type: Transform + pos: -75.5,-2.5 + parent: 2 + - uid: 6483 + components: + - type: Transform + pos: -76.5,-2.5 + parent: 2 + - uid: 6484 + components: + - type: Transform + pos: -76.5,-0.5 + parent: 2 + - uid: 6485 + components: + - type: Transform + pos: -76.5,0.5 + parent: 2 + - uid: 6486 + components: + - type: Transform + pos: -76.5,1.5 + parent: 2 + - uid: 6487 + components: + - type: Transform + pos: -76.5,2.5 + parent: 2 + - uid: 6488 + components: + - type: Transform + pos: -76.5,4.5 + parent: 2 + - uid: 6489 + components: + - type: Transform + pos: -75.5,4.5 + parent: 2 + - uid: 6490 + components: + - type: Transform + pos: -75.5,5.5 + parent: 2 + - uid: 6491 + components: + - type: Transform + pos: -74.5,6.5 + parent: 2 + - uid: 6492 + components: + - type: Transform + pos: -74.5,7.5 + parent: 2 + - uid: 6493 + components: + - type: Transform + pos: -73.5,7.5 + parent: 2 + - uid: 6494 + components: + - type: Transform + pos: -72.5,8.5 + parent: 2 + - uid: 6495 + components: + - type: Transform + pos: -71.5,8.5 + parent: 2 + - uid: 6496 + components: + - type: Transform + pos: -71.5,9.5 + parent: 2 + - uid: 6497 + components: + - type: Transform + pos: -70.5,9.5 + parent: 2 + - uid: 6498 + components: + - type: Transform + pos: -61.5,10.5 + parent: 2 + - uid: 6499 + components: + - type: Transform + pos: -51.5,-5.5 + parent: 2 + - uid: 6500 + components: + - type: Transform + pos: -58.5,-8.5 + parent: 2 + - uid: 6501 + components: + - type: Transform + pos: -57.5,-8.5 + parent: 2 + - uid: 6502 + components: + - type: Transform + pos: -56.5,-8.5 + parent: 2 + - uid: 6503 + components: + - type: Transform + pos: -45.5,11.5 + parent: 2 + - uid: 6504 + components: + - type: Transform + pos: -53.5,11.5 + parent: 2 + - uid: 6505 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 6506 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 + - uid: 6507 + components: + - type: Transform + pos: -45.5,9.5 + parent: 2 + - uid: 6508 + components: + - type: Transform + pos: -49.5,11.5 + parent: 2 + - uid: 6509 + components: + - type: Transform + pos: -44.5,9.5 + parent: 2 + - uid: 6510 + components: + - type: Transform + pos: -50.5,11.5 + parent: 2 + - uid: 6511 + components: + - type: Transform + pos: -48.5,11.5 + parent: 2 + - uid: 6512 + components: + - type: Transform + pos: -46.5,11.5 + parent: 2 + - uid: 6513 + components: + - type: Transform + pos: -47.5,11.5 + parent: 2 + - uid: 6514 + components: + - type: Transform + pos: 96.5,40.5 + parent: 2 + - uid: 6515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,-13.5 + parent: 2 + - uid: 6516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-12.5 + parent: 2 + - uid: 6517 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 2 + - uid: 6518 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 2 + - uid: 6519 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 2 + - uid: 6520 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 + - uid: 6521 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 2 + - uid: 6522 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - uid: 6523 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 + - uid: 6524 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 6525 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 + - uid: 6526 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 6527 + components: + - type: Transform + pos: -49.5,14.5 + parent: 2 + - uid: 6528 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 6529 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - uid: 6531 + components: + - type: Transform + pos: -46.5,14.5 + parent: 2 + - uid: 6532 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 6533 + components: + - type: Transform + pos: -47.5,14.5 + parent: 2 + - uid: 6534 + components: + - type: Transform + pos: -42.5,14.5 + parent: 2 + - uid: 6535 + components: + - type: Transform + pos: -44.5,14.5 + parent: 2 + - uid: 6536 + components: + - type: Transform + pos: -52.5,14.5 + parent: 2 + - uid: 6537 + components: + - type: Transform + pos: -43.5,14.5 + parent: 2 + - uid: 6538 + components: + - type: Transform + pos: -37.5,14.5 + parent: 2 + - uid: 6539 + components: + - type: Transform + pos: -41.5,14.5 + parent: 2 + - uid: 6540 + components: + - type: Transform + pos: -40.5,14.5 + parent: 2 + - uid: 6541 + components: + - type: Transform + pos: -36.5,14.5 + parent: 2 + - uid: 6542 + components: + - type: Transform + pos: -53.5,14.5 + parent: 2 + - uid: 6543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-12.5 + parent: 2 + - uid: 6544 + components: + - type: Transform + pos: -45.5,14.5 + parent: 2 + - uid: 6546 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 2 + - uid: 6547 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 + - uid: 6548 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - uid: 6549 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - uid: 6550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-12.5 + parent: 2 + - uid: 6551 + components: + - type: Transform + pos: -18.5,14.5 + parent: 2 + - uid: 6552 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 + - uid: 6553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,-11.5 + parent: 2 + - uid: 6554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-11.5 + parent: 2 + - uid: 6555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,-12.5 + parent: 2 + - uid: 6556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,-12.5 + parent: 2 + - uid: 6557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,-13.5 + parent: 2 + - uid: 6558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,-11.5 + parent: 2 + - uid: 6559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,-8.5 + parent: 2 + - uid: 6560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,-7.5 + parent: 2 + - uid: 6561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,-9.5 + parent: 2 + - uid: 6562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,-8.5 + parent: 2 + - uid: 6563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,-10.5 + parent: 2 + - uid: 6564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,-9.5 + parent: 2 + - uid: 6565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,-10.5 + parent: 2 + - uid: 6566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-12.5 + parent: 2 + - uid: 6567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,13.5 + parent: 2 + - uid: 6568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,9.5 + parent: 2 + - uid: 6569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,10.5 + parent: 2 + - uid: 6570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,10.5 + parent: 2 + - uid: 6571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,11.5 + parent: 2 + - uid: 6572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,11.5 + parent: 2 + - uid: 6573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,12.5 + parent: 2 + - uid: 6574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,12.5 + parent: 2 + - uid: 6575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,13.5 + parent: 2 + - uid: 6576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,13.5 + parent: 2 + - uid: 6577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,14.5 + parent: 2 + - uid: 6578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,14.5 + parent: 2 + - uid: 6579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,15.5 + parent: 2 + - uid: 6580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,15.5 + parent: 2 + - uid: 6581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,13.5 + parent: 2 + - uid: 6582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,13.5 + parent: 2 + - uid: 6583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,13.5 + parent: 2 + - uid: 6584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,13.5 + parent: 2 + - uid: 6585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,13.5 + parent: 2 + - uid: 6586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,13.5 + parent: 2 + - uid: 6587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,13.5 + parent: 2 + - uid: 6588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,13.5 + parent: 2 + - uid: 6589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,6.5 + parent: 2 + - uid: 6590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,5.5 + parent: 2 + - uid: 6591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,5.5 + parent: 2 + - uid: 6592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,4.5 + parent: 2 + - uid: 6593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,3.5 + parent: 2 + - uid: 6594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,2.5 + parent: 2 + - uid: 6595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,1.5 + parent: 2 + - uid: 6596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,0.5 + parent: 2 + - uid: 6597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,-0.5 + parent: 2 + - uid: 6598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,-1.5 + parent: 2 + - uid: 6599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,-2.5 + parent: 2 + - uid: 6600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,-3.5 + parent: 2 + - uid: 6601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,-3.5 + parent: 2 + - uid: 6602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,-4.5 + parent: 2 + - uid: 6603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-11.5 + parent: 2 + - uid: 6604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-11.5 + parent: 2 + - uid: 6605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-11.5 + parent: 2 + - uid: 6606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-11.5 + parent: 2 + - uid: 6607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-11.5 + parent: 2 + - uid: 6608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-11.5 + parent: 2 + - uid: 6609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-11.5 + parent: 2 + - uid: 6610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-11.5 + parent: 2 + - uid: 6611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-12.5 + parent: 2 + - uid: 6612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-12.5 + parent: 2 + - uid: 6613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-12.5 + parent: 2 + - uid: 6614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-12.5 + parent: 2 + - uid: 6615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-12.5 + parent: 2 + - uid: 6616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-12.5 + parent: 2 + - uid: 6617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-12.5 + parent: 2 + - uid: 6618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-12.5 + parent: 2 + - uid: 6619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-12.5 + parent: 2 + - uid: 6620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-12.5 + parent: 2 + - uid: 6621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-12.5 + parent: 2 + - uid: 6622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-12.5 + parent: 2 + - uid: 6623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-12.5 + parent: 2 + - uid: 6624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-12.5 + parent: 2 + - uid: 6625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-12.5 + parent: 2 + - uid: 6626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-12.5 + parent: 2 + - uid: 6627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-12.5 + parent: 2 + - uid: 6628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-12.5 + parent: 2 + - uid: 6629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-12.5 + parent: 2 + - uid: 6630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-12.5 + parent: 2 + - uid: 6631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-12.5 + parent: 2 + - uid: 6632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-12.5 + parent: 2 + - uid: 6633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-12.5 + parent: 2 + - uid: 6634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-12.5 + parent: 2 + - uid: 6635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-12.5 + parent: 2 + - uid: 6636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-12.5 + parent: 2 + - uid: 6637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-12.5 + parent: 2 + - uid: 6638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-12.5 + parent: 2 + - uid: 6639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-12.5 + parent: 2 + - uid: 6640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,14.5 + parent: 2 + - uid: 6641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,14.5 + parent: 2 + - uid: 6642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,14.5 + parent: 2 + - uid: 6643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,14.5 + parent: 2 + - uid: 6644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,14.5 + parent: 2 + - uid: 6645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,14.5 + parent: 2 + - uid: 6646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,14.5 + parent: 2 + - uid: 6647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,14.5 + parent: 2 + - uid: 6648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,14.5 + parent: 2 + - uid: 6649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,14.5 + parent: 2 + - uid: 6650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,14.5 + parent: 2 + - uid: 6651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,14.5 + parent: 2 + - uid: 6652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 2 + - uid: 6653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 2 + - uid: 6654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,14.5 + parent: 2 + - uid: 6655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-12.5 + parent: 2 + - uid: 6656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-12.5 + parent: 2 + - uid: 6657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-12.5 + parent: 2 + - uid: 6658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-12.5 + parent: 2 + - uid: 6659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-12.5 + parent: 2 + - uid: 6660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,14.5 + parent: 2 + - uid: 6661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,14.5 + parent: 2 + - uid: 6662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,14.5 + parent: 2 + - uid: 6663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,14.5 + parent: 2 + - uid: 6664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,14.5 + parent: 2 + - uid: 6665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,14.5 + parent: 2 + - uid: 6666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,3.5 + parent: 2 + - uid: 6667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-9.5 + parent: 2 + - uid: 6668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-9.5 + parent: 2 + - uid: 6669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-15.5 + parent: 2 + - uid: 6670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-16.5 + parent: 2 + - uid: 6671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-18.5 + parent: 2 + - uid: 6672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-19.5 + parent: 2 + - uid: 6673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-22.5 + parent: 2 + - uid: 6674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-23.5 + parent: 2 + - uid: 6675 + components: + - type: Transform + pos: 59.5,-25.5 + parent: 2 + - uid: 6676 + components: + - type: Transform + pos: 63.5,-6.5 + parent: 2 + - uid: 6677 + components: + - type: Transform + pos: 63.5,-8.5 + parent: 2 + - uid: 6678 + components: + - type: Transform + pos: 62.5,-25.5 + parent: 2 + - uid: 6679 + components: + - type: Transform + pos: 59.5,-22.5 + parent: 2 + - uid: 6680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,1.5 + parent: 2 + - uid: 6681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,3.5 + parent: 2 + - uid: 6682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,1.5 + parent: 2 + - uid: 6683 + components: + - type: Transform + pos: 96.5,20.5 + parent: 2 + - uid: 6684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,19.5 + parent: 2 + - uid: 6685 + components: + - type: Transform + pos: 63.5,-11.5 + parent: 2 + - uid: 6686 + components: + - type: Transform + pos: 63.5,-12.5 + parent: 2 + - uid: 6687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,1.5 + parent: 2 + - uid: 6688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,1.5 + parent: 2 + - uid: 6689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,1.5 + parent: 2 + - uid: 6690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,1.5 + parent: 2 + - uid: 6691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,3.5 + parent: 2 + - uid: 6692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,2.5 + parent: 2 + - uid: 6693 + components: + - type: Transform + pos: 57.5,-1.5 + parent: 2 + - uid: 6694 + components: + - type: Transform + pos: 58.5,-1.5 + parent: 2 + - uid: 6695 + components: + - type: Transform + pos: -39.5,1.5 + parent: 2 + - uid: 6696 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 6697 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - uid: 6700 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 2 + - uid: 6701 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 2 + - uid: 6704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,3.5 + parent: 2 + - uid: 6705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,11.5 + parent: 2 + - uid: 6707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,14.5 + parent: 2 + - uid: 6708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,14.5 + parent: 2 + - uid: 6709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,14.5 + parent: 2 + - uid: 6710 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 2 + - uid: 6711 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 + - uid: 6712 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 6713 + components: + - type: Transform + pos: 51.5,10.5 + parent: 2 + - uid: 6714 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 6715 + components: + - type: Transform + pos: 64.5,6.5 + parent: 2 + - uid: 6716 + components: + - type: Transform + pos: 64.5,5.5 + parent: 2 + - uid: 6717 + components: + - type: Transform + pos: 64.5,4.5 + parent: 2 + - uid: 6718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,14.5 + parent: 2 + - uid: 6719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,14.5 + parent: 2 + - uid: 6720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,14.5 + parent: 2 + - uid: 6721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,15.5 + parent: 2 + - uid: 6722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,3.5 + parent: 2 + - uid: 6723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,3.5 + parent: 2 + - uid: 6724 + components: + - type: Transform + pos: 62.5,25.5 + parent: 2 + - uid: 6725 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 + - uid: 6726 + components: + - type: Transform + pos: 62.5,23.5 + parent: 2 + - uid: 6727 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - uid: 6728 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - uid: 6729 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - uid: 6730 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 2 + - uid: 6731 + components: + - type: Transform + pos: 89.5,22.5 + parent: 2 + - uid: 6732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,22.5 + parent: 2 + - uid: 6733 + components: + - type: Transform + pos: 73.5,38.5 + parent: 2 + - uid: 6734 + components: + - type: Transform + pos: 72.5,31.5 + parent: 2 + - uid: 6735 + components: + - type: Transform + pos: 72.5,29.5 + parent: 2 + - uid: 6736 + components: + - type: Transform + pos: 72.5,27.5 + parent: 2 + - uid: 6737 + components: + - type: Transform + pos: 72.5,25.5 + parent: 2 + - uid: 6738 + components: + - type: Transform + pos: 72.5,37.5 + parent: 2 + - uid: 6739 + components: + - type: Transform + pos: 73.5,37.5 + parent: 2 + - uid: 6740 + components: + - type: Transform + pos: 79.5,-18.5 + parent: 2 + - uid: 6741 + components: + - type: Transform + pos: 80.5,-18.5 + parent: 2 + - uid: 6742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,22.5 + parent: 2 + - uid: 6743 + components: + - type: Transform + pos: 57.5,50.5 + parent: 2 + - uid: 6744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,33.5 + parent: 2 + - uid: 6745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,34.5 + parent: 2 + - uid: 6746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,35.5 + parent: 2 + - uid: 6747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,15.5 + parent: 2 + - uid: 6748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,14.5 + parent: 2 + - uid: 6749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,15.5 + parent: 2 + - uid: 6750 + components: + - type: Transform + pos: 90.5,22.5 + parent: 2 + - uid: 6751 + components: + - type: Transform + pos: 90.5,34.5 + parent: 2 + - uid: 6752 + components: + - type: Transform + pos: 89.5,34.5 + parent: 2 + - uid: 6753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,14.5 + parent: 2 + - uid: 6754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,18.5 + parent: 2 + - uid: 6755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,17.5 + parent: 2 + - uid: 6756 + components: + - type: Transform + pos: 72.5,-22.5 + parent: 2 + - uid: 6757 + components: + - type: Transform + pos: 73.5,-22.5 + parent: 2 + - uid: 6758 + components: + - type: Transform + pos: 75.5,-22.5 + parent: 2 + - uid: 6759 + components: + - type: Transform + pos: 76.5,-22.5 + parent: 2 + - uid: 6760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-19.5 + parent: 2 + - uid: 6761 + components: + - type: Transform + pos: 82.5,-19.5 + parent: 2 + - uid: 6769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,46.5 + parent: 2 + - uid: 6789 + components: + - type: Transform + pos: 86.5,38.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + pos: 81.5,50.5 + parent: 2 + - uid: 6791 + components: + - type: Transform + pos: 82.5,50.5 + parent: 2 + - uid: 6792 + components: + - type: Transform + pos: 83.5,50.5 + parent: 2 + - uid: 6793 + components: + - type: Transform + pos: 91.5,41.5 + parent: 2 + - uid: 6794 + components: + - type: Transform + pos: 92.5,41.5 + parent: 2 + - uid: 6795 + components: + - type: Transform + pos: 88.5,40.5 + parent: 2 + - uid: 6796 + components: + - type: Transform + pos: 78.5,40.5 + parent: 2 + - uid: 6797 + components: + - type: Transform + pos: 83.5,-22.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + pos: 85.5,-22.5 + parent: 2 + - uid: 6799 + components: + - type: Transform + pos: 73.5,48.5 + parent: 2 + - uid: 6800 + components: + - type: Transform + pos: 73.5,47.5 + parent: 2 + - uid: 6801 + components: + - type: Transform + pos: 76.5,48.5 + parent: 2 + - uid: 6802 + components: + - type: Transform + pos: 76.5,47.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + pos: 96.5,19.5 + parent: 2 + - uid: 6804 + components: + - type: Transform + pos: 69.5,48.5 + parent: 2 + - uid: 6805 + components: + - type: Transform + pos: 70.5,48.5 + parent: 2 + - uid: 6806 + components: + - type: Transform + pos: 70.5,49.5 + parent: 2 + - uid: 6807 + components: + - type: Transform + pos: 71.5,49.5 + parent: 2 + - uid: 6808 + components: + - type: Transform + pos: 72.5,49.5 + parent: 2 + - uid: 6810 + components: + - type: Transform + pos: 64.5,48.5 + parent: 2 + - uid: 6811 + components: + - type: Transform + pos: 90.5,-20.5 + parent: 2 + - uid: 6812 + components: + - type: Transform + pos: 93.5,-20.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,-16.5 + parent: 2 + - uid: 6814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,-16.5 + parent: 2 + - uid: 6815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,-16.5 + parent: 2 + - uid: 6816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,-16.5 + parent: 2 + - uid: 6817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,-16.5 + parent: 2 + - uid: 6818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,-16.5 + parent: 2 + - uid: 6819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,-16.5 + parent: 2 + - uid: 6820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 99.5,-16.5 + parent: 2 + - uid: 6821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,53.5 + parent: 2 + - uid: 6822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,53.5 + parent: 2 + - uid: 6823 + components: + - type: Transform + pos: 54.5,38.5 + parent: 2 + - uid: 6824 + components: + - type: Transform + pos: 54.5,37.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + pos: 54.5,36.5 + parent: 2 + - uid: 6826 + components: + - type: Transform + pos: 58.5,50.5 + parent: 2 + - uid: 6827 + components: + - type: Transform + pos: 59.5,50.5 + parent: 2 + - uid: 6828 + components: + - type: Transform + pos: 59.5,51.5 + parent: 2 + - uid: 6829 + components: + - type: Transform + pos: 60.5,51.5 + parent: 2 + - uid: 6830 + components: + - type: Transform + pos: 61.5,51.5 + parent: 2 + - uid: 6831 + components: + - type: Transform + pos: 62.5,51.5 + parent: 2 + - uid: 6832 + components: + - type: Transform + pos: 63.5,51.5 + parent: 2 + - uid: 6833 + components: + - type: Transform + pos: 64.5,51.5 + parent: 2 + - uid: 6834 + components: + - type: Transform + pos: 65.5,51.5 + parent: 2 + - uid: 6835 + components: + - type: Transform + pos: 66.5,51.5 + parent: 2 + - uid: 6836 + components: + - type: Transform + pos: 67.5,51.5 + parent: 2 + - uid: 6837 + components: + - type: Transform + pos: 68.5,51.5 + parent: 2 + - uid: 6838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,53.5 + parent: 2 + - uid: 6839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,53.5 + parent: 2 + - uid: 6840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,53.5 + parent: 2 + - uid: 6841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,53.5 + parent: 2 + - uid: 6842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,53.5 + parent: 2 + - uid: 6843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,52.5 + parent: 2 + - uid: 6844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,52.5 + parent: 2 + - uid: 6845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,52.5 + parent: 2 + - uid: 6846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,52.5 + parent: 2 + - uid: 6847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,52.5 + parent: 2 + - uid: 6848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,56.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,56.5 + parent: 2 + - uid: 6850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,56.5 + parent: 2 + - uid: 6851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,56.5 + parent: 2 + - uid: 6852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 99.5,56.5 + parent: 2 + - uid: 6853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 100.5,56.5 + parent: 2 + - uid: 6854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 101.5,56.5 + parent: 2 + - uid: 6855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 102.5,56.5 + parent: 2 + - uid: 6856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 103.5,56.5 + parent: 2 + - uid: 6857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 104.5,56.5 + parent: 2 + - uid: 6858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 105.5,56.5 + parent: 2 + - uid: 6859 + components: + - type: Transform + pos: 96.5,18.5 + parent: 2 + - uid: 6860 + components: + - type: Transform + pos: 96.5,17.5 + parent: 2 + - uid: 6861 + components: + - type: Transform + pos: 96.5,16.5 + parent: 2 + - uid: 6862 + components: + - type: Transform + pos: 96.5,15.5 + parent: 2 + - uid: 6863 + components: + - type: Transform + pos: 96.5,39.5 + parent: 2 + - uid: 6864 + components: + - type: Transform + pos: 96.5,38.5 + parent: 2 + - uid: 6865 + components: + - type: Transform + pos: 96.5,37.5 + parent: 2 + - uid: 6866 + components: + - type: Transform + pos: 96.5,36.5 + parent: 2 + - uid: 6867 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 + - uid: 6868 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 6869 + components: + - type: Transform + pos: 8.5,18.5 + parent: 2 + - uid: 6870 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - uid: 6871 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 6872 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 + - uid: 6873 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 6874 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - uid: 6875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-43.5 + parent: 2 + - uid: 6876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,-43.5 + parent: 2 + - uid: 6877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,14.5 + parent: 2 + - uid: 6878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,14.5 + parent: 2 + - uid: 6879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,14.5 + parent: 2 + - uid: 6880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,36.5 + parent: 2 + - uid: 6881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,35.5 + parent: 2 + - uid: 6882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,23.5 + parent: 2 + - uid: 6883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,11.5 + parent: 2 + - uid: 6884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 2 + - uid: 6885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 2 + - uid: 6886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 2 + - uid: 6887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 2 + - uid: 6888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 2 + - uid: 6910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,49.5 + parent: 2 + - uid: 6922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 100.5,46.5 + parent: 2 + - uid: 7501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 100.5,47.5 + parent: 2 + - uid: 7564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 100.5,49.5 + parent: 2 + - uid: 7567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 100.5,45.5 + parent: 2 + - uid: 8316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 2 + - uid: 8648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,41.5 + parent: 2 + - uid: 8659 + components: + - type: Transform + pos: 65.5,48.5 + parent: 2 + - uid: 9449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-28.5 + parent: 2 + - uid: 9450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-28.5 + parent: 2 + - uid: 9462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-28.5 + parent: 2 + - uid: 9465 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 + - uid: 9491 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 2 + - uid: 9651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-19.5 + parent: 2 + - uid: 10210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 100.5,50.5 + parent: 2 + - uid: 11389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 99.5,47.5 + parent: 2 + - uid: 11390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 99.5,49.5 + parent: 2 + - uid: 11408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,47.5 + parent: 2 + - uid: 11419 + components: + - type: Transform + pos: 35.5,14.5 + parent: 2 + - uid: 11611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-46.5 + parent: 2 + - uid: 11612 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 + - uid: 12075 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - uid: 12096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,34.5 + parent: 2 + - uid: 12097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,34.5 + parent: 2 + - uid: 12098 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 + - uid: 12101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 100.5,51.5 + parent: 2 + - uid: 12103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,43.5 + parent: 2 + - uid: 12105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,42.5 + parent: 2 + - uid: 12165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,45.5 + parent: 2 + - uid: 12244 + components: + - type: Transform + pos: 40.5,-31.5 + parent: 2 + - uid: 12300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-19.5 + parent: 2 + - uid: 12301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-19.5 + parent: 2 + - uid: 12302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-19.5 + parent: 2 + - uid: 12303 + components: + - type: Transform + pos: 88.5,-49.5 + parent: 2 + - uid: 12307 + components: + - type: Transform + pos: 90.5,-49.5 + parent: 2 + - uid: 12332 + components: + - type: Transform + pos: 89.5,-49.5 + parent: 2 + - uid: 12347 + components: + - type: Transform + pos: 98.5,-40.5 + parent: 2 + - uid: 12441 + components: + - type: Transform + pos: 60.5,28.5 + parent: 2 + - uid: 12957 + components: + - type: Transform + pos: 97.5,-40.5 + parent: 2 + - uid: 13290 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 13291 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - uid: 13557 + components: + - type: Transform + pos: 31.5,-20.5 + parent: 2 + - uid: 13624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-18.5 + parent: 2 + - uid: 14643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-46.5 + parent: 2 + - uid: 14644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-46.5 + parent: 2 + - uid: 14647 + components: + - type: Transform + pos: 40.5,33.5 + parent: 2 + - uid: 14649 + components: + - type: Transform + pos: 37.5,33.5 + parent: 2 + - uid: 14657 + components: + - type: Transform + pos: 32.5,32.5 + parent: 2 + - uid: 14658 + components: + - type: Transform + pos: 31.5,32.5 + parent: 2 + - uid: 15101 + components: + - type: Transform + pos: 36.5,33.5 + parent: 2 + - uid: 15105 + components: + - type: Transform + pos: 41.5,33.5 + parent: 2 +- proto: GrilleBroken + entities: + - uid: 6889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-43.5 + parent: 2 + - uid: 6890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-43.5 + parent: 2 + - uid: 14431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,-44.5 + parent: 2 +- proto: GunSafeDisabler + entities: + - uid: 6891 + components: + - type: Transform + pos: -45.5,-4.5 + parent: 2 +- proto: GunSafeLaserCarbine + entities: + - uid: 6892 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 2 +- proto: GunSafePistolMk58 + entities: + - uid: 6893 + components: + - type: Transform + pos: -46.5,-4.5 + parent: 2 +- proto: GunSafeRifleLecter + entities: + - uid: 6894 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 2 +- proto: GunSafeShotgunEnforcer + entities: + - uid: 6895 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 2 +- proto: GunSafeShotgunKammerer + entities: + - uid: 6896 + components: + - type: Transform + pos: -43.5,-4.5 + parent: 2 +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 6897 + components: + - type: Transform + pos: -48.5,-2.5 + parent: 2 +- proto: GyroscopeMachineCircuitboard + entities: + - uid: 220 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: HandheldCrewMonitor + entities: + - uid: 6898 + components: + - type: Transform + pos: 52.624878,-2.620678 + parent: 2 +- proto: HandheldStationMap + entities: + - uid: 15232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.78061,-15.509869 + parent: 2 +- proto: HandLabeler + entities: + - uid: 6899 + components: + - type: Transform + pos: 78.636055,-27.194046 + parent: 2 + - uid: 6900 + components: + - type: Transform + pos: 78.636055,-27.337275 + parent: 2 + - uid: 6901 + components: + - type: Transform + pos: 78.636055,-27.493525 + parent: 2 +- proto: HeadTerminator + entities: + - uid: 6902 + components: + - type: Transform + pos: -50.422123,5.4502974 + parent: 2 +- proto: HeatExchanger + entities: + - uid: 4354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 101.5,46.5 + parent: 2 + - uid: 4358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 102.5,47.5 + parent: 2 + - uid: 4361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 101.5,47.5 + parent: 2 + - uid: 4363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 102.5,48.5 + parent: 2 + - uid: 6903 + components: + - type: Transform + pos: 61.5,24.5 + parent: 2 + - uid: 6920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 101.5,48.5 + parent: 2 + - uid: 6923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 101.5,49.5 + parent: 2 + - uid: 6958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 102.5,49.5 + parent: 2 + - uid: 7463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 103.5,49.5 + parent: 2 + - uid: 7502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 103.5,48.5 + parent: 2 + - uid: 7558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 102.5,46.5 + parent: 2 + - uid: 7571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 103.5,46.5 + parent: 2 + - uid: 7574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 103.5,47.5 + parent: 2 + - uid: 11081 + components: + - type: Transform + pos: 103.5,50.5 + parent: 2 +- proto: HighSecArmoryLocked + entities: + - uid: 6924 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 2 + - uid: 6925 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 +- proto: HighSecCommandLocked + entities: + - uid: 6926 + components: + - type: Transform + pos: -66.5,3.5 + parent: 2 + - uid: 6927 + components: + - type: Transform + pos: -66.5,-0.5 + parent: 2 +- proto: HospitalCurtainsOpen + entities: + - uid: 6928 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 2 + - uid: 6929 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 2 + - uid: 6930 + components: + - type: Transform + pos: 46.5,-9.5 + parent: 2 + - uid: 6931 + components: + - type: Transform + pos: 46.5,-11.5 + parent: 2 + - uid: 6932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,5.5 + parent: 2 + - uid: 6933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,5.5 + parent: 2 + - uid: 6935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,8.5 + parent: 2 +- proto: HydroponicsTrayEmpty + entities: + - uid: 6936 + components: + - type: Transform + pos: 23.5,8.5 + parent: 2 + - uid: 6937 + components: + - type: Transform + pos: 20.5,4.5 + parent: 2 + - uid: 6940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,5.5 + parent: 2 + - uid: 6941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,5.5 + parent: 2 + - uid: 6942 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 6943 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 6944 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 + - uid: 6945 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - uid: 6946 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 + - uid: 6947 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - uid: 6948 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 + - uid: 6950 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 6951 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 +- proto: IDComputerCircuitboard + entities: + - uid: 6952 + components: + - type: Transform + pos: 95.522736,23.684032 + parent: 2 +- proto: IngotGold + entities: + - uid: 6953 + components: + - type: Transform + pos: -62.44831,0.4791727 + parent: 2 + - uid: 6954 + components: + - type: Transform + pos: -62.57331,0.6510477 + parent: 2 +- proto: IngotGold1 + entities: + - uid: 6955 + components: + - type: Transform + pos: 84.48707,-26.079016 + parent: 2 + - uid: 6956 + components: + - type: Transform + pos: 84.70582,-26.15714 + parent: 2 + - uid: 6957 + components: + - type: Transform + pos: 84.50269,-26.297766 + parent: 2 + - uid: 6959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.59644,-26.53214 + parent: 2 + - uid: 12974 + components: + - type: Transform + pos: 84.25506,-25.818825 + parent: 2 +- proto: IngotSilver + entities: + - uid: 6960 + components: + - type: Transform + pos: -62.32331,0.07292271 + parent: 2 + - uid: 6961 + components: + - type: Transform + pos: -62.745186,0.1822977 + parent: 2 + - uid: 6962 + components: + - type: Transform + pos: 48.459988,14.64081 + parent: 2 +- proto: IntercomCommand + entities: + - uid: 15829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,5.5 + parent: 2 + - uid: 15830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,4.5 + parent: 2 + - uid: 15831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,3.5 + parent: 2 + - uid: 15832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-1.5 + parent: 2 + - uid: 15837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-9.5 + parent: 2 + - uid: 15852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-28.5 + parent: 2 + - uid: 15856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,-5.5 + parent: 2 + - uid: 15863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,44.5 + parent: 2 +- proto: IntercomCommon + entities: + - uid: 15812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-1.5 + parent: 2 + - uid: 15813 + components: + - type: Transform + pos: 74.5,3.5 + parent: 2 + - uid: 15814 + components: + - type: Transform + pos: 54.5,3.5 + parent: 2 + - uid: 15815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-1.5 + parent: 2 + - uid: 15816 + components: + - type: Transform + pos: 37.5,3.5 + parent: 2 + - uid: 15817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-1.5 + parent: 2 + - uid: 15818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 2 + - uid: 15820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-9.5 + parent: 2 + - uid: 15821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-10.5 + parent: 2 + - uid: 15822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-10.5 + parent: 2 + - uid: 15823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-10.5 + parent: 2 + - uid: 15824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-3.5 + parent: 2 + - uid: 15825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-3.5 + parent: 2 + - uid: 15826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-3.5 + parent: 2 + - uid: 15827 + components: + - type: Transform + pos: -43.5,9.5 + parent: 2 + - uid: 15855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,-13.5 + parent: 2 +- proto: IntercomEngineering + entities: + - uid: 15857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,11.5 + parent: 2 + - uid: 15858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,4.5 + parent: 2 + - uid: 15859 + components: + - type: Transform + pos: 86.5,15.5 + parent: 2 + - uid: 15860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,22.5 + parent: 2 + - uid: 15861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,30.5 + parent: 2 + - uid: 15862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,38.5 + parent: 2 +- proto: IntercomMedical + entities: + - uid: 15810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-9.5 + parent: 2 + - uid: 15839 + components: + - type: Transform + pos: 50.5,-6.5 + parent: 2 + - uid: 15840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-9.5 + parent: 2 +- proto: IntercomScience + entities: + - uid: 15811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,7.5 + parent: 2 + - uid: 15841 + components: + - type: Transform + pos: 57.5,10.5 + parent: 2 + - uid: 15842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,15.5 + parent: 2 + - uid: 15843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,21.5 + parent: 2 + - uid: 15844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,26.5 + parent: 2 + - uid: 15845 + components: + - type: Transform + pos: 68.5,14.5 + parent: 2 + - uid: 15849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,8.5 + parent: 2 +- proto: IntercomSecurity + entities: + - uid: 15819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-1.5 + parent: 2 + - uid: 15828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,4.5 + parent: 2 +- proto: IntercomService + entities: + - uid: 15833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-9.5 + parent: 2 + - uid: 15834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-10.5 + parent: 2 + - uid: 15835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-6.5 + parent: 2 + - uid: 15836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-6.5 + parent: 2 + - uid: 15838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 2 +- proto: IntercomSupply + entities: + - uid: 15850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-17.5 + parent: 2 + - uid: 15851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-24.5 + parent: 2 + - uid: 15853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,-21.5 + parent: 2 + - uid: 15854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,-20.5 + parent: 2 +- proto: JanitorialTrolley + entities: + - uid: 6963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 2 +- proto: KitchenDeepFryer + entities: + - uid: 6964 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 +- proto: KitchenElectricGrill + entities: + - uid: 6965 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 6966 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 +- proto: KitchenKnife + entities: + - uid: 12518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.713531,6.9799976 + parent: 2 + - uid: 13388 + components: + - type: Transform + pos: 16.148767,-22.790413 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 6967 + components: + - type: Transform + pos: 57.5,-27.5 + parent: 2 + - uid: 6968 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 6969 + components: + - type: Transform + pos: 76.5,-15.5 + parent: 2 + - uid: 6970 + components: + - type: Transform + pos: 79.5,-44.5 + parent: 2 + - uid: 6971 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 6972 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 6973 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - uid: 12150 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 15156 + components: + - type: Transform + pos: 37.5,27.5 + parent: 2 + - uid: 15882 + components: + - type: Transform + pos: -47.5,8.5 + parent: 2 +- proto: KitchenReagentGrinder + entities: + - uid: 2170 + components: + - type: Transform + pos: -46.5,8.5 + parent: 2 + - uid: 6974 + components: + - type: Transform + pos: 48.5,-2.5 + parent: 2 + - uid: 12148 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 12149 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 +- proto: KitchenSpike + entities: + - uid: 12133 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 +- proto: KnifePlastic + entities: + - uid: 14326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.11316,-44.528706 + parent: 2 +- proto: Lamp + entities: + - uid: 6975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.351097,-9.928835 + parent: 2 + - uid: 6976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.8479,-10.110622 + parent: 2 + - uid: 12512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.568096,-2.1300693 + parent: 2 + - uid: 12941 + components: + - type: Transform + pos: 37.458637,12.767375 + parent: 2 +- proto: LampBanana + entities: + - uid: 6977 + components: + - type: Transform + pos: 18.52445,-4.188776 + parent: 2 +- proto: LampGold + entities: + - uid: 6978 + components: + - type: Transform + pos: 15.220653,-3.1918569 + parent: 2 + - uid: 6979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.314835,27.906017 + parent: 2 + - uid: 6980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.334108,-6.0948553 + parent: 2 + - uid: 7579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.687475,-4.0810385 + parent: 2 + - uid: 14136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.68985,-29.199724 + parent: 2 +- proto: LampInterrogator + entities: + - uid: 6981 + components: + - type: Transform + pos: -25.622742,-3.1537082 + parent: 2 +- proto: Lantern + entities: + - uid: 6982 + components: + - type: Transform + pos: 27.478106,11.754556 + parent: 2 + - uid: 6983 + components: + - type: Transform + pos: 30.55623,11.801431 + parent: 2 +- proto: LargeBeaker + entities: + - uid: 12154 + components: + - type: Transform + pos: 20.739563,8.419169 + parent: 2 +- proto: Lighter + entities: + - uid: 6984 + components: + - type: Transform + pos: -28.037935,2.738978 + parent: 2 +- proto: LightTree01 + entities: + - uid: 6985 + components: + - type: Transform + pos: -69.74717,3.6084545 + parent: 2 +- proto: LightTree02 + entities: + - uid: 6986 + components: + - type: Transform + pos: -70.575294,-0.12592053 + parent: 2 +- proto: LightTree03 + entities: + - uid: 13181 + components: + - type: Transform + pos: -69.940994,-1.3613536 + parent: 2 +- proto: LightTree05 + entities: + - uid: 12179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.56447,47.51936 + parent: 2 + - uid: 13180 + components: + - type: Transform + pos: -71.413445,-2.2207286 + parent: 2 +- proto: LiquidCarbonDioxideCanister + entities: + - uid: 6987 + components: + - type: Transform + pos: 71.5,29.5 + parent: 2 +- proto: LiquidNitrogenCanister + entities: + - uid: 6988 + components: + - type: Transform + pos: 71.5,25.5 + parent: 2 +- proto: LiquidOxygenCanister + entities: + - uid: 6989 + components: + - type: Transform + pos: 71.5,27.5 + parent: 2 + - uid: 14479 + components: + - type: Transform + pos: 91.5,-47.5 + parent: 2 +- proto: LockableButtonArmory + entities: + - uid: 6990 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 379: + - Pressed: Toggle + 380: + - Pressed: Toggle +- proto: LockableButtonAtmospherics + entities: + - uid: 3263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,49.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4617: + - Pressed: Toggle + 4623: + - Pressed: Toggle + - uid: 3268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,49.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4617: + - Pressed: Toggle + 4623: + - Pressed: Toggle + - uid: 6991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 381: + - Pressed: Toggle + - uid: 6992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,30.5 + parent: 2 +- proto: LockableButtonBar + entities: + - uid: 6993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8234: + - Pressed: Toggle + 8231: + - Pressed: Toggle + 8233: + - Pressed: Toggle + 8232: + - Pressed: Toggle +- proto: LockableButtonCaptain + entities: + - uid: 13288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15234: + - Pressed: Toggle +- proto: LockableButtonCargo + entities: + - uid: 6994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8219: + - Pressed: Toggle + 8218: + - Pressed: Toggle + 8220: + - Pressed: Toggle + 8221: + - Pressed: Toggle + - uid: 6995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8222: + - Pressed: Toggle + 8243: + - Pressed: Toggle + 8223: + - Pressed: Toggle + 8224: + - Pressed: Toggle + 8244: + - Pressed: Toggle + 8225: + - Pressed: Toggle + 8227: + - Pressed: Toggle + 8226: + - Pressed: Toggle +- proto: LockableButtonChapel + entities: + - uid: 6996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,12.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7724: + - Pressed: Toggle + 7725: + - Pressed: Toggle + 7722: + - Pressed: Toggle + 7723: + - Pressed: Toggle + 7729: + - Pressed: Toggle + 7728: + - Pressed: Toggle + - uid: 6997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7727: + - Pressed: Toggle + 7726: + - Pressed: Toggle +- proto: LockableButtonCommand + entities: + - uid: 15258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15257: + - Pressed: Toggle + 15256: + - Pressed: Toggle + 15255: + - Pressed: Toggle + 15254: + - Pressed: Toggle + 15253: + - Pressed: Toggle + 15252: + - Pressed: Toggle + 15251: + - Pressed: Toggle + 15250: + - Pressed: Toggle + 15249: + - Pressed: Toggle + 15248: + - Pressed: Toggle + 15247: + - Pressed: Toggle + 15246: + - Pressed: Toggle + 15245: + - Pressed: Toggle + 15244: + - Pressed: Toggle + 15243: + - Pressed: Toggle + 15242: + - Pressed: Toggle + 15241: + - Pressed: Toggle + 15240: + - Pressed: Toggle + 15239: + - Pressed: Toggle + 15238: + - Pressed: Toggle + 15237: + - Pressed: Toggle + 15236: + - Pressed: Toggle + 15235: + - Pressed: Toggle + 12491: + - Pressed: Toggle + - uid: 15259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12491: + - Pressed: Toggle + 15235: + - Pressed: Toggle + 15236: + - Pressed: Toggle + 15237: + - Pressed: Toggle + 15238: + - Pressed: Toggle + 15239: + - Pressed: Toggle + 15240: + - Pressed: Toggle + 15241: + - Pressed: Toggle + 15242: + - Pressed: Toggle + 15243: + - Pressed: Toggle + 15244: + - Pressed: Toggle + 15245: + - Pressed: Toggle + 15246: + - Pressed: Toggle + 15247: + - Pressed: Toggle + 15248: + - Pressed: Toggle + 15249: + - Pressed: Toggle + 15250: + - Pressed: Toggle + 15251: + - Pressed: Toggle + 15252: + - Pressed: Toggle + 15253: + - Pressed: Toggle + 15254: + - Pressed: Toggle + 15255: + - Pressed: Toggle + 15256: + - Pressed: Toggle + 15257: + - Pressed: Toggle + - uid: 15265 + components: + - type: Transform + pos: -64.5,10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15262: + - Pressed: Toggle + 15263: + - Pressed: Toggle + 15264: + - Pressed: Toggle + - uid: 15280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15276: + - Pressed: Toggle + 15275: + - Pressed: Toggle + 15274: + - Pressed: Toggle + 15277: + - Pressed: Toggle + 15278: + - Pressed: Toggle + 15279: + - Pressed: Toggle + - uid: 15284 + components: + - type: Transform + pos: -54.5,-5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15281: + - Pressed: Toggle + 15282: + - Pressed: Toggle + 15283: + - Pressed: Toggle + 15290: + - Pressed: Toggle + 15291: + - Pressed: Toggle +- proto: LockableButtonDetective + entities: + - uid: 8266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15311: + - Pressed: Toggle + 15310: + - Pressed: Toggle +- proto: LockableButtonEngineering + entities: + - uid: 3240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12083: + - Pressed: Toggle + 12082: + - Pressed: Toggle + 11420: + - Pressed: Toggle + - uid: 3244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12083: + - Pressed: Toggle + 12082: + - Pressed: Toggle + 11420: + - Pressed: Toggle + - uid: 15432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8203: + - Pressed: Toggle + 8241: + - Pressed: Toggle + 8242: + - Pressed: Toggle + 8204: + - Pressed: Toggle + - uid: 15439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8203: + - Pressed: Toggle + 8241: + - Pressed: Toggle + 8242: + - Pressed: Toggle + 8204: + - Pressed: Toggle +- proto: LockableButtonHeadOfPersonnel + entities: + - uid: 6998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8197: + - Pressed: Toggle + 8198: + - Pressed: Toggle + 8199: + - Pressed: Toggle + 8239: + - Pressed: Toggle + 8200: + - Pressed: Toggle +- proto: LockableButtonHydroponics + entities: + - uid: 12161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15348: + - Pressed: Toggle + 15347: + - Pressed: Toggle + 15346: + - Pressed: Toggle + 15345: + - Pressed: Toggle + 15344: + - Pressed: Toggle + 12160: + - Pressed: Toggle + 12159: + - Pressed: Toggle +- proto: LockableButtonKitchen + entities: + - uid: 12162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12156: + - Pressed: Toggle + 12157: + - Pressed: Toggle + 12158: + - Pressed: Toggle +- proto: LockableButtonQuartermaster + entities: + - uid: 6999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,-26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8214: + - Pressed: Toggle + 8215: + - Pressed: Toggle + 8216: + - Pressed: Toggle + 8217: + - Pressed: Toggle +- proto: LockableButtonResearch + entities: + - uid: 7000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.47188,18.814476 + parent: 2 + - uid: 7001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.4693,18.099329 + parent: 2 + - uid: 7002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.536766,18.89733 + parent: 2 + - uid: 7003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5324,18.190903 + parent: 2 + - uid: 7004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8195: + - Pressed: Toggle + 8202: + - Pressed: Toggle + 8194: + - Pressed: Toggle + - uid: 7005 + components: + - type: Transform + pos: 49.5,10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8202: + - Pressed: Toggle + 8194: + - Pressed: Toggle + 8195: + - Pressed: Toggle + - uid: 7006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8228: + - Pressed: Toggle + 8229: + - Pressed: Toggle + - uid: 7007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,7.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 383: + - Pressed: Toggle + 385: + - Pressed: Toggle + 384: + - Pressed: Toggle + - uid: 7008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8230: + - Pressed: Toggle + - uid: 15410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8196: + - Pressed: Toggle + 8240: + - Pressed: Toggle + 8201: + - Pressed: Toggle + - uid: 15411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8196: + - Pressed: Toggle + 8240: + - Pressed: Toggle + 8201: + - Pressed: Toggle +- proto: LockableButtonResearchDirector + entities: + - uid: 7009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15419: + - Pressed: Toggle + 15418: + - Pressed: Toggle + 15417: + - Pressed: Toggle +- proto: LockableButtonSecurity + entities: + - uid: 12657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-5.5 + parent: 2 +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 7010 + components: + - type: Transform + pos: 79.5,37.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + pos: 78.5,37.5 + parent: 2 +- proto: LockerBooze + entities: + - uid: 7012 + components: + - type: MetaData + desc: Что сегодня там? Может ШКИЛЕТ!?! + name: шкафчик + - type: Transform + pos: 76.5,-10.5 + parent: 2 + - type: Lock + locked: False + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8211 + - 8064 + - 7743 + - 7712 + - 7496 + - 7486 + - 7485 + - 7183 + - 7065 + - 7064 + - 7063 + - 7062 + - 8052 + - 8061 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 7013 + components: + - type: MetaData + desc: Что сегодня там? Может ШКИЛЕТ!?! + name: шкафчик + - type: Transform + pos: 76.5,-4.5 + parent: 2 + - type: Lock + locked: False + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8595 + - 8590 + - 8212 + - 8213 + - 8319 + - 8361 + - 8441 + - 8472 + - 8585 + - 8587 + - 8588 + - 8589 + - 8662 + - 9865 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerBoozeFilled + entities: + - uid: 7014 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 2 + - uid: 14316 + components: + - type: MetaData + desc: Какие скелеты хранит этот шкаф? + name: шкафчик + - type: Transform + pos: 101.5,-43.5 + parent: 2 + - type: Lock + locked: False + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14325 + - 14324 + - 14323 + - 14322 + - 14321 + - 14320 + - 14319 + - 14318 + - 14317 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerBotanistFilled + entities: + - uid: 7015 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 7016 + components: + - type: Transform + pos: 23.5,10.5 + parent: 2 +- proto: LockerBrigmedicFilled + entities: + - uid: 7017 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 +- proto: LockerCaptainFilledHardsuit + entities: + - uid: 7018 + components: + - type: Transform + pos: -54.5,9.5 + parent: 2 +- proto: LockerChemistryFilled + entities: + - uid: 7019 + components: + - type: Transform + pos: 47.5,-3.5 + parent: 2 + - uid: 7020 + components: + - type: Transform + pos: 48.5,-3.5 + parent: 2 +- proto: LockerChiefEngineerFilled + entities: + - uid: 3095 + components: + - type: Transform + pos: 68.5,46.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3096 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerChiefMedicalOfficerFilledHardsuit + entities: + - uid: 7021 + components: + - type: Transform + pos: 54.5,-10.5 + parent: 2 +- proto: LockerClerkFilled + entities: + - uid: 12088 + components: + - type: Transform + pos: -7.5,7.5 + parent: 2 +- proto: LockerClown + entities: + - uid: 7022 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 +- proto: LockerDetectiveFilled + entities: + - uid: 7023 + components: + - type: Transform + pos: -9.5,7.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10304 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 7024 + components: + - type: Transform + pos: 94.5,31.5 + parent: 2 + - uid: 12267 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 2 + - uid: 12455 + components: + - type: Transform + pos: 54.5,30.5 + parent: 2 + - uid: 12460 + components: + - type: Transform + pos: 50.5,17.5 + parent: 2 + - uid: 12464 + components: + - type: Transform + pos: 72.5,-29.5 + parent: 2 +- proto: LockerEngineer + entities: + - uid: 210 + components: + - type: MetaData + name: шкаф с платами + - type: Transform + pos: 89.5,12.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 214 + - 215 + - 219 + - 225 + - 228 + - 236 + - 220 + - 223 + - 221 + - 227 + - 235 + - 234 + - 213 + - 212 + - 211 + - 226 + - 229 + - 233 + - 224 + - 231 + - 230 + - 222 + - 218 + - 232 + - 217 + - 216 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerEngineerFilled + entities: + - uid: 7025 + components: + - type: Transform + pos: 83.5,24.5 + parent: 2 + - uid: 7026 + components: + - type: Transform + pos: 83.5,25.5 + parent: 2 + - uid: 7027 + components: + - type: Transform + pos: 83.5,26.5 + parent: 2 + - uid: 7028 + components: + - type: Transform + pos: 83.5,27.5 + parent: 2 +- proto: LockerExpeditorFilled + entities: + - uid: 12430 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - uid: 12431 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 12432 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 +- proto: LockerForensicMantisFilled + entities: + - uid: 7029 + components: + - type: Transform + pos: 65.5,29.5 + parent: 2 +- proto: LockerFreezer + entities: + - uid: 12113 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12114 + - 12115 + - 12116 + - 12117 + - 12118 + - 12119 + - 12120 + - 12121 + - 12122 + - 12123 + - 12124 + - 12125 + - 12126 + - 12127 + - 12128 + - 12129 + - 12130 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerFreezerVaultFilled + entities: + - uid: 7030 + components: + - type: Transform + pos: -62.5,1.5 + parent: 2 +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 7031 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 2 +- proto: LockerHeadOfSecurityFilledHardsuit + entities: + - uid: 7032 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 +- proto: LockerMedicalFilled + entities: + - uid: 7033 + components: + - type: Transform + pos: 68.5,-3.5 + parent: 2 + - uid: 7034 + components: + - type: Transform + pos: 68.5,-2.5 + parent: 2 +- proto: LockerMime + entities: + - uid: 7035 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 +- proto: LockerParamedicFilledHardsuit + entities: + - uid: 7036 + components: + - type: Transform + pos: 54.5,-2.5 + parent: 2 +- proto: LockerQuarterMasterFilled + entities: + - uid: 7037 + components: + - type: Transform + pos: 89.5,-25.5 + parent: 2 +- proto: LockerResearchDirectorFilled + entities: + - uid: 7038 + components: + - type: Transform + pos: 65.5,19.5 + parent: 2 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 7039 + components: + - type: Transform + pos: 82.5,-44.5 + parent: 2 + - uid: 7040 + components: + - type: Transform + pos: 83.5,-44.5 + parent: 2 + - uid: 7041 + components: + - type: Transform + pos: 81.5,-44.5 + parent: 2 + - uid: 7042 + components: + - type: Transform + pos: 80.5,-44.5 + parent: 2 +- proto: LockerScienceFilled + entities: + - uid: 7043 + components: + - type: Transform + pos: 71.5,5.5 + parent: 2 + - uid: 7044 + components: + - type: Transform + pos: 71.5,6.5 + parent: 2 + - uid: 7045 + components: + - type: Transform + pos: 71.5,7.5 + parent: 2 +- proto: LockerSecurityFilled + entities: + - uid: 7046 + components: + - type: Transform + pos: -18.5,6.5 + parent: 2 + - uid: 7047 + components: + - type: Transform + pos: -18.5,7.5 + parent: 2 + - uid: 7048 + components: + - type: Transform + pos: -18.5,5.5 + parent: 2 + - uid: 7049 + components: + - type: Transform + pos: -18.5,4.5 + parent: 2 + - uid: 7050 + components: + - type: Transform + pos: -18.5,8.5 + parent: 2 + - uid: 7051 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - uid: 7052 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - uid: 7053 + components: + - type: Transform + pos: -14.5,5.5 + parent: 2 + - uid: 7054 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 7055 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 +- proto: LockerSteel + entities: + - uid: 14002 + components: + - type: Transform + pos: 68.5,-31.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14031 + - 14030 + - 14029 + - 14028 + - 14003 + - 14004 + - 14005 + - 14006 + - 14007 + - 14008 + - 14009 + - 14010 + - 14011 + - 14012 + - 14013 + - 14014 + - 14015 + - 14016 + - 14017 + - 14018 + - 14019 + - 14020 + - 14021 + - 14022 + - 14023 + - 14024 + - 14025 + - 14026 + - 14027 + - 14032 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 14033 + components: + - type: Transform + pos: 69.5,-31.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14059 + - 14058 + - 14052 + - 14051 + - 14050 + - 14049 + - 14048 + - 14047 + - 14046 + - 14045 + - 14044 + - 14043 + - 14042 + - 14041 + - 14040 + - 14039 + - 14038 + - 14037 + - 14036 + - 14035 + - 14034 + - 14053 + - 14054 + - 14055 + - 14056 + - 14057 + - 14060 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 14061 + components: + - type: Transform + pos: 70.5,-31.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14085 + - 14084 + - 14083 + - 14082 + - 14081 + - 14062 + - 14063 + - 14064 + - 14065 + - 14066 + - 14067 + - 14068 + - 14069 + - 14070 + - 14071 + - 14072 + - 14073 + - 14074 + - 14075 + - 14076 + - 14077 + - 14078 + - 14079 + - 14080 + - 14086 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerWallMedicalFilled + entities: + - uid: 7056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-3.5 + parent: 2 + - uid: 7057 + components: + - type: Transform + pos: 64.5,-5.5 + parent: 2 + - uid: 7058 + components: + - type: Transform + pos: 66.5,-5.5 + parent: 2 + - uid: 13479 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 2 +- proto: LockerWardenFilledHardsuit + entities: + - uid: 7059 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 7060 + components: + - type: Transform + pos: 92.5,31.5 + parent: 2 + - uid: 12465 + components: + - type: Transform + pos: 73.5,-29.5 + parent: 2 +- proto: LPPAdjutantSpawn + entities: + - uid: 12993 + components: + - type: Transform + pos: -67.5,0.5 + parent: 2 + - uid: 12994 + components: + - type: Transform + pos: -54.5,-3.5 + parent: 2 + - uid: 12995 + components: + - type: Transform + pos: -63.5,8.5 + parent: 2 +- proto: LPPAirlockGate + entities: + - uid: 7061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,26.5 + parent: 2 +- proto: LPPBeachVendingMachine + entities: + - uid: 7066 + components: + - type: Transform + pos: 76.5,6.5 + parent: 2 + - uid: 12339 + components: + - type: Transform + pos: 70.5,-12.5 + parent: 2 +- proto: LPPBedDoubleDown + entities: + - uid: 7067 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - uid: 7068 + components: + - type: Transform + pos: 54.5,-12.5 + parent: 2 + - uid: 7069 + components: + - type: Transform + pos: 65.5,20.5 + parent: 2 + - uid: 7070 + components: + - type: Transform + pos: 66.5,46.5 + parent: 2 + - uid: 7071 + components: + - type: Transform + pos: 65.5,27.5 + parent: 2 + - uid: 7072 + components: + - type: Transform + pos: 76.5,-2.5 + parent: 2 + - uid: 7073 + components: + - type: Transform + pos: 76.5,-12.5 + parent: 2 + - uid: 12744 + components: + - type: Transform + pos: 38.5,9.5 + parent: 2 + - uid: 14273 + components: + - type: Transform + pos: 103.5,-43.5 + parent: 2 +- proto: LPPBedDoubleUp + entities: + - uid: 7074 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - uid: 7075 + components: + - type: Transform + pos: 54.5,-12.5 + parent: 2 + - uid: 7076 + components: + - type: Transform + pos: 65.5,20.5 + parent: 2 + - uid: 7077 + components: + - type: Transform + pos: 66.5,46.5 + parent: 2 + - uid: 7078 + components: + - type: Transform + pos: 65.5,27.5 + parent: 2 + - uid: 7079 + components: + - type: Transform + pos: 76.5,-2.5 + parent: 2 + - uid: 7080 + components: + - type: Transform + pos: 76.5,-12.5 + parent: 2 + - uid: 12912 + components: + - type: Transform + pos: 38.5,9.5 + parent: 2 + - uid: 14274 + components: + - type: Transform + pos: 103.5,-43.5 + parent: 2 +- proto: LPPBedsheetCE + entities: + - uid: 12195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,46.5 + parent: 2 +- proto: LPPBedsheetCMO + entities: + - uid: 7081 + components: + - type: Transform + pos: 54.5,-12.5 + parent: 2 +- proto: LPPBedsheetCult + entities: + - uid: 12920 + components: + - type: Transform + pos: 38.5,9.5 + parent: 2 +- proto: LPPBedsheetHOP + entities: + - uid: 7082 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 +- proto: LPPBedsheetPurple + entities: + - uid: 7083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,27.5 + parent: 2 +- proto: LPPBedsheetRD + entities: + - uid: 7084 + components: + - type: Transform + pos: 65.5,20.5 + parent: 2 +- proto: LPPBlackCarpet + entities: + - uid: 12942 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - uid: 12943 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - uid: 12944 + components: + - type: Transform + pos: 35.5,11.5 + parent: 2 + - uid: 12945 + components: + - type: Transform + pos: 35.5,12.5 + parent: 2 + - uid: 12946 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 + - uid: 12947 + components: + - type: Transform + pos: 36.5,12.5 + parent: 2 + - uid: 12948 + components: + - type: Transform + pos: 37.5,11.5 + parent: 2 + - uid: 12949 + components: + - type: Transform + pos: 37.5,12.5 + parent: 2 + - uid: 12950 + components: + - type: Transform + pos: 36.5,13.5 + parent: 2 + - uid: 12951 + components: + - type: Transform + pos: 37.5,13.5 + parent: 2 + - uid: 12952 + components: + - type: Transform + pos: 35.5,13.5 + parent: 2 + - uid: 12953 + components: + - type: Transform + pos: 34.5,13.5 + parent: 2 +- proto: LPPBlackPlasTitanium + entities: + - uid: 7085 + components: + - type: Transform + pos: -40.5,1.5 + parent: 2 + - uid: 7086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,0.5 + parent: 2 + - uid: 7087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,0.5 + parent: 2 + - uid: 7089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,3.5 + parent: 2 + - uid: 7090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,3.5 + parent: 2 + - uid: 7091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-3.5 + parent: 2 + - uid: 7092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-4.5 + parent: 2 + - uid: 7093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,0.5 + parent: 2 +- proto: LPPBlackPlasTitaniumPlasma + entities: + - uid: 7094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,6.5 + parent: 2 + - uid: 7095 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 +- proto: LPPBlackPlasTitaniumTitanium + entities: + - uid: 7096 + components: + - type: Transform + pos: -32.5,6.5 + parent: 2 + - uid: 7097 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - uid: 7098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,6.5 + parent: 2 + - uid: 7099 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 2 + - uid: 7100 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 2 + - uid: 7101 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 2 + - uid: 7102 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 + - uid: 7103 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - uid: 7104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,6.5 + parent: 2 + - uid: 7105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,7.5 + parent: 2 + - uid: 7106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,7.5 + parent: 2 + - uid: 7107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-0.5 + parent: 2 + - uid: 7108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,0.5 + parent: 2 + - uid: 7109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,2.5 + parent: 2 + - uid: 7110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,3.5 + parent: 2 +- proto: LPPBlackPlasTitaniumWood + entities: + - uid: 407 + components: + - type: Transform + pos: -46.5,8.5 + parent: 2 + - uid: 3009 + components: + - type: Transform + pos: -47.5,8.5 + parent: 2 + - uid: 9212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 2 + - uid: 9213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 2 + - uid: 13253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 2 +- proto: LPPBluefox + entities: + - uid: 7111 + components: + - type: MetaData + name: Дарина Королёва + - type: Transform + pos: 55.863064,-27.171606 + parent: 2 +- proto: LPPBoxerBriefsLightpurple + entities: + - uid: 12561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.54162,32.21212 + parent: 2 +- proto: LPPBoxerRed + entities: + - uid: 12560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.291435,32.165245 + parent: 2 +- proto: LPPBoxs + entities: + - uid: 14435 + components: + - type: Transform + pos: 92.28055,-44.52986 + parent: 2 + - uid: 14436 + components: + - type: Transform + pos: 92.67146,-44.59236 + parent: 2 +- proto: LPPCapComputerComms + entities: + - uid: 7112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,5.5 + parent: 2 +- proto: LPPCapPanties + entities: + - uid: 7113 + components: + - type: Transform + pos: -52.523773,10.533552 + parent: 2 +- proto: LPPCEComputerComms + entities: + - uid: 7114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,45.5 + parent: 2 +- proto: LPPChemistHudGlasses + entities: + - uid: 13398 + components: + - type: Transform + pos: 15.7891245,-22.696663 + parent: 2 +- proto: LPPCigLandtag + entities: + - uid: 13339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.097095,-24.46932 + parent: 2 +- proto: LPPCigLibertyspirit + entities: + - uid: 13324 + components: + - type: Transform + pos: 16.910198,-24.078695 + parent: 2 +- proto: LPPClothingAnonMask + entities: + - uid: 9001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.73778,-24.542349 + parent: 2 +- proto: LPPClothingBackpackPG + entities: + - uid: 15429 + components: + - type: Transform + pos: 85.305115,-35.33569 + parent: 2 +- proto: LPPClothingCoreMaskMime + entities: + - uid: 7115 + components: + - type: Transform + pos: 16.503376,-5.31104 + parent: 2 +- proto: LPPClothingEyesEyepatchBandage + entities: + - uid: 13637 + components: + - type: Transform + pos: 39.496857,-29.401411 + parent: 2 +- proto: LPPClothingEyesGlassesSunglassesPG + entities: + - uid: 7116 + components: + - type: MetaData + name: защитные очки + - type: Transform + pos: 74.60949,-44.31183 + parent: 2 + - uid: 7117 + components: + - type: MetaData + name: защитные очки + - type: Transform + pos: 74.500114,-44.452454 + parent: 2 +- proto: LPPClothingHeadHatMaid + entities: + - uid: 7118 + components: + - type: Transform + pos: 20.476448,-4.2655325 + parent: 2 +- proto: LPPClothingHeadHatPGBeret + entities: + - uid: 7119 + components: + - type: MetaData + name: берет + - type: Transform + pos: 74.32824,-44.31183 + parent: 2 +- proto: LPPClothingHorizontalMaskMime + entities: + - uid: 7120 + components: + - type: Transform + pos: 16.112906,-5.703856 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: LPPClothingNeutralMaskMime + entities: + - uid: 7121 + components: + - type: Transform + pos: 16.858828,-5.6664896 + parent: 2 +- proto: LPPClothingOuterCoatBomber1 + entities: + - uid: 14084 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: LPPClothingOuterCoatBomber2 + entities: + - uid: 14080 + components: + - type: Transform + parent: 14061 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: LPPClothingOuterCoatBomber3 + entities: + - uid: 14009 + components: + - type: Transform + parent: 14002 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: LPPClothingOuterCoatBomber4 + entities: + - uid: 14048 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: LPPClothingOuterCoatBomber5 + entities: + - uid: 14050 + components: + - type: Transform + parent: 14033 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: LPPClothingPlusMaskMime + entities: + - uid: 7122 + components: + - type: Transform + pos: 16.147926,-5.3252573 + parent: 2 +- proto: LPPClothingSatchelSmuggler + entities: + - uid: 12467 + components: + - type: Transform + anchored: True + pos: 42.5,17.5 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + bodyType: Static +- proto: LPPClothingSleepMaskMime + entities: + - uid: 7123 + components: + - type: Transform + pos: 16.8003,-5.2968216 + parent: 2 +- proto: LPPClothingSquareMaskMime + entities: + - uid: 7124 + components: + - type: Transform + pos: 16.491276,-5.6562605 + parent: 2 +- proto: LPPClothingUniformRedTracksuit + entities: + - uid: 12554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.757763,31.555317 + parent: 2 +- proto: LPPCmoComputerComms + entities: + - uid: 7125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-12.5 + parent: 2 +- proto: LPPCondensedMilkCan + entities: + - uid: 14475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.43679,-48.62838 + parent: 2 +- proto: LPPCondensedMilkCanTrash + entities: + - uid: 14474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.576775,-42.18505 + parent: 2 +- proto: LPPDoubleBedsheetSpawner + entities: + - uid: 7126 + components: + - type: Transform + pos: 76.5,-12.5 + parent: 2 + - uid: 7127 + components: + - type: Transform + pos: 76.5,-2.5 + parent: 2 + - uid: 14286 + components: + - type: Transform + pos: 103.5,-43.5 + parent: 2 +- proto: LPPFancyTableMnochrome + entities: + - uid: 12916 + components: + - type: Transform + pos: 37.5,12.5 + parent: 2 + - uid: 12917 + components: + - type: Transform + pos: 37.5,11.5 + parent: 2 + - uid: 12921 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 12922 + components: + - type: Transform + pos: 35.5,9.5 + parent: 2 + - uid: 13327 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 2 + - uid: 13332 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 2 + - uid: 13346 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 2 + - uid: 13348 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 2 + - uid: 13349 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 2 + - uid: 13365 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 2 +- proto: LPPFlagPoleBlue + entities: + - uid: 7128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-7.5 + parent: 2 +- proto: LPPFlagPoleNT + entities: + - uid: 7129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-2.5 + parent: 2 + - uid: 7130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-2.5 + parent: 2 + - uid: 7131 + components: + - type: Transform + pos: -55.5,3.5 + parent: 2 + - uid: 7132 + components: + - type: Transform + pos: -53.5,3.5 + parent: 2 + - uid: 7133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,9.5 + parent: 2 + - uid: 7134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,7.5 + parent: 2 + - uid: 7135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,8.5 + parent: 2 + - uid: 7136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,6.5 + parent: 2 + - uid: 7137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,8.5 + parent: 2 + - uid: 7138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,6.5 + parent: 2 + - uid: 7139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-4.5 + parent: 2 + - uid: 7140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-6.5 + parent: 2 + - uid: 7141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-6.5 + parent: 2 + - uid: 7142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-8.5 + parent: 2 +- proto: LPPFlagPoleRed + entities: + - uid: 7143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,1.5 + parent: 2 + - uid: 7144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-0.5 + parent: 2 + - uid: 7145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,4.5 + parent: 2 + - uid: 7146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,7.5 + parent: 2 + - uid: 7147 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - uid: 7148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,4.5 + parent: 2 + - uid: 7149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,7.5 + parent: 2 + - uid: 7150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 2 + - uid: 7151 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 7152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-0.5 + parent: 2 +- proto: LPPFlagPoleSYND + entities: + - uid: 7153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,7.5 + parent: 2 +- proto: LPPFloorBlueCircuit + entities: + - uid: 7154 + components: + - type: Transform + pos: -60.5,-3.5 + parent: 2 + - uid: 7155 + components: + - type: Transform + pos: -60.5,-4.5 + parent: 2 + - uid: 7156 + components: + - type: Transform + pos: -62.5,-4.5 + parent: 2 + - uid: 7157 + components: + - type: Transform + pos: -62.5,-3.5 + parent: 2 + - uid: 7158 + components: + - type: Transform + pos: -64.5,-3.5 + parent: 2 + - uid: 7159 + components: + - type: Transform + pos: -64.5,-4.5 + parent: 2 + - uid: 7160 + components: + - type: Transform + pos: -64.5,-6.5 + parent: 2 + - uid: 7161 + components: + - type: Transform + pos: -64.5,-7.5 + parent: 2 + - uid: 7162 + components: + - type: Transform + pos: -62.5,-6.5 + parent: 2 + - uid: 7163 + components: + - type: Transform + pos: -62.5,-7.5 + parent: 2 + - uid: 7164 + components: + - type: Transform + pos: -60.5,-6.5 + parent: 2 + - uid: 7165 + components: + - type: Transform + pos: -60.5,-7.5 + parent: 2 + - uid: 7166 + components: + - type: Transform + pos: -62.5,-0.5 + parent: 2 + - uid: 7167 + components: + - type: Transform + pos: -62.5,0.5 + parent: 2 + - uid: 7168 + components: + - type: Transform + pos: -62.5,2.5 + parent: 2 + - uid: 7169 + components: + - type: Transform + pos: -62.5,3.5 + parent: 2 + - uid: 7170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,3.5 + parent: 2 + - uid: 7171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-0.5 + parent: 2 + - uid: 7172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,1.5 + parent: 2 + - uid: 7173 + components: + - type: Transform + pos: 59.5,6.5 + parent: 2 + - uid: 7174 + components: + - type: Transform + pos: 58.5,6.5 + parent: 2 +- proto: LPPFloorGreenCircuit + entities: + - uid: 7175 + components: + - type: Transform + pos: -65.5,1.5 + parent: 2 + - uid: 7176 + components: + - type: Transform + pos: -65.5,0.5 + parent: 2 + - uid: 7177 + components: + - type: Transform + pos: -65.5,2.5 + parent: 2 + - uid: 7178 + components: + - type: Transform + pos: 58.5,4.5 + parent: 2 + - uid: 7179 + components: + - type: Transform + pos: 59.5,4.5 + parent: 2 + - uid: 7180 + components: + - type: Transform + pos: -64.5,1.5 + parent: 2 +- proto: LPPGoat + entities: + - uid: 14424 + components: + - type: Transform + pos: 92.13982,-45.139236 + parent: 2 +- proto: LPPHopComputerComms + entities: + - uid: 7181 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 +- proto: LPPHosComputerComms + entities: + - uid: 7182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,6.5 + parent: 2 +- proto: LPPJudgesGavel + entities: + - uid: 12489 + components: + - type: Transform + pos: -10.496271,10.447525 + parent: 2 +- proto: LPPLockerBlueShieldFilled + entities: + - uid: 7184 + components: + - type: Transform + pos: -63.5,3.5 + parent: 2 +- proto: LPPLockerElectricalSuppliesSynFilled + entities: + - uid: 12236 + components: + - type: Transform + pos: 87.5,-3.5 + parent: 2 + - uid: 12456 + components: + - type: Transform + pos: 57.5,33.5 + parent: 2 +- proto: LPPLockerSecEngFilled + entities: + - uid: 7185 + components: + - type: Transform + pos: -27.5,3.5 + parent: 2 +- proto: LPPMaid + entities: + - uid: 7186 + components: + - type: Transform + pos: -52.148773,10.846052 + parent: 2 +- proto: LPPMarblefox + entities: + - uid: 7187 + components: + - type: MetaData + name: Касуми Энигматикс + - type: Transform + pos: 55.4641,-27.64262 + parent: 2 +- proto: LPPMonochromeCarpet + entities: + - uid: 12505 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - uid: 12506 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 2 + - uid: 12507 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 + - uid: 12508 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 + - uid: 12509 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 12510 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 2 +- proto: LPPRCDFAPAmmo + entities: + - uid: 7188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.45802,26.583666 + parent: 2 + - uid: 7189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.45802,26.583666 + parent: 2 + - uid: 7190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.45802,26.583666 + parent: 2 + - uid: 7191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.45802,26.583666 + parent: 2 +- proto: LPPRCDFAPDevice + entities: + - uid: 7192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.28146,25.92887 + parent: 2 +- proto: LPPRDComputerComms + entities: + - uid: 7193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,15.5 + parent: 2 +- proto: LPPRusUnder + entities: + - uid: 7194 + components: + - type: Transform + pos: 73.43114,-44.50789 + parent: 2 + - uid: 7195 + components: + - type: Transform + pos: 18.665314,8.550899 + parent: 2 +- proto: LPPSpawnPointSecurityEngineer + entities: + - uid: 12991 + components: + - type: Transform + pos: -27.5,2.5 + parent: 2 + - uid: 12992 + components: + - type: Transform + pos: -31.5,2.5 + parent: 2 + - uid: 13097 + components: + - type: Transform + pos: 57.5,-24.5 + parent: 2 + - uid: 13098 + components: + - type: Transform + pos: 60.5,-20.5 + parent: 2 +- proto: LPPSportsBraAltOrange + entities: + - uid: 12556 + components: + - type: Transform + pos: 47.382484,31.352192 + parent: 2 +- proto: LPPTacticoolSec + entities: + - uid: 12555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.382484,31.742817 + parent: 2 +- proto: LPPThruster2x2 + entities: + - uid: 7198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,44.5 + parent: 2 + - uid: 7199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 107.5,-45.5 + parent: 2 + - uid: 7200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 107.5,48.5 + parent: 2 + - uid: 7201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,42.5 + parent: 2 + - uid: 7202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-41.5 + parent: 2 + - uid: 7203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-43.5 + parent: 2 +- proto: LPPThruster3x3 + entities: + - uid: 7204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,-3.5 + parent: 2 + - uid: 7205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,-26.5 + parent: 2 + - uid: 7206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,-23.5 + parent: 2 + - uid: 7207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,-29.5 + parent: 2 + - uid: 7208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 107.5,-48.5 + parent: 2 + - uid: 7209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 107.5,-43.5 + parent: 2 + - uid: 7210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,-0.5 + parent: 2 + - uid: 7211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,5.5 + parent: 2 + - uid: 7212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,9.5 + parent: 2 + - uid: 7213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,2.5 + parent: 2 + - uid: 7214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,25.5 + parent: 2 + - uid: 7215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,28.5 + parent: 2 + - type: Thruster + enabled: False + - uid: 7216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,31.5 + parent: 2 + - uid: 7217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 107.5,45.5 + parent: 2 + - uid: 7218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 107.5,50.5 + parent: 2 + - uid: 7219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-23.5 + parent: 2 + - uid: 7220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,25.5 + parent: 2 + - type: Thruster + enabled: False + - uid: 7221 + components: + - type: Transform + pos: 92.5,14.5 + parent: 2 + - uid: 7222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,-51.5 + parent: 2 +- proto: LPPTitanium + entities: + - uid: 7223 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 2 + - uid: 7224 + components: + - type: Transform + pos: 47.5,-2.5 + parent: 2 + - uid: 7225 + components: + - type: Transform + pos: 45.5,-4.5 + parent: 2 + - uid: 7226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-1.5 + parent: 2 + - uid: 7227 + components: + - type: Transform + pos: 42.5,-10.5 + parent: 2 + - uid: 7228 + components: + - type: Transform + pos: 46.5,-10.5 + parent: 2 + - uid: 7229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-20.5 + parent: 2 + - uid: 7230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-15.5 + parent: 2 + - uid: 7231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-14.5 + parent: 2 + - uid: 7232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-20.5 + parent: 2 + - uid: 7233 + components: + - type: Transform + pos: 48.5,-2.5 + parent: 2 + - uid: 7234 + components: + - type: Transform + pos: 46.5,-6.5 + parent: 2 + - uid: 7235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-1.5 + parent: 2 + - uid: 7236 + components: + - type: Transform + pos: 65.5,-18.5 + parent: 2 + - uid: 7237 + components: + - type: Transform + pos: 63.5,-18.5 + parent: 2 + - uid: 7238 + components: + - type: Transform + pos: 65.5,-15.5 + parent: 2 + - uid: 7239 + components: + - type: Transform + pos: 63.5,-16.5 + parent: 2 + - uid: 7240 + components: + - type: Transform + pos: 65.5,-19.5 + parent: 2 + - uid: 7241 + components: + - type: Transform + pos: 65.5,-16.5 + parent: 2 + - uid: 7242 + components: + - type: Transform + pos: 57.5,-10.5 + parent: 2 + - uid: 7243 + components: + - type: Transform + pos: 56.5,-10.5 + parent: 2 + - uid: 7244 + components: + - type: Transform + pos: 64.5,-8.5 + parent: 2 + - uid: 7245 + components: + - type: Transform + pos: 65.5,-8.5 + parent: 2 + - uid: 7246 + components: + - type: Transform + pos: 66.5,-8.5 + parent: 2 + - uid: 7247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-3.5 + parent: 2 + - uid: 7248 + components: + - type: Transform + pos: 58.5,-10.5 + parent: 2 + - uid: 12011 + components: + - type: Transform + pos: 48.5,-12.5 + parent: 2 + - uid: 14098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-9.5 + parent: 2 + - uid: 14100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-9.5 + parent: 2 + - uid: 14101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-10.5 + parent: 2 + - uid: 14147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-11.5 + parent: 2 + - uid: 14149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-10.5 + parent: 2 + - uid: 15147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,30.5 + parent: 2 + - uid: 15148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,31.5 + parent: 2 +- proto: LPPTitaniumGlass + entities: + - uid: 3068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,-5.5 + parent: 2 + - uid: 3069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,-5.5 + parent: 2 + - uid: 7249 + components: + - type: Transform + pos: 53.5,5.5 + parent: 2 + - uid: 7250 + components: + - type: Transform + pos: 53.5,6.5 + parent: 2 + - uid: 7251 + components: + - type: Transform + pos: 74.5,5.5 + parent: 2 + - uid: 7252 + components: + - type: Transform + pos: 74.5,4.5 + parent: 2 + - uid: 7253 + components: + - type: Transform + pos: 74.5,6.5 + parent: 2 + - uid: 7254 + components: + - type: Transform + pos: 74.5,7.5 + parent: 2 + - uid: 7255 + components: + - type: Transform + pos: 72.5,4.5 + parent: 2 + - uid: 7256 + components: + - type: Transform + pos: 71.5,4.5 + parent: 2 + - uid: 7257 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - uid: 7258 + components: + - type: Transform + pos: 72.5,42.5 + parent: 2 + - uid: 7259 + components: + - type: Transform + pos: 71.5,42.5 + parent: 2 + - uid: 7260 + components: + - type: Transform + pos: 54.5,4.5 + parent: 2 + - uid: 7261 + components: + - type: Transform + pos: 55.5,4.5 + parent: 2 + - uid: 7262 + components: + - type: Transform + pos: 56.5,4.5 + parent: 2 + - uid: 7263 + components: + - type: Transform + pos: 59.5,9.5 + parent: 2 + - uid: 7264 + components: + - type: Transform + pos: 58.5,9.5 + parent: 2 + - uid: 7265 + components: + - type: Transform + pos: 57.5,9.5 + parent: 2 + - uid: 7266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,9.5 + parent: 2 + - uid: 7267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,10.5 + parent: 2 + - uid: 7268 + components: + - type: Transform + pos: 50.5,22.5 + parent: 2 + - uid: 7269 + components: + - type: Transform + pos: 50.5,23.5 + parent: 2 + - uid: 7270 + components: + - type: Transform + pos: 47.5,14.5 + parent: 2 + - uid: 7271 + components: + - type: Transform + pos: 48.5,14.5 + parent: 2 + - uid: 7272 + components: + - type: Transform + pos: 56.5,5.5 + parent: 2 + - uid: 11527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-2.5 + parent: 2 + - uid: 11580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,3.5 + parent: 2 + - uid: 12971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,14.5 + parent: 2 + - uid: 12983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,44.5 + parent: 2 + - uid: 12984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,45.5 + parent: 2 + - uid: 13241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-24.5 + parent: 2 +- proto: LPPTuxedocat + entities: + - uid: 14437 + components: + - type: Transform + pos: 93.65657,-45.31111 + parent: 2 +- proto: LunchboxEpistemicsFilledRandom + entities: + - uid: 14587 + components: + - type: Transform + pos: 50.563698,32.6734 + parent: 2 +- proto: LunchboxGenericFilledRandom + entities: + - uid: 7273 + components: + - type: Transform + pos: 1.3380122,10.36076 + parent: 2 + - uid: 13400 + components: + - type: Transform + pos: -14.570671,-7.28666 + parent: 2 + - uid: 13401 + components: + - type: Transform + pos: -14.570671,-7.28666 + parent: 2 + - uid: 13402 + components: + - type: Transform + pos: -14.570671,-7.28666 + parent: 2 + - uid: 13403 + components: + - type: Transform + pos: -14.570671,-7.28666 + parent: 2 + - uid: 13405 + components: + - type: Transform + pos: -14.570671,-7.28666 + parent: 2 + - uid: 13406 + components: + - type: Transform + pos: -14.570671,-7.28666 + parent: 2 +- proto: LunchboxLogisticsFilledRandom + entities: + - uid: 7274 + components: + - type: Transform + pos: 75.69245,-17.478483 + parent: 2 + - uid: 7275 + components: + - type: Transform + pos: 84.40894,-25.391516 + parent: 2 +- proto: LunchboxMedicalFilledRandom + entities: + - uid: 7276 + components: + - type: Transform + pos: -23.447702,4.448616 + parent: 2 +- proto: LunchboxServiceFilledRandom + entities: + - uid: 13506 + components: + - type: Transform + pos: 22.640251,-20.272144 + parent: 2 + - uid: 13507 + components: + - type: Transform + pos: 22.515158,-20.53777 + parent: 2 + - uid: 14620 + components: + - type: Transform + pos: 50.438602,32.2359 + parent: 2 +- proto: LuxuryPen + entities: + - uid: 7277 + components: + - type: Transform + pos: -11.664423,5.0038524 + parent: 2 +- proto: Machete + entities: + - uid: 7278 + components: + - type: Transform + pos: 74.73672,-44.47908 + parent: 2 +- proto: MachineAnomalyGenerator + entities: + - uid: 7279 + components: + - type: Transform + pos: 75.5,12.5 + parent: 2 +- proto: MachineAnomalyVessel + entities: + - uid: 7280 + components: + - type: Transform + pos: 69.5,8.5 + parent: 2 + - uid: 7281 + components: + - type: Transform + pos: 73.5,4.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 7282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,9.5 + parent: 2 + - uid: 7283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,9.5 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 7284 + components: + - type: Transform + pos: 66.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3195 +- proto: MachineCentrifuge + entities: + - uid: 7285 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 2 +- proto: MachineElectrolysisUnit + entities: + - uid: 7286 + components: + - type: Transform + pos: 45.5,-4.5 + parent: 2 +- proto: MachineFrame + entities: + - uid: 10594 + components: + - type: Transform + pos: 84.5,3.5 + parent: 2 + - uid: 13544 + components: + - type: Transform + pos: 47.5,-29.5 + parent: 2 +- proto: MachineFrameDestroyed + entities: + - uid: 13459 + components: + - type: Transform + pos: 28.5,-29.5 + parent: 2 + - uid: 13542 + components: + - type: Transform + pos: 44.5,-31.5 + parent: 2 + - uid: 13607 + components: + - type: Transform + pos: 47.5,-23.5 + parent: 2 +- proto: MagazineLightRifle + entities: + - uid: 7287 + components: + - type: Transform + pos: -22.331358,6.4734216 + parent: 2 + - uid: 7288 + components: + - type: Transform + pos: -22.50063,6.4473796 + parent: 2 +- proto: MagazineLightRifleUranium + entities: + - uid: 7289 + components: + - type: Transform + pos: -22.630838,6.408317 + parent: 2 +- proto: MagazinePistolHighCapacity + entities: + - uid: 15436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 106.34017,27.191193 + parent: 2 +- proto: MagazinePistolSubMachineGun + entities: + - uid: 445 + components: + - type: Transform + parent: 438 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 446 + components: + - type: Transform + parent: 438 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 447 + components: + - type: Transform + parent: 438 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 448 + components: + - type: Transform + parent: 438 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: MagazineRifle + entities: + - uid: 449 + components: + - type: Transform + parent: 438 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 450 + components: + - type: Transform + parent: 438 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 451 + components: + - type: Transform + parent: 438 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 452 + components: + - type: Transform + parent: 438 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: MagazineShotgunSlug + entities: + - uid: 15491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.62336,-54.40881 + parent: 2 +- proto: MailBag + entities: + - uid: 12235 + components: + - type: Transform + pos: 83.731445,-17.54399 + parent: 2 +- proto: MailTeleporter + entities: + - uid: 3975 + components: + - type: Transform + pos: 84.5,-17.5 + parent: 2 +- proto: MaintenanceFluffSpawner + entities: + - uid: 2043 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 + - uid: 7291 + components: + - type: Transform + pos: 81.5,-37.5 + parent: 2 + - uid: 12285 + components: + - type: Transform + pos: -31.5,10.5 + parent: 2 + - uid: 12451 + components: + - type: Transform + pos: 65.5,31.5 + parent: 2 + - uid: 12478 + components: + - type: Transform + pos: 43.5,14.5 + parent: 2 + - uid: 13592 + components: + - type: Transform + pos: 41.5,-27.5 + parent: 2 + - uid: 13594 + components: + - type: Transform + pos: 39.5,-30.5 + parent: 2 + - uid: 13696 + components: + - type: Transform + pos: 48.5,-14.5 + parent: 2 + - uid: 14876 + components: + - type: Transform + pos: 42.5,27.5 + parent: 2 + - uid: 15033 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 +- proto: MaintenancePlantSpawner + entities: + - uid: 7292 + components: + - type: Transform + pos: 77.5,-40.5 + parent: 2 + - uid: 7293 + components: + - type: Transform + pos: 85.5,-41.5 + parent: 2 + - uid: 7294 + components: + - type: Transform + pos: 75.5,-34.5 + parent: 2 + - uid: 7295 + components: + - type: Transform + pos: 82.5,-34.5 + parent: 2 + - uid: 12270 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 12271 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 12272 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 + - uid: 12273 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - uid: 12274 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 12275 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - uid: 12276 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 + - uid: 12277 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 + - uid: 12278 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - uid: 12428 + components: + - type: Transform + pos: 90.5,-11.5 + parent: 2 + - uid: 13676 + components: + - type: Transform + pos: 45.5,-14.5 + parent: 2 + - uid: 13677 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 2 + - uid: 13678 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 13679 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 2 + - uid: 13681 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - uid: 13682 + components: + - type: Transform + pos: 28.5,-25.5 + parent: 2 + - uid: 13683 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 2 + - uid: 13684 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 2 + - uid: 13685 + components: + - type: Transform + pos: 28.5,-28.5 + parent: 2 + - uid: 13686 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 2 + - uid: 13687 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - uid: 13688 + components: + - type: Transform + pos: 41.5,-26.5 + parent: 2 + - uid: 13689 + components: + - type: Transform + pos: 41.5,-22.5 + parent: 2 + - uid: 13690 + components: + - type: Transform + pos: 38.5,-27.5 + parent: 2 + - uid: 13691 + components: + - type: Transform + pos: 44.5,-30.5 + parent: 2 + - uid: 13692 + components: + - type: Transform + pos: 48.5,-23.5 + parent: 2 + - uid: 13693 + components: + - type: Transform + pos: 51.5,-23.5 + parent: 2 + - uid: 13695 + components: + - type: Transform + pos: 42.5,-13.5 + parent: 2 + - uid: 13710 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 2 + - uid: 14202 + components: + - type: Transform + pos: 47.5,-15.5 + parent: 2 + - uid: 14203 + components: + - type: Transform + pos: 47.5,-18.5 + parent: 2 +- proto: MaintenanceToolSpawner + entities: + - uid: 7296 + components: + - type: Transform + pos: 76.5,-26.5 + parent: 2 + - uid: 7297 + components: + - type: Transform + pos: 59.5,9.5 + parent: 2 + - uid: 7298 + components: + - type: Transform + pos: 81.5,-37.5 + parent: 2 + - uid: 12269 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 12281 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - uid: 12284 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 + - uid: 12452 + components: + - type: Transform + pos: 64.5,31.5 + parent: 2 + - uid: 12463 + components: + - type: Transform + pos: 74.5,-29.5 + parent: 2 + - uid: 12477 + components: + - type: Transform + pos: 43.5,13.5 + parent: 2 + - uid: 13559 + components: + - type: Transform + pos: 46.5,-28.5 + parent: 2 + - uid: 13697 + components: + - type: Transform + pos: 48.5,-16.5 + parent: 2 + - uid: 13698 + components: + - type: Transform + pos: 48.5,-15.5 + parent: 2 + - uid: 13899 + components: + - type: Transform + pos: 49.5,-28.5 + parent: 2 + - uid: 13981 + components: + - type: Transform + pos: 69.5,-24.5 + parent: 2 + - uid: 14152 + components: + - type: Transform + pos: 71.5,-34.5 + parent: 2 + - uid: 14342 + components: + - type: Transform + pos: 94.5,-47.5 + parent: 2 + - uid: 14343 + components: + - type: Transform + pos: 95.5,-47.5 + parent: 2 + - uid: 14362 + components: + - type: Transform + pos: 89.5,-40.5 + parent: 2 + - uid: 14549 + components: + - type: Transform + pos: 43.5,27.5 + parent: 2 + - uid: 14875 + components: + - type: Transform + pos: 41.5,27.5 + parent: 2 + - uid: 15117 + components: + - type: Transform + pos: 25.5,29.5 + parent: 2 + - uid: 15118 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 7299 + components: + - type: Transform + pos: 72.5,-26.5 + parent: 2 + - uid: 7300 + components: + - type: Transform + pos: 75.5,-24.5 + parent: 2 + - uid: 7301 + components: + - type: Transform + pos: 81.5,-36.5 + parent: 2 + - uid: 12287 + components: + - type: Transform + pos: -40.5,10.5 + parent: 2 + - uid: 12427 + components: + - type: Transform + pos: 89.5,-9.5 + parent: 2 + - uid: 13579 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 2 + - uid: 13583 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 2 + - uid: 13699 + components: + - type: Transform + pos: 46.5,-13.5 + parent: 2 + - uid: 13700 + components: + - type: Transform + pos: 42.5,-15.5 + parent: 2 + - uid: 14339 + components: + - type: Transform + pos: 92.5,-49.5 + parent: 2 + - uid: 14553 + components: + - type: Transform + pos: 95.5,-31.5 + parent: 2 + - uid: 14878 + components: + - type: Transform + pos: 40.5,27.5 + parent: 2 + - uid: 15116 + components: + - type: Transform + pos: 30.5,28.5 + parent: 2 + - uid: 15167 + components: + - type: Transform + pos: 33.5,23.5 + parent: 2 +- proto: MaterialCloth + entities: + - uid: 7302 + components: + - type: Transform + pos: 31.164621,-4.2026916 + parent: 2 +- proto: MaterialDurathread + entities: + - uid: 7303 + components: + - type: Transform + pos: 31.367897,-4.5776916 + parent: 2 +- proto: MatterBinStockPart + entities: + - uid: 15596 + components: + - type: Transform + pos: 50.273655,26.557308 + parent: 2 +- proto: Mattress + entities: + - uid: 7304 + components: + - type: Transform + pos: -28.5,2.5 + parent: 2 + - uid: 14901 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 15520 + components: + - type: Transform + pos: 82.5,-58.5 + parent: 2 +- proto: MechEquipmentGrabber + entities: + - uid: 7305 + components: + - type: Transform + pos: 79.54337,-27.26054 + parent: 2 +- proto: MedicalBed + entities: + - uid: 7306 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 + - uid: 7307 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 2 + - uid: 7308 + components: + - type: Transform + pos: 46.5,-11.5 + parent: 2 + - uid: 7309 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 2 + - uid: 7310 + components: + - type: Transform + pos: 46.5,-9.5 + parent: 2 + - uid: 15517 + components: + - type: Transform + pos: 82.5,-57.5 + parent: 2 +- proto: MedicalRecordsComputerCircuitboard + entities: + - uid: 7311 + components: + - type: Transform + pos: 95.520676,23.544687 + parent: 2 +- proto: MedicalScanner + entities: + - uid: 7312 + components: + - type: Transform + pos: 67.5,-12.5 + parent: 2 +- proto: MedicalTechFab + entities: + - uid: 7313 + components: + - type: Transform + pos: 66.5,-6.5 + parent: 2 +- proto: MediumXenoArtifactItem + entities: + - uid: 3253 + components: + - type: Transform + parent: 3252 + - type: Artifact + isSuppressed: True + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: MedkitAdvancedFilled + entities: + - uid: 7314 + components: + - type: Transform + pos: -24.095499,4.5940437 + parent: 2 + - uid: 15164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.12986,23.380371 + parent: 2 +- proto: MedkitBruteFilled + entities: + - uid: 7315 + components: + - type: Transform + pos: 65.31244,-8.565161 + parent: 2 + - uid: 7316 + components: + - type: Transform + pos: 65.31244,-8.402117 + parent: 2 +- proto: MedkitBurnFilled + entities: + - uid: 7317 + components: + - type: Transform + pos: 64.80467,-8.565161 + parent: 2 + - uid: 7318 + components: + - type: Transform + pos: 64.80467,-8.420233 + parent: 2 +- proto: MedkitCombatFilled + entities: + - uid: 7319 + components: + - type: Transform + pos: -24.626749,4.6096687 + parent: 2 + - uid: 7320 + components: + - type: Transform + pos: 75.49291,-44.507378 + parent: 2 +- proto: MedkitFilled + entities: + - uid: 7321 + components: + - type: Transform + pos: -24.095499,4.7190437 + parent: 2 + - uid: 7322 + components: + - type: Transform + pos: 64.321014,-8.565161 + parent: 2 + - uid: 7323 + components: + - type: Transform + pos: 64.321014,-8.456465 + parent: 2 + - uid: 7324 + components: + - type: Transform + pos: 82.40403,-46.92716 + parent: 2 + - uid: 7325 + components: + - type: Transform + pos: 2.5493975,-6.544211 + parent: 2 +- proto: MedkitOxygenFilled + entities: + - uid: 7326 + components: + - type: Transform + pos: 66.34612,-8.601393 + parent: 2 + - uid: 7327 + components: + - type: Transform + pos: 66.36426,-8.420233 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 7328 + components: + - type: Transform + pos: 66.85389,-8.637625 + parent: 2 + - uid: 7329 + components: + - type: Transform + pos: 66.85389,-8.438349 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 7330 + components: + - type: Transform + pos: 65.82021,-8.583277 + parent: 2 + - uid: 7331 + components: + - type: Transform + pos: 65.83835,-8.420233 + parent: 2 +- proto: MicroManipulatorStockPart + entities: + - uid: 15607 + components: + - type: Transform + pos: 50.55358,26.674303 + parent: 2 + - uid: 15609 + components: + - type: Transform + pos: 50.54393,26.548916 + parent: 2 + - uid: 15611 + components: + - type: Transform + pos: 50.54393,26.491047 + parent: 2 +- proto: MicrophoneInstrument + entities: + - uid: 7332 + components: + - type: Transform + pos: -34.250175,6.6246347 + parent: 2 +- proto: MicrowaveMachineCircuitboard + entities: + - uid: 221 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: MindShieldImplanter + entities: + - uid: 3299 + components: + - type: Transform + parent: 3298 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 3300 + components: + - type: Transform + parent: 3298 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 3301 + components: + - type: Transform + parent: 3298 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: MiniGravityGeneratorCircuitboard + entities: + - uid: 222 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: MiningDrill + entities: + - uid: 7333 + components: + - type: Transform + pos: 82.55402,-46.40216 + parent: 2 +- proto: Mirror + entities: + - uid: 7334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-6.5 + parent: 2 + - uid: 14328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 100.5,-42.5 + parent: 2 +- proto: MoonBattlemap + entities: + - uid: 15026 + components: + - type: Transform + pos: 28.5,24.5 + parent: 2 +- proto: MopBucket + entities: + - uid: 7335 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 7336 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 +- proto: MopItem + entities: + - uid: 7337 + components: + - type: Transform + pos: 20.386055,-4.289492 + parent: 2 + - uid: 7338 + components: + - type: Transform + pos: 20.511055,-4.351992 + parent: 2 + - uid: 12288 + components: + - type: Transform + pos: 9.411911,-7.673149 + parent: 2 +- proto: Morgue + entities: + - uid: 7339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-14.5 + parent: 2 + - uid: 7340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-15.5 + parent: 2 + - uid: 7341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-16.5 + parent: 2 + - uid: 7342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-17.5 + parent: 2 + - uid: 7343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-18.5 + parent: 2 + - uid: 7344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-19.5 + parent: 2 + - uid: 7345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-14.5 + parent: 2 + - uid: 7346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-20.5 + parent: 2 + - uid: 7347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-20.5 + parent: 2 + - uid: 7348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-18.5 + parent: 2 + - uid: 7349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-15.5 + parent: 2 + - uid: 7350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-19.5 + parent: 2 + - uid: 7351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-18.5 + parent: 2 + - uid: 7352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-15.5 + parent: 2 + - uid: 7353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-14.5 + parent: 2 + - uid: 7355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-19.5 + parent: 2 + - uid: 7356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-18.5 + parent: 2 + - uid: 7357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-15.5 + parent: 2 + - uid: 7358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-14.5 + parent: 2 + - uid: 7359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-16.5 + parent: 2 + - uid: 7360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-16.5 + parent: 2 + - uid: 7361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-16.5 + parent: 2 + - uid: 7362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-18.5 + parent: 2 + - uid: 13375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-27.5 + parent: 2 + - uid: 13376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-27.5 + parent: 2 + - uid: 13377 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 2 + - uid: 13378 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 2 +- proto: Multitool + entities: + - uid: 7363 + components: + - type: Transform + pos: -39.708126,-4.26582 + parent: 2 + - uid: 7364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.34816,-20.650152 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: MusicBoxInstrument + entities: + - uid: 7365 + components: + - type: Transform + pos: 15.7178135,-3.4904351 + parent: 2 +- proto: MysteryFigureBox + entities: + - uid: 15040 + components: + - type: Transform + parent: 15039 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15041 + components: + - type: Transform + parent: 15039 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15042 + components: + - type: Transform + parent: 15039 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15043 + components: + - type: Transform + parent: 15039 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15044 + components: + - type: Transform + parent: 15039 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15045 + components: + - type: Transform + parent: 15039 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15046 + components: + - type: Transform + parent: 15039 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15047 + components: + - type: Transform + parent: 15039 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15048 + components: + - type: Transform + parent: 15039 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15049 + components: + - type: Transform + parent: 15039 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15050 + components: + - type: Transform + parent: 15039 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15051 + components: + - type: Transform + parent: 15039 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15052 + components: + - type: Transform + parent: 15039 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15053 + components: + - type: Transform + parent: 15039 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15054 + components: + - type: Transform + parent: 15039 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15055 + components: + - type: Transform + parent: 15039 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15056 + components: + - type: Transform + parent: 15039 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: NitrogenCanister + entities: + - uid: 7366 + components: + - type: Transform + pos: 76.5,-46.5 + parent: 2 + - uid: 7367 + components: + - type: Transform + pos: 83.5,34.5 + parent: 2 + - uid: 7368 + components: + - type: Transform + pos: 83.5,33.5 + parent: 2 + - uid: 14714 + components: + - type: Transform + pos: 45.5,23.5 + parent: 2 + - uid: 14728 + components: + - type: Transform + pos: 45.5,24.5 + parent: 2 +- proto: NitrousOxideCanister + entities: + - uid: 14490 + components: + - type: Transform + pos: 81.5,-29.5 + parent: 2 + - uid: 14716 + components: + - type: Transform + pos: 43.5,23.5 + parent: 2 + - uid: 14726 + components: + - type: Transform + pos: 43.5,24.5 + parent: 2 +- proto: NitrousOxideTankFilled + entities: + - uid: 7369 + components: + - type: Transform + pos: 63.648167,-16.482033 + parent: 2 + - uid: 7370 + components: + - type: Transform + pos: 63.648167,-18.477108 + parent: 2 +- proto: NodeScanner + entities: + - uid: 7371 + components: + - type: Transform + pos: 64.52294,9.998833 + parent: 2 +- proto: NoticeBoard + entities: + - uid: 13331 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 14569 + components: + - type: Transform + pos: 24.5,3.5 + parent: 2 +- proto: NTFlag + entities: + - uid: 7372 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 + - uid: 7373 + components: + - type: Transform + pos: -53.5,-5.5 + parent: 2 + - uid: 7374 + components: + - type: Transform + pos: -63.5,4.5 + parent: 2 + - uid: 7375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-2.5 + parent: 2 +- proto: NuclearBomb + entities: + - uid: 7376 + components: + - type: Transform + pos: -65.5,1.5 + parent: 2 +- proto: NuclearBombKeg + entities: + - uid: 7377 + components: + - type: Transform + pos: 93.5,-21.5 + parent: 2 +- proto: NukeDiskFake + entities: + - uid: 12439 + components: + - type: Transform + pos: 106.489746,-22.808123 + parent: 2 +- proto: OilJarCorn + entities: + - uid: 6530 + components: + - type: Transform + parent: 12086 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: OilJarGhee + entities: + - uid: 6545 + components: + - type: Transform + parent: 12086 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: OilJarOlive + entities: + - uid: 7595 + components: + - type: Transform + parent: 12086 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: OperatingTable + entities: + - uid: 7378 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 + - uid: 7379 + components: + - type: Transform + pos: 64.5,-16.5 + parent: 2 + - uid: 7380 + components: + - type: Transform + pos: 64.5,-18.5 + parent: 2 + - uid: 7381 + components: + - type: Transform + pos: 51.5,14.5 + parent: 2 +- proto: Oracle + entities: + - uid: 7382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,13.5 + parent: 2 +- proto: OreBag + entities: + - uid: 7383 + components: + - type: Transform + pos: 84.489716,-47.20819 + parent: 2 + - uid: 7384 + components: + - type: Transform + pos: 84.489716,-47.28319 + parent: 2 + - uid: 7385 + components: + - type: Transform + pos: 84.489716,-47.414444 + parent: 2 + - uid: 9627 + components: + - type: Transform + pos: 50.60602,27.692308 + parent: 2 + - uid: 10319 + components: + - type: Transform + pos: 50.355965,27.817389 + parent: 2 +- proto: OreBox + entities: + - uid: 7386 + components: + - type: Transform + pos: 78.5,-38.5 + parent: 2 + - uid: 15584 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 +- proto: OreProcessor + entities: + - uid: 7387 + components: + - type: Transform + pos: 78.5,-47.5 + parent: 2 +- proto: OreProcessorMachineCircuitboard + entities: + - uid: 15559 + components: + - type: Transform + pos: 50.435276,26.760582 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 7388 + components: + - type: Transform + pos: 76.5,-44.5 + parent: 2 + - uid: 7389 + components: + - type: Transform + pos: 84.5,34.5 + parent: 2 + - uid: 7390 + components: + - type: Transform + pos: 84.5,33.5 + parent: 2 + - uid: 14715 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 + - uid: 14727 + components: + - type: Transform + pos: 44.5,24.5 + parent: 2 +- proto: Paper + entities: + - uid: 7391 + components: + - type: Transform + pos: 83.3978,-50.068333 + parent: 2 + - type: Paper + content: >- + Запись 1: я ощущаю, как моё тело гниёт, я не смогу долго прожить, мне нужно сделать все дела в этом теле, пока не стало поздно. + + + + + ###об##и-но-#е#у### + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 7392 + components: + - type: Transform + pos: -48.769382,-4.6824355 + parent: 2 + - type: Paper + stampState: paper_stamp-syndicate + stampedBy: + - stampedColor: '#850000FF' + stampedName: stamp-component-stamped-name-syndicate + - stampedColor: '#00BE00FF' + stampedName: stamp-component-stamped-name-approved + content: >- + UwU? + + + + + + То####ши-##-Ме#### + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 7393 + components: + - type: Transform + pos: 58.61704,-4.349195 + parent: 2 + - uid: 7394 + components: + - type: Transform + pos: 58.487865,-4.2198844 + parent: 2 + - uid: 7395 + components: + - type: Transform + pos: 52.770355,-3.314712 + parent: 2 + - uid: 7396 + components: + - type: Transform + pos: 52.659637,-3.3886037 + parent: 2 + - uid: 7397 + components: + - type: Transform + pos: 56.94512,-10.372185 + parent: 2 + - uid: 7398 + components: + - type: Transform + pos: 57.14811,-10.372185 + parent: 2 + - uid: 7399 + components: + - type: Transform + pos: 38.710007,-3.4092474 + parent: 2 + - uid: 7400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.597794,-4.515827 + parent: 2 + - uid: 7401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.429043,-4.2908273 + parent: 2 + - uid: 7402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.785294,-4.1220775 + parent: 2 + - uid: 7403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.560293,-2.397077 + parent: 2 + - uid: 7404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.316544,-2.490827 + parent: 2 + - uid: 7405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.522793,-2.5845773 + parent: 2 + - uid: 7406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.579044,-2.6783273 + parent: 2 + - uid: 7407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.35743,9.585401 + parent: 2 + - uid: 7408 + components: + - type: Transform + pos: 62.728287,-27.54551 + parent: 2 + - uid: 7409 + components: + - type: Transform + pos: 62.45627,-27.328117 + parent: 2 + - uid: 7410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.595789,-2.559896 + parent: 2 + - uid: 7411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.408289,-2.809896 + parent: 2 + - uid: 7412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.298914,-2.669271 + parent: 2 + - uid: 7413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.392664,-2.559896 + parent: 2 + - uid: 7414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.689539,-3.091146 + parent: 2 + - uid: 7415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.361414,-3.122396 + parent: 2 + - uid: 7416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.705164,-2.872396 + parent: 2 + - uid: 7417 + components: + - type: Transform + pos: -6.470789,-4.309896 + parent: 2 + - uid: 7418 + components: + - type: Transform + pos: -6.580164,-4.606771 + parent: 2 + - uid: 7419 + components: + - type: Transform + pos: -6.845789,-4.325521 + parent: 2 + - uid: 7420 + components: + - type: Transform + pos: -6.923914,-4.669271 + parent: 2 + - uid: 7421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.609932,8.458669 + parent: 2 + - uid: 7422 + components: + - type: Transform + pos: -15.786125,0.8360214 + parent: 2 + - type: Paper + content: >2- + + + + + + + + + + + [head=3]Кто это сделал?[/head] + - uid: 7423 + components: + - type: Transform + pos: 83.38916,-15.358614 + parent: 2 + - uid: 7424 + components: + - type: Transform + pos: 83.35791,-17.342989 + parent: 2 + - uid: 7425 + components: + - type: Transform + pos: 83.436035,-17.467989 + parent: 2 + - uid: 7426 + components: + - type: Transform + pos: 83.51416,-15.514864 + parent: 2 + - uid: 7427 + components: + - type: Transform + pos: 29.196747,-2.4385126 + parent: 2 + - uid: 7428 + components: + - type: Transform + pos: 29.415497,-2.5791376 + parent: 2 + - uid: 7429 + components: + - type: Transform + pos: 29.227997,-2.5947626 + parent: 2 + - uid: 7430 + components: + - type: Transform + pos: 29.493622,-2.6416376 + parent: 2 + - uid: 7431 + components: + - type: Transform + pos: 77.2901,-19.272469 + parent: 2 + - uid: 7432 + components: + - type: Transform + pos: 77.308846,-19.459969 + parent: 2 + - uid: 7433 + components: + - type: Transform + pos: 83.37686,-25.43839 + parent: 2 + - uid: 7434 + components: + - type: Transform + pos: 74.30476,-14.774159 + parent: 2 + - type: Paper + content: >- + Запись 2: мои друзья вечно погибают, я остаюсь одна, воскресить их не получается, что-то мешает мне... Вот только что? + + + + + ######ши-##-Ме##### + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 7435 + components: + - type: Transform + pos: 8.706822,-18.496624 + parent: 2 + - type: Paper + content: >- + Запись 3, я осталась одна. + + + + + + ###*#@&@^@^#&@&@@! + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 7436 + components: + - type: Transform + pos: 91.28047,-8.663528 + parent: 2 + - type: Paper + content: Джеси, ты можеш, наконец-то, ПОЧИНИТЬ ЭТОТ ГРЁБАНЫЙ ПЕРЕРАБОЧИК МУСОРА!!! + - uid: 12562 + components: + - type: Transform + pos: 45.432163,31.633997 + parent: 2 + - type: Paper + content: >2- + + + + + + [head=3]Кружок кожевного ремесла [/head] + [head=3]двумя секторами ниже[/head] + - uid: 12937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.58221,11.633363 + parent: 2 + - uid: 12938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.50403,11.617738 + parent: 2 + - uid: 12939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5353,11.570863 + parent: 2 + - uid: 13426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.501808,-23.522234 + parent: 2 + - type: Paper + content: >- + Галака-3. Там где начался наш путь. + + + P.s. Выжили не все. Но мы все ждём вас! + - uid: 14897 + components: + - type: Transform + pos: 38.40138,24.242168 + parent: 2 + - type: Paper + content: >- + Я отправил фотографии начальству, мне остаётся только надеется, что меня спасут... на случай худшего исхода я оставил в одном из хвостовых оперений ресурсы для агентов... + + + ответа нет уже около 12 часов... Кажется мне крышка... блять..... + + + Прошло 42 часа... Я сру под себя... хочется пить... Кажется время прощатся... Так вот зачем не дали ту таблетку... Хехе +- proto: PaperBin10 + entities: + - uid: 7437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-2.5 + parent: 2 + - uid: 7438 + components: + - type: Transform + pos: -35.5,7.5 + parent: 2 +- proto: PaperBin20 + entities: + - uid: 7439 + components: + - type: Transform + pos: 53.5,18.5 + parent: 2 + - uid: 7440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,10.5 + parent: 2 + - uid: 7441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-7.5 + parent: 2 + - uid: 11582 + components: + - type: Transform + pos: -69.5,-2.5 + parent: 2 + - uid: 11605 + components: + - type: Transform + pos: -52.5,2.5 + parent: 2 + - uid: 12515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + - uid: 12961 + components: + - type: Transform + pos: -40.5,1.5 + parent: 2 + - uid: 12979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,42.5 + parent: 2 + - uid: 14747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 +- proto: PaperBin5 + entities: + - uid: 7442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,8.5 + parent: 2 + - uid: 7443 + components: + - type: Transform + pos: 72.5,-21.5 + parent: 2 +- proto: PaperCaptainsThoughts + entities: + - uid: 7444 + components: + - type: Transform + pos: -56.680023,6.7054276 + parent: 2 + - uid: 7445 + components: + - type: Transform + pos: -56.961273,6.6429276 + parent: 2 + - uid: 7446 + components: + - type: Transform + pos: -56.836273,6.4241776 + parent: 2 +- proto: PaperCNCSheet + entities: + - uid: 346 + components: + - type: Transform + pos: 31.420622,26.635805 + parent: 2 + - uid: 14985 + components: + - type: Transform + pos: 31.639534,26.43268 + parent: 2 + - uid: 14994 + components: + - type: Transform + pos: 30.435514,26.62018 + parent: 2 + - uid: 14995 + components: + - type: Transform + pos: 31.217346,26.448305 + parent: 2 + - uid: 14997 + components: + - type: Transform + pos: 30.935886,26.604555 + parent: 2 + - uid: 14999 + components: + - type: Transform + pos: 30.560608,26.635805 + parent: 2 + - uid: 15000 + components: + - type: Transform + pos: 30.77952,26.49518 + parent: 2 + - uid: 15036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.308266,23.772112 + parent: 2 +- proto: PaperDoor + entities: + - uid: 7447 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 +- proto: PaperOffice + entities: + - uid: 7448 + components: + - type: Transform + pos: -11.422421,4.4413524 + parent: 2 + - uid: 7449 + components: + - type: Transform + pos: -11.734921,4.3788524 + parent: 2 + - uid: 7450 + components: + - type: Transform + pos: -11.391171,4.4101024 + parent: 2 + - uid: 7451 + components: + - type: Transform + pos: -11.203671,4.5038524 + parent: 2 + - uid: 7452 + components: + - type: Transform + pos: -11.641171,4.3788524 + parent: 2 + - uid: 7453 + components: + - type: Transform + pos: -11.516171,4.4882274 + parent: 2 + - uid: 7454 + components: + - type: Transform + pos: -11.438046,4.4413524 + parent: 2 + - uid: 7455 + components: + - type: Transform + pos: -11.375546,4.3944774 + parent: 2 +- proto: PaperWrittenAMEScribbles + entities: + - uid: 12940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.61123,9.013185 + parent: 2 +- proto: PartRodMetal + entities: + - uid: 7456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.540184,-56.445377 + parent: 2 + - uid: 7457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.42768,-56.370377 + parent: 2 +- proto: Pen + entities: + - uid: 7458 + components: + - type: Transform + pos: 57.09275,-10.483023 + parent: 2 + - uid: 7459 + components: + - type: Transform + pos: -35.450176,7.112135 + parent: 2 + - uid: 7460 + components: + - type: Transform + pos: 83.686035,-15.264864 + parent: 2 + - uid: 7461 + components: + - type: Transform + pos: 83.70166,-17.280489 + parent: 2 + - uid: 7462 + components: + - type: Transform + pos: 72.01054,-21.309446 + parent: 2 + - uid: 7464 + components: + - type: Transform + pos: 63.70575,27.749767 + parent: 2 + - uid: 7465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.682938,5.052499 + parent: 2 + - uid: 11593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.464767,-1.7855163 + parent: 2 + - uid: 11594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.464767,-0.67614126 + parent: 2 + - uid: 11595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.417854,0.13635874 + parent: 2 + - uid: 11596 + components: + - type: Transform + pos: -55.653893,0.32385874 + parent: 2 + - uid: 11597 + components: + - type: Transform + pos: -55.716442,-0.94176626 + parent: 2 + - uid: 11598 + components: + - type: Transform + pos: -55.73208,-1.7698913 + parent: 2 + - uid: 12010 + components: + - type: Transform + pos: 83.14486,-25.412575 + parent: 2 +- proto: PenCap + entities: + - uid: 7466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.38315,6.5023026 + parent: 2 +- proto: PewLeft + entities: + - uid: 7467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,7.5 + parent: 2 + - uid: 7468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,7.5 + parent: 2 + - uid: 7469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,9.5 + parent: 2 + - uid: 7470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,9.5 + parent: 2 + - uid: 7471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,5.5 + parent: 2 + - uid: 7472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,5.5 + parent: 2 +- proto: PewMiddle + entities: + - uid: 7473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,7.5 + parent: 2 + - uid: 7474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,7.5 + parent: 2 + - uid: 7475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,9.5 + parent: 2 + - uid: 7476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,5.5 + parent: 2 + - uid: 7477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,5.5 + parent: 2 + - uid: 7478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,9.5 + parent: 2 +- proto: PewRight + entities: + - uid: 7479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,9.5 + parent: 2 + - uid: 7480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,7.5 + parent: 2 + - uid: 7481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,9.5 + parent: 2 + - uid: 7482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,7.5 + parent: 2 + - uid: 7483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,5.5 + parent: 2 + - uid: 7484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,5.5 + parent: 2 +- proto: PillCanister + entities: + - uid: 13271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.81894,-29.669275 + parent: 2 +- proto: PillCanisterBicaridine + entities: + - uid: 14102 + components: + - type: Transform + pos: 52.36835,-9.29174 + parent: 2 +- proto: PillCanisterDermaline + entities: + - uid: 14150 + components: + - type: Transform + pos: 52.383987,-9.63549 + parent: 2 +- proto: PillCanisterDexalin + entities: + - uid: 14103 + components: + - type: Transform + pos: 52.64981,-9.44799 + parent: 2 +- proto: PillCanisterDylovene + entities: + - uid: 14170 + components: + - type: Transform + pos: 52.634174,-9.85424 + parent: 2 +- proto: PillCanisterHyronalin + entities: + - uid: 14173 + components: + - type: Transform + pos: 52.430897,-10.463615 + parent: 2 +- proto: PillCanisterKelotane + entities: + - uid: 14171 + components: + - type: Transform + pos: 52.41526,-10.057365 + parent: 2 +- proto: PillCanisterTricordrazine + entities: + - uid: 14172 + components: + - type: Transform + pos: 52.712357,-10.244865 + parent: 2 +- proto: PillDermaline + entities: + - uid: 14177 + components: + - type: Transform + pos: 48.318462,-10.338615 + parent: 2 + - uid: 14178 + components: + - type: Transform + pos: 48.427917,-10.32299 + parent: 2 + - uid: 14179 + components: + - type: Transform + pos: 48.553013,-10.307365 + parent: 2 + - uid: 14180 + components: + - type: Transform + pos: 48.709377,-10.29174 + parent: 2 + - uid: 14181 + components: + - type: Transform + pos: 48.38101,-10.47924 + parent: 2 + - uid: 14182 + components: + - type: Transform + pos: 48.506104,-10.44799 + parent: 2 + - uid: 14183 + components: + - type: Transform + pos: 48.64683,-10.44799 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 7487 + components: + - type: Transform + pos: 71.5,33.5 + parent: 2 + - uid: 7488 + components: + - type: Transform + pos: 83.5,30.5 + parent: 2 + - uid: 7489 + components: + - type: Transform + pos: 83.5,29.5 + parent: 2 + - uid: 12379 + components: + - type: Transform + pos: 86.5,39.5 + parent: 2 + - uid: 12380 + components: + - type: Transform + pos: 87.5,39.5 + parent: 2 + - uid: 14669 + components: + - type: Transform + pos: 41.5,23.5 + parent: 2 + - uid: 14722 + components: + - type: Transform + pos: 41.5,24.5 + parent: 2 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 7490 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 + - uid: 7491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,6.5 + parent: 2 + - uid: 7492 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 + - uid: 7493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,6.5 + parent: 2 +- proto: PlasmaWindow + entities: + - uid: 7494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,28.5 + parent: 2 + - uid: 7495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,10.5 + parent: 2 +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 7497 + components: + - type: Transform + pos: 82.5,-14.5 + parent: 2 + - uid: 7498 + components: + - type: Transform + pos: 92.5,-7.5 + parent: 2 +- proto: PlastitaniumPwindow + entities: + - uid: 12320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 2 + - uid: 12323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 2 + - uid: 12327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 2 + - uid: 12337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 2 + - uid: 12338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 2 +- proto: PlushieAbductorAgent + entities: + - uid: 15492 + components: + - type: Transform + pos: 78.64723,-53.598637 + parent: 2 +- proto: PlushieLizard + entities: + - uid: 12484 + components: + - type: MetaData + desc: Поговаривают, что это сшитая на заказ игрушка, про одного инженера-унати с ЦК, который строит станции и корабли. Только у меня теперь один вопрос - почему он работает уборщиком? + name: плюшевый Элай-ДаБлай + - type: Transform + pos: -54.48662,2.5385127 + parent: 2 +- proto: PlushieMothRandom + entities: + - uid: 14434 + components: + - type: Transform + pos: 91.06088,-44.732986 + parent: 2 +- proto: PlushieTrystan + entities: + - uid: 7500 + components: + - type: Transform + pos: -17.209026,0.7738569 + parent: 2 + - uid: 13347 + components: + - type: Transform + pos: 16.613102,-24.43807 + parent: 2 +- proto: PortableGeneratorJrPacman + entities: + - uid: 7503 + components: + - type: Transform + pos: 94.5,7.5 + parent: 2 + - uid: 7504 + components: + - type: Transform + pos: 94.5,8.5 + parent: 2 + - uid: 7505 + components: + - type: Transform + pos: 94.5,9.5 + parent: 2 + - uid: 7506 + components: + - type: Transform + pos: 94.5,10.5 + parent: 2 + - uid: 7507 + components: + - type: Transform + pos: 78.5,-42.5 + parent: 2 +- proto: PortableGeneratorPacman + entities: + - uid: 7508 + components: + - type: Transform + pos: 91.5,26.5 + parent: 2 + - uid: 7509 + components: + - type: Transform + pos: 91.5,27.5 + parent: 2 + - uid: 7583 + components: + - type: Transform + pos: 94.5,6.5 + parent: 2 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 7510 + components: + - type: Transform + pos: 91.5,25.5 + parent: 2 + - uid: 7582 + components: + - type: Transform + pos: 94.5,5.5 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 7511 + components: + - type: Transform + pos: 82.5,21.5 + parent: 2 + - uid: 7512 + components: + - type: Transform + pos: 82.5,20.5 + parent: 2 + - uid: 7513 + components: + - type: Transform + pos: 82.5,19.5 + parent: 2 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 12814 + components: + - type: MetaData + desc: '"О боже, спаси и сохрани отдел, не дав всяким бездарям дотянутся до сверхважных элементов станции!"' + name: Инженерная Молитва + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,41.5 + parent: 2 + - uid: 15809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,28.5 + parent: 2 +- proto: PosterContrabandClown + entities: + - uid: 7514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-1.5 + parent: 2 +- proto: PosterContrabandFunPolice + entities: + - uid: 7515 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 +- proto: PosterContrabandGreyTide + entities: + - uid: 7516 + components: + - type: Transform + pos: 70.5,-18.5 + parent: 2 +- proto: PosterContrabandRebelsUnite + entities: + - uid: 7517 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 +- proto: PosterLegit12Gauge + entities: + - uid: 7518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 2 +- proto: PosterLegitFuckAround + entities: + - uid: 7519 + components: + - type: Transform + pos: 75.5,-43.5 + parent: 2 +- proto: PosterLegitHighClassMartini + entities: + - uid: 7520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 2 +- proto: PosterLegitIan + entities: + - uid: 7521 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 +- proto: PosterLegitMoreBread + entities: + - uid: 7522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 2 +- proto: PosterLegitNanomichiAd + entities: + - uid: 13501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-5.5 + parent: 2 +- proto: PosterLegitPieSlice + entities: + - uid: 7523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 2 +- proto: PosterLegitSecWatch + entities: + - uid: 7524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,3.5 + parent: 2 +- proto: PosterLegitThereIsNoGasGiant + entities: + - uid: 7525 + components: + - type: Transform + pos: -38.5,4.5 + parent: 2 +- proto: PottedPlant11 + entities: + - uid: 13264 + components: + - type: Transform + pos: 9.973927,-0.51853967 + parent: 2 +- proto: PottedPlant15 + entities: + - uid: 7526 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 7527 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 13240 + components: + - type: Transform + pos: 2.0141332,-0.4644252 + parent: 2 + - type: Physics + bodyStatus: InAir + angularDamping: 0 + linearDamping: 0 + fixedRotation: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PhysShapeCircle + radius: 0.1 + position: 0,0 + mask: + - HighImpassable + layer: [] + density: 190 + hard: True + restitution: 0 + friction: 0.4 + throw-fixture: + shape: !type:PhysShapeCircle + radius: 0.1 + position: 0,0 + mask: + - Impassable + - HighImpassable + - BulletImpassable + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: ThrownItem + landTime: 30002.5739776 + thrownTime: 30002.2699977 + thrower: invalid + animate: False + - uid: 14862 + components: + - type: Transform + pos: 22.012125,22.563837 + parent: 2 +- proto: PottedPlant17 + entities: + - uid: 13265 + components: + - type: Transform + pos: -1.4875109,-3.426049 + parent: 2 +- proto: PottedPlant2 + entities: + - uid: 7528 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 7529 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 7530 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 +- proto: PottedPlant23 + entities: + - uid: 13269 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 +- proto: PottedPlantBioluminscent + entities: + - uid: 7531 + components: + - type: Transform + pos: 27.5,10.5 + parent: 2 + - uid: 7532 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - uid: 7533 + components: + - type: Transform + pos: 25.5,8.5 + parent: 2 + - uid: 7534 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - uid: 7535 + components: + - type: Transform + pos: 32.5,6.5 + parent: 2 + - uid: 7536 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 7537 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - uid: 7538 + components: + - type: Transform + pos: 27.5,4.5 + parent: 2 +- proto: PottedPlantRandom + entities: + - uid: 7539 + components: + - type: Transform + pos: 58.5,-25.5 + parent: 2 + - uid: 7540 + components: + - type: Transform + pos: 62.5,-12.5 + parent: 2 + - uid: 7541 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 + - uid: 7543 + components: + - type: Transform + pos: 66.5,-2.5 + parent: 2 + - uid: 7544 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 7545 + components: + - type: Transform + pos: 63.5,-29.5 + parent: 2 + - uid: 7546 + components: + - type: Transform + pos: 59.5,7.5 + parent: 2 + - uid: 7547 + components: + - type: Transform + pos: 54.5,7.5 + parent: 2 + - uid: 14189 + components: + - type: Transform + pos: 59.5,-2.5 + parent: 2 + - uid: 14192 + components: + - type: Transform + pos: 57.5,-4.5 + parent: 2 +- proto: PottedPlantRandomPlastic + entities: + - uid: 12305 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 7548 + components: + - type: Transform + pos: 76.5,-17.5 + parent: 2 + - uid: 7549 + components: + - type: Transform + pos: 50.5,22.5 + parent: 2 + - uid: 11529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,-5.5 + parent: 2 + - uid: 12355 + components: + - type: Transform + pos: 83.5,9.5 + parent: 2 + - uid: 12356 + components: + - type: Transform + pos: 83.5,8.5 + parent: 2 +- proto: PowerComputerCircuitboard + entities: + - uid: 223 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: PoweredLEDSmallLight + entities: + - uid: 7550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-3.5 + parent: 2 + - uid: 7551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-4.5 + parent: 2 + - uid: 7552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-2.5 + parent: 2 + - uid: 7553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-10.5 + parent: 2 + - uid: 7554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-12.5 + parent: 2 + - uid: 7555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-11.5 + parent: 2 +- proto: Poweredlight + entities: + - uid: 3270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 2 + - uid: 3943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 2 + - uid: 3944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,11.5 + parent: 2 + - uid: 3945 + components: + - type: Transform + pos: -58.5,-6.5 + parent: 2 + - uid: 6767 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 2 + - uid: 7556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,2.5 + parent: 2 + - uid: 7557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,5.5 + parent: 2 + - uid: 7561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-1.5 + parent: 2 + - uid: 7562 + components: + - type: Transform + pos: -43.5,-2.5 + parent: 2 + - uid: 7565 + components: + - type: Transform + pos: -34.5,8.5 + parent: 2 + - uid: 7566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,1.5 + parent: 2 + - uid: 7570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-3.5 + parent: 2 + - uid: 7572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,5.5 + parent: 2 + - uid: 7573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,3.5 + parent: 2 + - uid: 7576 + components: + - type: Transform + pos: 97.5,-17.5 + parent: 2 + - uid: 7577 + components: + - type: Transform + pos: 89.5,-17.5 + parent: 2 + - uid: 7578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,-21.5 + parent: 2 + - uid: 7580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-8.5 + parent: 2 + - uid: 7585 + components: + - type: Transform + pos: -46.5,3.5 + parent: 2 + - uid: 7586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,0.5 + parent: 2 + - uid: 7587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,0.5 + parent: 2 + - uid: 7588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,3.5 + parent: 2 + - uid: 7590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,3.5 + parent: 2 + - uid: 7591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,8.5 + parent: 2 + - uid: 7592 + components: + - type: Transform + pos: -29.5,6.5 + parent: 2 + - uid: 7593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-0.5 + parent: 2 + - uid: 7594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-4.5 + parent: 2 + - uid: 7596 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 7597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,7.5 + parent: 2 + - uid: 7598 + components: + - type: Transform + pos: -47.5,8.5 + parent: 2 + - uid: 7599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,5.5 + parent: 2 + - uid: 7600 + components: + - type: Transform + pos: -43.5,8.5 + parent: 2 + - uid: 7601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,5.5 + parent: 2 + - uid: 7602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-15.5 + parent: 2 + - uid: 7603 + components: + - type: Transform + pos: 40.5,-2.5 + parent: 2 + - uid: 7604 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 + - uid: 7605 + components: + - type: Transform + pos: 41.5,-7.5 + parent: 2 + - uid: 7607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-11.5 + parent: 2 + - uid: 7608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-11.5 + parent: 2 + - uid: 7609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-12.5 + parent: 2 + - uid: 7610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-12.5 + parent: 2 + - uid: 7611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-12.5 + parent: 2 + - uid: 7612 + components: + - type: Transform + pos: 54.5,-10.5 + parent: 2 + - uid: 7613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-4.5 + parent: 2 + - uid: 7615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-4.5 + parent: 2 + - uid: 7616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-2.5 + parent: 2 + - uid: 7618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-2.5 + parent: 2 + - uid: 7619 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 7620 + components: + - type: Transform + pos: 57.5,-14.5 + parent: 2 + - uid: 7621 + components: + - type: Transform + pos: 55.5,-14.5 + parent: 2 + - uid: 7622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-20.5 + parent: 2 + - uid: 7624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-20.5 + parent: 2 + - uid: 7625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-20.5 + parent: 2 + - uid: 7626 + components: + - type: Transform + pos: 50.5,-14.5 + parent: 2 + - uid: 7627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-0.5 + parent: 2 + - uid: 7628 + components: + - type: Transform + pos: 65.5,-22.5 + parent: 2 + - uid: 7629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-25.5 + parent: 2 + - uid: 7630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-19.5 + parent: 2 + - uid: 7631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,3.5 + parent: 2 + - uid: 7632 + components: + - type: Transform + pos: 64.5,-10.5 + parent: 2 + - uid: 7633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-8.5 + parent: 2 + - uid: 7634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-6.5 + parent: 2 + - uid: 7635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-8.5 + parent: 2 + - uid: 7636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 102.5,-19.5 + parent: 2 + - uid: 7637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-5.5 + parent: 2 + - uid: 7639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-2.5 + parent: 2 + - uid: 7640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-2.5 + parent: 2 + - uid: 7641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-16.5 + parent: 2 + - uid: 7642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,5.5 + parent: 2 + - uid: 7643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-3.5 + parent: 2 + - uid: 7645 + components: + - type: Transform + pos: 48.5,-7.5 + parent: 2 + - uid: 7646 + components: + - type: Transform + pos: 58.5,-27.5 + parent: 2 + - uid: 7647 + components: + - type: Transform + pos: 93.5,-17.5 + parent: 2 + - uid: 7648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,-29.5 + parent: 2 + - uid: 7649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,11.5 + parent: 2 + - uid: 7650 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 + - uid: 7651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-21.5 + parent: 2 + - uid: 7652 + components: + - type: Transform + pos: -54.5,3.5 + parent: 2 + - uid: 7653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-0.5 + parent: 2 + - uid: 7654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-0.5 + parent: 2 + - uid: 7655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-4.5 + parent: 2 + - uid: 7656 + components: + - type: Transform + pos: -60.5,9.5 + parent: 2 + - uid: 7657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,6.5 + parent: 2 + - uid: 7658 + components: + - type: Transform + pos: -64.5,9.5 + parent: 2 + - uid: 7659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,6.5 + parent: 2 + - uid: 7660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-1.5 + parent: 2 + - uid: 7661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,3.5 + parent: 2 + - uid: 7662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,7.5 + parent: 2 + - uid: 7663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,8.5 + parent: 2 + - uid: 7664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-6.5 + parent: 2 + - uid: 7665 + components: + - type: Transform + pos: -69.5,8.5 + parent: 2 + - uid: 7666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,4.5 + parent: 2 + - uid: 7667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-1.5 + parent: 2 + - uid: 7668 + components: + - type: Transform + pos: 77.5,-19.5 + parent: 2 + - uid: 7669 + components: + - type: Transform + pos: 72.5,-19.5 + parent: 2 + - uid: 7670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-20.5 + parent: 2 + - uid: 7671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-20.5 + parent: 2 + - uid: 7672 + components: + - type: Transform + pos: 79.5,-23.5 + parent: 2 + - uid: 7674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-27.5 + parent: 2 + - uid: 7676 + components: + - type: Transform + pos: -64.5,-3.5 + parent: 2 + - uid: 7677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-7.5 + parent: 2 + - uid: 7678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,-1.5 + parent: 2 + - uid: 7679 + components: + - type: Transform + pos: -60.5,-3.5 + parent: 2 + - uid: 7680 + components: + - type: Transform + pos: -53.5,-6.5 + parent: 2 + - uid: 7681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-47.5 + parent: 2 + - uid: 7682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-47.5 + parent: 2 + - uid: 7683 + components: + - type: Transform + pos: 81.5,-44.5 + parent: 2 + - uid: 7684 + components: + - type: Transform + pos: 85.5,-44.5 + parent: 2 + - uid: 7685 + components: + - type: Transform + pos: 74.5,-44.5 + parent: 2 + - uid: 7686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,5.5 + parent: 2 + - uid: 7687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-0.5 + parent: 2 + - uid: 7688 + components: + - type: Transform + pos: 88.5,-25.5 + parent: 2 + - uid: 7689 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 + - uid: 7709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-0.5 + parent: 2 + - uid: 7762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-25.5 + parent: 2 + - uid: 7763 + components: + - type: Transform + pos: 70.5,2.5 + parent: 2 + - uid: 7764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,14.5 + parent: 2 + - uid: 7765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,1.5 + parent: 2 + - uid: 7766 + components: + - type: Transform + pos: 88.5,-2.5 + parent: 2 + - uid: 7768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,7.5 + parent: 2 + - uid: 7998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-2.5 + parent: 2 + - uid: 8008 + components: + - type: Transform + pos: 51.5,14.5 + parent: 2 + - uid: 8029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,11.5 + parent: 2 + - uid: 8030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 2 + - uid: 8031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,-27.5 + parent: 2 + - uid: 8062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,4.5 + parent: 2 + - uid: 12228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 2 + - uid: 12229 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - uid: 12651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-9.5 + parent: 2 + - uid: 12652 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - uid: 12653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-10.5 + parent: 2 + - uid: 12654 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 12708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 2 + - uid: 12726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 2 + - uid: 12727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 2 + - uid: 12728 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 + - uid: 12729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-0.5 + parent: 2 + - uid: 12730 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 12731 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 12733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,4.5 + parent: 2 + - uid: 12734 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 12738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-9.5 + parent: 2 + - uid: 12739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-3.5 + parent: 2 + - uid: 12742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-3.5 + parent: 2 + - uid: 12743 + components: + - type: Transform + pos: 30.5,2.5 + parent: 2 + - uid: 12745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,13.5 + parent: 2 + - uid: 12746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-0.5 + parent: 2 + - uid: 12747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-8.5 + parent: 2 + - uid: 12748 + components: + - type: Transform + pos: 51.5,2.5 + parent: 2 + - uid: 12749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-2.5 + parent: 2 + - uid: 12750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-2.5 + parent: 2 + - uid: 12755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,9.5 + parent: 2 + - uid: 12757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,19.5 + parent: 2 + - uid: 12758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,18.5 + parent: 2 + - uid: 12771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,23.5 + parent: 2 + - uid: 12772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,26.5 + parent: 2 + - uid: 12773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,34.5 + parent: 2 + - uid: 12781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,39.5 + parent: 2 + - uid: 12782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,46.5 + parent: 2 + - uid: 12783 + components: + - type: Transform + pos: 85.5,49.5 + parent: 2 + - uid: 12784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 103.5,47.5 + parent: 2 + - uid: 12807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,44.5 + parent: 2 + - uid: 12808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,42.5 + parent: 2 + - uid: 12809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,44.5 + parent: 2 + - uid: 12812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,46.5 + parent: 2 + - uid: 12815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,30.5 + parent: 2 + - uid: 12830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,32.5 + parent: 2 + - uid: 12831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,24.5 + parent: 2 + - uid: 12835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,24.5 + parent: 2 + - uid: 12842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,5.5 + parent: 2 + - uid: 12843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-5.5 + parent: 2 + - uid: 12844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,-7.5 + parent: 2 + - uid: 12845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-7.5 + parent: 2 + - uid: 12846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-12.5 + parent: 2 + - uid: 12848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-12.5 + parent: 2 + - uid: 12856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,9.5 + parent: 2 + - uid: 12857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,18.5 + parent: 2 + - uid: 12858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,25.5 + parent: 2 + - uid: 12859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,25.5 + parent: 2 + - uid: 12860 + components: + - type: Transform + pos: 62.5,29.5 + parent: 2 + - uid: 12861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,24.5 + parent: 2 + - uid: 12862 + components: + - type: Transform + pos: 64.5,25.5 + parent: 2 + - uid: 12863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,20.5 + parent: 2 + - uid: 12866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,16.5 + parent: 2 + - uid: 12867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,18.5 + parent: 2 + - uid: 12868 + components: + - type: Transform + pos: 68.5,13.5 + parent: 2 + - uid: 12869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,7.5 + parent: 2 + - uid: 12872 + components: + - type: Transform + pos: 73.5,10.5 + parent: 2 + - uid: 12874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,4.5 + parent: 2 + - uid: 12876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,15.5 + parent: 2 + - uid: 12877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,15.5 + parent: 2 + - uid: 12878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,19.5 + parent: 2 + - uid: 12879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,19.5 + parent: 2 + - uid: 12881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,18.5 + parent: 2 + - uid: 12911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,12.5 + parent: 2 + - uid: 13183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-4.5 + parent: 2 + - uid: 13316 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 +- proto: PoweredlightOrange + entities: + - uid: 7690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,5.5 + parent: 2 + - uid: 7691 + components: + - type: Transform + pos: -1.5,10.5 + parent: 2 + - uid: 7692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 2 + - uid: 7693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 2 + - uid: 7694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,7.5 + parent: 2 + - uid: 7695 + components: + - type: Transform + pos: -9.5,10.5 + parent: 2 +- proto: PoweredLightPostSmall + entities: + - uid: 7696 + components: + - type: Transform + pos: 84.5,-54.5 + parent: 2 + - uid: 7697 + components: + - type: Transform + pos: 81.5,-49.5 + parent: 2 + - uid: 15477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-59.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 1887 + components: + - type: Transform + pos: 74.5,-40.5 + parent: 2 + - uid: 2600 + components: + - type: Transform + pos: 84.5,-29.5 + parent: 2 + - uid: 3271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 2 + - uid: 3272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 2 + - uid: 4391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,25.5 + parent: 2 + - uid: 7589 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 7614 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 7638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,-23.5 + parent: 2 + - uid: 7644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,-23.5 + parent: 2 + - uid: 7698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-3.5 + parent: 2 + - uid: 7699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-3.5 + parent: 2 + - uid: 7700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-3.5 + parent: 2 + - uid: 7701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-15.5 + parent: 2 + - uid: 7702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-15.5 + parent: 2 + - uid: 7703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-8.5 + parent: 2 + - uid: 7704 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 7705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 2 + - uid: 7706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 2 + - uid: 7707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 + - uid: 7708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-20.5 + parent: 2 + - uid: 7710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 2 + - uid: 7711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 2 + - uid: 7713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-8.5 + parent: 2 + - uid: 7714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 2 + - uid: 7715 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - uid: 7716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-5.5 + parent: 2 + - uid: 7717 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 7718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 2 + - uid: 7719 + components: + - type: Transform + pos: 82.5,-41.5 + parent: 2 + - uid: 7720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-35.5 + parent: 2 + - uid: 7721 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 7722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6996 + - uid: 7723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6996 + - uid: 7724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6996 + - uid: 7725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6996 + - uid: 7726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6997 + - uid: 7727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6997 + - uid: 7728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6996 + - uid: 7729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6996 + - uid: 7730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,4.5 + parent: 2 + - uid: 7731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,5.5 + parent: 2 + - uid: 7732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,10.5 + parent: 2 + - uid: 7733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,10.5 + parent: 2 + - uid: 7734 + components: + - type: Transform + pos: 84.5,-9.5 + parent: 2 + - uid: 7761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-23.5 + parent: 2 + - uid: 7767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-2.5 + parent: 2 + - uid: 7995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-3.5 + parent: 2 + - uid: 8063 + components: + - type: Transform + pos: 68.5,-14.5 + parent: 2 + - uid: 12523 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - uid: 12655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-4.5 + parent: 2 + - uid: 12656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-3.5 + parent: 2 + - uid: 12658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,2.5 + parent: 2 + - uid: 12659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,7.5 + parent: 2 + - uid: 12704 + components: + - type: Transform + pos: -30.5,11.5 + parent: 2 + - uid: 12705 + components: + - type: Transform + pos: -39.5,10.5 + parent: 2 + - uid: 12706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,11.5 + parent: 2 + - uid: 12707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,9.5 + parent: 2 + - uid: 12709 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 + - uid: 12710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,12.5 + parent: 2 + - uid: 12711 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 + - uid: 12732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,9.5 + parent: 2 + - uid: 12735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-11.5 + parent: 2 + - uid: 12736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-9.5 + parent: 2 + - uid: 12741 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 2 + - uid: 12751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,1.5 + parent: 2 + - uid: 12752 + components: + - type: Transform + pos: 85.5,-4.5 + parent: 2 + - uid: 12753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,-10.5 + parent: 2 + - uid: 12754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,-10.5 + parent: 2 + - uid: 12756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,12.5 + parent: 2 + - uid: 12774 + components: + - type: Transform + pos: 70.5,33.5 + parent: 2 + - uid: 12775 + components: + - type: Transform + pos: 70.5,31.5 + parent: 2 + - uid: 12776 + components: + - type: Transform + pos: 70.5,29.5 + parent: 2 + - uid: 12777 + components: + - type: Transform + pos: 70.5,27.5 + parent: 2 + - uid: 12778 + components: + - type: Transform + pos: 70.5,25.5 + parent: 2 + - uid: 12779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,35.5 + parent: 2 + - uid: 12780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,39.5 + parent: 2 + - uid: 12798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,32.5 + parent: 2 + - uid: 12799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,30.5 + parent: 2 + - uid: 12802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,30.5 + parent: 2 + - uid: 12803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,32.5 + parent: 2 + - uid: 12806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,33.5 + parent: 2 + - uid: 12810 + components: + - type: Transform + pos: 61.5,46.5 + parent: 2 + - uid: 12811 + components: + - type: Transform + pos: 61.5,43.5 + parent: 2 + - uid: 12813 + components: + - type: Transform + pos: 85.5,37.5 + parent: 2 + - uid: 12816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,32.5 + parent: 2 + - uid: 12832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,25.5 + parent: 2 + - uid: 12834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,31.5 + parent: 2 + - uid: 12836 + components: + - type: Transform + pos: 80.5,32.5 + parent: 2 + - uid: 12837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,39.5 + parent: 2 + - uid: 12838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,36.5 + parent: 2 + - uid: 12839 + components: + - type: Transform + pos: 66.5,39.5 + parent: 2 + - uid: 12840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,52.5 + parent: 2 + - uid: 12841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 103.5,43.5 + parent: 2 + - uid: 12847 + components: + - type: Transform + pos: 74.5,-6.5 + parent: 2 + - uid: 12849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-30.5 + parent: 2 + - uid: 12864 + components: + - type: Transform + pos: 61.5,19.5 + parent: 2 + - uid: 12865 + components: + - type: Transform + pos: 61.5,21.5 + parent: 2 + - uid: 12870 + components: + - type: Transform + pos: 66.5,6.5 + parent: 2 + - uid: 12871 + components: + - type: Transform + pos: 66.5,8.5 + parent: 2 + - uid: 12873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,11.5 + parent: 2 + - uid: 12875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,8.5 + parent: 2 + - uid: 12880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,16.5 + parent: 2 + - uid: 12909 + components: + - type: Transform + pos: 69.5,-24.5 + parent: 2 + - uid: 13239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-22.5 + parent: 2 + - uid: 13338 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 + - uid: 13386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-7.5 + parent: 2 + - uid: 13711 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 13712 + components: + - type: Transform + pos: 44.5,-13.5 + parent: 2 + - uid: 13713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-18.5 + parent: 2 + - uid: 13714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-25.5 + parent: 2 + - uid: 13735 + components: + - type: Transform + pos: 70.5,-40.5 + parent: 2 + - uid: 13736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-43.5 + parent: 2 + - uid: 13737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-43.5 + parent: 2 + - uid: 13738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-42.5 + parent: 2 + - uid: 13739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-43.5 + parent: 2 + - uid: 13740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-40.5 + parent: 2 + - uid: 13741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-45.5 + parent: 2 + - uid: 13742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-45.5 + parent: 2 + - uid: 13829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-31.5 + parent: 2 + - uid: 13950 + components: + - type: Transform + pos: 64.5,-31.5 + parent: 2 + - uid: 13955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-25.5 + parent: 2 + - uid: 13956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-28.5 + parent: 2 + - uid: 13957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-27.5 + parent: 2 + - uid: 13958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-25.5 + parent: 2 + - uid: 13959 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 2 + - uid: 13960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-30.5 + parent: 2 + - uid: 13963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-31.5 + parent: 2 + - uid: 13993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-41.5 + parent: 2 + - uid: 14089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-30.5 + parent: 2 + - uid: 14091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-34.5 + parent: 2 + - uid: 14169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-26.5 + parent: 2 + - uid: 14277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 99.5,-47.5 + parent: 2 + - uid: 14278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 102.5,-45.5 + parent: 2 + - uid: 14402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,-38.5 + parent: 2 + - uid: 14403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-45.5 + parent: 2 + - uid: 14404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,-42.5 + parent: 2 + - uid: 14407 + components: + - type: Transform + pos: 93.5,-47.5 + parent: 2 + - uid: 14416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 103.5,-48.5 + parent: 2 + - uid: 14462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,25.5 + parent: 2 + - uid: 14556 + components: + - type: Transform + pos: 89.5,-29.5 + parent: 2 + - uid: 14557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,-28.5 + parent: 2 + - uid: 14582 + components: + - type: Transform + pos: 16.5,29.5 + parent: 2 + - uid: 14608 + components: + - type: Transform + pos: 23.5,30.5 + parent: 2 + - uid: 14677 + components: + - type: Transform + pos: 38.5,25.5 + parent: 2 + - uid: 14828 + components: + - type: Transform + pos: 41.5,25.5 + parent: 2 + - uid: 14829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,25.5 + parent: 2 + - uid: 14830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,18.5 + parent: 2 + - uid: 14831 + components: + - type: Transform + pos: 42.5,15.5 + parent: 2 + - uid: 14859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,27.5 + parent: 2 + - uid: 14883 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 + - uid: 14884 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 + - uid: 14885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,24.5 + parent: 2 + - uid: 14886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,23.5 + parent: 2 + - uid: 14887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,26.5 + parent: 2 + - uid: 14904 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 + - uid: 15004 + components: + - type: Transform + pos: 25.5,24.5 + parent: 2 + - uid: 15160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,31.5 + parent: 2 + - uid: 15161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,24.5 + parent: 2 + - uid: 15162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,29.5 + parent: 2 + - uid: 15163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,28.5 + parent: 2 +- proto: PoweredSmallLightMaintenance + entities: + - uid: 7735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-17.5 + parent: 2 + - uid: 7736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-30.5 + parent: 2 + - uid: 12907 + components: + - type: Transform + pos: 86.5,-14.5 + parent: 2 +- proto: PrizeCounter + entities: + - uid: 13225 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 2 +- proto: PrizeTicket10 + entities: + - uid: 13242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.487595,-24.401724 + parent: 2 +- proto: Protolathe + entities: + - uid: 7737 + components: + - type: Transform + pos: 58.5,6.5 + parent: 2 +- proto: PsychBed + entities: + - uid: 7738 + components: + - type: Transform + pos: 56.5,-4.5 + parent: 2 + - uid: 7739 + components: + - type: Transform + pos: 63.5,29.5 + parent: 2 +- proto: PuddleVomit + entities: + - uid: 13254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-22.5 + parent: 2 + - uid: 13255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-22.5 + parent: 2 +- proto: Rack + entities: + - uid: 2387 + components: + - type: Transform + pos: 43.5,13.5 + parent: 2 + - uid: 7740 + components: + - type: Transform + pos: 64.5,-6.5 + parent: 2 + - uid: 7741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-56.5 + parent: 2 + - uid: 7742 + components: + - type: Transform + pos: 78.5,-27.5 + parent: 2 + - uid: 7744 + components: + - type: Transform + pos: 76.5,-14.5 + parent: 2 + - uid: 7745 + components: + - type: Transform + pos: 79.5,-27.5 + parent: 2 + - uid: 7746 + components: + - type: Transform + pos: 89.5,23.5 + parent: 2 + - uid: 7747 + components: + - type: Transform + pos: 91.5,23.5 + parent: 2 + - uid: 7748 + components: + - type: Transform + pos: 90.5,23.5 + parent: 2 + - uid: 7749 + components: + - type: Transform + pos: 95.5,33.5 + parent: 2 + - uid: 7750 + components: + - type: Transform + pos: 95.5,23.5 + parent: 2 + - uid: 7751 + components: + - type: Transform + pos: 73.5,-44.5 + parent: 2 + - uid: 7752 + components: + - type: Transform + pos: 74.5,-44.5 + parent: 2 + - uid: 7753 + components: + - type: Transform + pos: 75.5,-44.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + pos: -48.5,-1.5 + parent: 2 + - uid: 7755 + components: + - type: Transform + pos: 95.5,26.5 + parent: 2 + - uid: 7756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-21.5 + parent: 2 + - uid: 7757 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 2 + - uid: 7758 + components: + - type: Transform + pos: 85.5,-35.5 + parent: 2 + - uid: 7759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-36.5 + parent: 2 + - uid: 7760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-37.5 + parent: 2 + - uid: 12268 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 12279 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - uid: 12282 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 + - uid: 12283 + components: + - type: Transform + pos: -31.5,10.5 + parent: 2 + - uid: 12426 + components: + - type: Transform + pos: 89.5,-9.5 + parent: 2 + - uid: 12449 + components: + - type: Transform + pos: 65.5,31.5 + parent: 2 + - uid: 12450 + components: + - type: Transform + pos: 64.5,31.5 + parent: 2 + - uid: 12476 + components: + - type: Transform + pos: 43.5,14.5 + parent: 2 + - uid: 13483 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 2 + - uid: 13484 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 2 + - uid: 13489 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 2 + - uid: 13578 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 2 + - uid: 13580 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 2 + - uid: 13591 + components: + - type: Transform + pos: 41.5,-27.5 + parent: 2 + - uid: 13674 + components: + - type: Transform + pos: 46.5,-13.5 + parent: 2 + - uid: 13675 + components: + - type: Transform + pos: 42.5,-15.5 + parent: 2 + - uid: 13898 + components: + - type: Transform + pos: 49.5,-28.5 + parent: 2 + - uid: 13972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-24.5 + parent: 2 + - uid: 14137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-32.5 + parent: 2 + - uid: 14333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,-49.5 + parent: 2 + - uid: 14359 + components: + - type: Transform + pos: 89.5,-40.5 + parent: 2 + - uid: 14526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,-31.5 + parent: 2 + - uid: 14596 + components: + - type: Transform + pos: 50.5,33.5 + parent: 2 + - uid: 14671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,18.5 + parent: 2 + - uid: 14737 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 + - uid: 14984 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 15113 + components: + - type: Transform + pos: 30.5,28.5 + parent: 2 + - uid: 15166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,23.5 + parent: 2 + - uid: 15557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,27.5 + parent: 2 + - uid: 15558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,26.5 + parent: 2 +- proto: RadarConsoleCircuitboard + entities: + - uid: 224 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: RadiationCollectorFullTank + entities: + - uid: 6785 + components: + - type: Transform + pos: 94.5,43.5 + parent: 2 + - uid: 11257 + components: + - type: Transform + pos: 93.5,51.5 + parent: 2 + - uid: 11258 + components: + - type: Transform + pos: 91.5,51.5 + parent: 2 + - uid: 11260 + components: + - type: Transform + pos: 92.5,51.5 + parent: 2 + - uid: 12563 + components: + - type: Transform + pos: 95.5,43.5 + parent: 2 + - uid: 12564 + components: + - type: Transform + pos: 92.5,43.5 + parent: 2 + - uid: 12565 + components: + - type: Transform + pos: 91.5,43.5 + parent: 2 + - uid: 12566 + components: + - type: Transform + pos: 94.5,51.5 + parent: 2 + - uid: 12567 + components: + - type: Transform + pos: 95.5,51.5 + parent: 2 + - uid: 12568 + components: + - type: Transform + pos: 93.5,43.5 + parent: 2 +- proto: RagItem + entities: + - uid: 7769 + components: + - type: Transform + pos: 7.234801,-6.44241 + parent: 2 +- proto: Railing + entities: + - uid: 7770 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 + - uid: 7771 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 7772 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 + - uid: 7773 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 7774 + components: + - type: Transform + pos: 60.5,43.5 + parent: 2 + - uid: 7776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-49.5 + parent: 2 + - uid: 7777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-50.5 + parent: 2 + - uid: 7778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-51.5 + parent: 2 + - uid: 7779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-52.5 + parent: 2 + - uid: 7780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-53.5 + parent: 2 + - uid: 7781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-52.5 + parent: 2 + - uid: 7782 + components: + - type: Transform + pos: 81.5,-51.5 + parent: 2 + - uid: 7783 + components: + - type: Transform + pos: 82.5,-51.5 + parent: 2 + - uid: 7784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-50.5 + parent: 2 + - uid: 7785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-49.5 + parent: 2 + - uid: 7787 + components: + - type: Transform + pos: 81.5,-55.5 + parent: 2 + - uid: 7788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-54.5 + parent: 2 + - uid: 7789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-54.5 + parent: 2 + - uid: 7790 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 7791 + components: + - type: Transform + pos: 31.5,14.5 + parent: 2 + - uid: 7792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,14.5 + parent: 2 + - uid: 7793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,14.5 + parent: 2 + - uid: 7794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,14.5 + parent: 2 + - uid: 7795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,14.5 + parent: 2 + - uid: 7796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,14.5 + parent: 2 + - uid: 7797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,14.5 + parent: 2 + - uid: 7798 + components: + - type: Transform + pos: 72.5,40.5 + parent: 2 + - uid: 7799 + components: + - type: Transform + pos: 70.5,39.5 + parent: 2 + - uid: 7800 + components: + - type: Transform + pos: 69.5,39.5 + parent: 2 + - uid: 7801 + components: + - type: Transform + pos: 65.5,38.5 + parent: 2 + - uid: 7802 + components: + - type: Transform + pos: 64.5,38.5 + parent: 2 + - uid: 7803 + components: + - type: Transform + pos: 62.5,37.5 + parent: 2 + - uid: 7804 + components: + - type: Transform + pos: 66.5,38.5 + parent: 2 + - uid: 7805 + components: + - type: Transform + pos: 68.5,39.5 + parent: 2 + - uid: 7806 + components: + - type: Transform + pos: 73.5,40.5 + parent: 2 + - uid: 7807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,20.5 + parent: 2 + - uid: 7808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,20.5 + parent: 2 + - uid: 7809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,21.5 + parent: 2 + - uid: 7810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 2 + - uid: 7811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 2 + - uid: 7812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 2 + - uid: 7813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 2 + - uid: 7814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-17.5 + parent: 2 + - uid: 7815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-16.5 + parent: 2 + - uid: 13564 + components: + - type: Transform + pos: 47.5,-31.5 + parent: 2 + - uid: 13565 + components: + - type: Transform + pos: 45.5,-31.5 + parent: 2 + - uid: 13566 + components: + - type: Transform + pos: 43.5,-31.5 + parent: 2 + - uid: 15457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-55.5 + parent: 2 + - uid: 15458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-56.5 + parent: 2 + - uid: 15461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-58.5 + parent: 2 + - uid: 15462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-57.5 + parent: 2 + - uid: 15463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-56.5 + parent: 2 + - uid: 15464 + components: + - type: Transform + pos: 79.5,-59.5 + parent: 2 +- proto: RailingCorner + entities: + - uid: 7817 + components: + - type: Transform + pos: 83.5,-51.5 + parent: 2 + - uid: 7818 + components: + - type: Transform + pos: 67.5,38.5 + parent: 2 + - uid: 7819 + components: + - type: Transform + pos: 71.5,39.5 + parent: 2 + - uid: 7820 + components: + - type: Transform + pos: 74.5,40.5 + parent: 2 + - uid: 7821 + components: + - type: Transform + pos: 63.5,37.5 + parent: 2 + - uid: 7822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-14.5 + parent: 2 + - uid: 15459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-59.5 + parent: 2 + - uid: 15460 + components: + - type: Transform + pos: 80.5,-59.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 7823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,20.5 + parent: 2 + - uid: 7824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,-51.5 + parent: 2 + - uid: 7827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,-54.5 + parent: 2 + - uid: 7828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,38.5 + parent: 2 + - uid: 7829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,39.5 + parent: 2 + - uid: 7830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,40.5 + parent: 2 + - uid: 15465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,-55.5 + parent: 2 + - uid: 15466 + components: + - type: Transform + pos: 78.5,-57.5 + parent: 2 + - uid: 15467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-58.5 + parent: 2 +- proto: RandomArcade + entities: + - uid: 13209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-24.5 + parent: 2 + - uid: 13210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-24.5 + parent: 2 + - uid: 13211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-24.5 + parent: 2 + - uid: 13212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-24.5 + parent: 2 + - uid: 13221 + components: + - type: Transform + pos: 39.5,-21.5 + parent: 2 + - uid: 13222 + components: + - type: Transform + pos: 38.5,-21.5 + parent: 2 + - uid: 13223 + components: + - type: Transform + pos: 37.5,-21.5 + parent: 2 + - uid: 13224 + components: + - type: Transform + pos: 36.5,-21.5 + parent: 2 + - uid: 13504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-28.5 + parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 7831 + components: + - type: Transform + pos: 66.5,5.5 + parent: 2 +- proto: RandomBoard + entities: + - uid: 7832 + components: + - type: Transform + pos: 89.5,13.5 + parent: 2 + - uid: 13491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-28.5 + parent: 2 + - uid: 14104 + components: + - type: Transform + pos: 70.5,-34.5 + parent: 2 + - uid: 14106 + components: + - type: Transform + pos: 70.5,-34.5 + parent: 2 + - uid: 14559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,-29.5 + parent: 2 + - uid: 14612 + components: + - type: Transform + pos: 50.5,33.5 + parent: 2 + - uid: 14688 + components: + - type: Transform + pos: 46.5,18.5 + parent: 2 +- proto: RandomBook + entities: + - uid: 7833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.973454,9.613218 + parent: 2 + - uid: 7834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.129818,9.472593 + parent: 2 + - uid: 7835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.44255,9.628843 + parent: 2 + - uid: 7836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.59892,9.456968 + parent: 2 + - uid: 12304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.466259,-9.351916 + parent: 2 + - uid: 12964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.520157,6.5737553 + parent: 2 + - uid: 12965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.49782,5.4487553 + parent: 2 + - uid: 12966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.529095,4.5425053 + parent: 2 + - uid: 13497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.49902,-22.146864 + parent: 2 +- proto: RandomBox + entities: + - uid: 13502 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 2 +- proto: RandomDrinkBottle + entities: + - uid: 13499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-28.5 + parent: 2 +- proto: RandomDrinkGlass + entities: + - uid: 7837 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 7838 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - uid: 13309 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 13310 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 13311 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - uid: 13312 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 +- proto: RandomDrinkSoda + entities: + - uid: 7839 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - uid: 13498 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 2 +- proto: RandomEngineerCorpseSpawner + entities: + - uid: 13548 + components: + - type: Transform + pos: 45.5,-29.5 + parent: 2 +- proto: RandomFoodBakedWhole + entities: + - uid: 7840 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 +- proto: RandomFoodMeal + entities: + - uid: 7841 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 7842 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 15149 + components: + - type: Transform + pos: 37.5,30.5 + parent: 2 + - uid: 15150 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 +- proto: RandomFoodSingle + entities: + - uid: 7843 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 7844 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 +- proto: RandomInstruments + entities: + - uid: 7845 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 7846 + components: + - type: Transform + pos: 59.5,9.5 + parent: 2 + - uid: 14611 + components: + - type: Transform + pos: 50.5,31.5 + parent: 2 +- proto: RandomPainting + entities: + - uid: 15614 + components: + - type: Transform + pos: -47.5,4.5 + parent: 2 + - uid: 15646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,18.5 + parent: 2 + - uid: 15727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,46.5 + parent: 2 + - uid: 15728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,45.5 + parent: 2 + - uid: 15729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,44.5 + parent: 2 + - uid: 15730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,46.5 + parent: 2 + - uid: 15731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,42.5 + parent: 2 + - uid: 15732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,22.5 + parent: 2 + - uid: 15733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,18.5 + parent: 2 + - uid: 15761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,10.5 + parent: 2 + - uid: 15762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,11.5 + parent: 2 + - uid: 15763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,8.5 + parent: 2 + - uid: 15795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,-42.5 + parent: 2 + - uid: 15796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 100.5,-44.5 + parent: 2 + - uid: 15797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 99.5,-48.5 + parent: 2 + - uid: 15798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 104.5,-46.5 + parent: 2 + - uid: 15799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 103.5,-42.5 + parent: 2 + - uid: 15846 + components: + - type: Transform + pos: 65.5,30.5 + parent: 2 + - uid: 15847 + components: + - type: Transform + pos: 62.5,30.5 + parent: 2 + - uid: 15848 + components: + - type: Transform + pos: 66.5,28.5 + parent: 2 + - uid: 15883 + components: + - type: Transform + pos: -44.5,4.5 + parent: 2 +- proto: RandomPosterAny + entities: + - uid: 15413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,-39.5 + parent: 2 + - uid: 15589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 2 + - uid: 15590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-11.5 + parent: 2 + - uid: 15613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,4.5 + parent: 2 + - uid: 15746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,29.5 + parent: 2 + - uid: 15747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,27.5 + parent: 2 + - uid: 15748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,23.5 + parent: 2 + - uid: 15749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,27.5 + parent: 2 + - uid: 15750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,31.5 + parent: 2 + - uid: 15751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,27.5 + parent: 2 + - uid: 15752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,31.5 + parent: 2 + - uid: 15753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,26.5 + parent: 2 + - uid: 15754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,26.5 + parent: 2 + - uid: 15755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,30.5 + parent: 2 + - uid: 15756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,30.5 + parent: 2 + - uid: 15757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,30.5 + parent: 2 + - uid: 15758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,22.5 + parent: 2 + - uid: 15759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,18.5 + parent: 2 + - uid: 15760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,14.5 + parent: 2 + - uid: 15764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-12.5 + parent: 2 + - uid: 15765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-10.5 + parent: 2 + - uid: 15766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-16.5 + parent: 2 + - uid: 15767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-21.5 + parent: 2 + - uid: 15768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-25.5 + parent: 2 + - uid: 15769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-25.5 + parent: 2 + - uid: 15770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-26.5 + parent: 2 + - uid: 15771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-26.5 + parent: 2 + - uid: 15772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-22.5 + parent: 2 + - uid: 15773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-29.5 + parent: 2 + - uid: 15774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-29.5 + parent: 2 + - uid: 15775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-27.5 + parent: 2 + - uid: 15776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-27.5 + parent: 2 + - uid: 15777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-31.5 + parent: 2 + - uid: 15778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-32.5 + parent: 2 + - uid: 15779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-28.5 + parent: 2 + - uid: 15780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-32.5 + parent: 2 + - uid: 15781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-35.5 + parent: 2 + - uid: 15782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-39.5 + parent: 2 + - uid: 15783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-45.5 + parent: 2 + - uid: 15784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-46.5 + parent: 2 + - uid: 15785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-38.5 + parent: 2 + - uid: 15788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-43.5 + parent: 2 + - uid: 15789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-47.5 + parent: 2 + - uid: 15790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,-48.5 + parent: 2 + - uid: 15791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,-45.5 + parent: 2 + - uid: 15792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,-42.5 + parent: 2 + - uid: 15793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,-46.5 + parent: 2 + - uid: 15794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,-43.5 + parent: 2 + - uid: 15800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,-35.5 + parent: 2 + - uid: 15801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,-32.5 + parent: 2 + - uid: 15802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,-29.5 + parent: 2 + - uid: 15803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,-24.5 + parent: 2 + - uid: 15804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,-27.5 + parent: 2 + - uid: 15805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,-8.5 + parent: 2 + - uid: 15881 + components: + - type: Transform + pos: 48.5,18.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 15615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,5.5 + parent: 2 + - uid: 15616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,9.5 + parent: 2 + - uid: 15617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,9.5 + parent: 2 +- proto: RandomPosterLegit + entities: + - uid: 10320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-0.5 + parent: 2 + - uid: 14660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,-26.5 + parent: 2 + - uid: 15560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,9.5 + parent: 2 + - uid: 15561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,5.5 + parent: 2 + - uid: 15562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,9.5 + parent: 2 + - uid: 15563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,1.5 + parent: 2 + - uid: 15564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,-1.5 + parent: 2 + - uid: 15565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,3.5 + parent: 2 + - uid: 15566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-2.5 + parent: 2 + - uid: 15567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-8.5 + parent: 2 + - uid: 15568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-8.5 + parent: 2 + - uid: 15569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-5.5 + parent: 2 + - uid: 15570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-4.5 + parent: 2 + - uid: 15571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-0.5 + parent: 2 + - uid: 15572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,3.5 + parent: 2 + - uid: 15573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,4.5 + parent: 2 + - uid: 15574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,2.5 + parent: 2 + - uid: 15576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-5.5 + parent: 2 + - uid: 15577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-9.5 + parent: 2 + - uid: 15578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-5.5 + parent: 2 + - uid: 15579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-10.5 + parent: 2 + - uid: 15580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-5.5 + parent: 2 + - uid: 15581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-10.5 + parent: 2 + - uid: 15582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-5.5 + parent: 2 + - uid: 15583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-10.5 + parent: 2 + - uid: 15585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-5.5 + parent: 2 + - uid: 15586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-11.5 + parent: 2 + - uid: 15587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 2 + - uid: 15588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-11.5 + parent: 2 + - uid: 15591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-7.5 + parent: 2 + - uid: 15592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-10.5 + parent: 2 + - uid: 15593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-10.5 + parent: 2 + - uid: 15594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-5.5 + parent: 2 + - uid: 15595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-3.5 + parent: 2 + - uid: 15597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-1.5 + parent: 2 + - uid: 15598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 2 + - uid: 15599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 2 + - uid: 15600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 2 + - uid: 15601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,11.5 + parent: 2 + - uid: 15602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,10.5 + parent: 2 + - uid: 15603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,8.5 + parent: 2 + - uid: 15604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,3.5 + parent: 2 + - uid: 15605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,5.5 + parent: 2 + - uid: 15606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,9.5 + parent: 2 + - uid: 15608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,8.5 + parent: 2 + - uid: 15610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,7.5 + parent: 2 + - uid: 15612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-1.5 + parent: 2 + - uid: 15619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,8.5 + parent: 2 + - uid: 15620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,2.5 + parent: 2 + - uid: 15621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-3.5 + parent: 2 + - uid: 15622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,11.5 + parent: 2 + - uid: 15623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,11.5 + parent: 2 + - uid: 15624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,7.5 + parent: 2 + - uid: 15625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,7.5 + parent: 2 + - uid: 15626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,11.5 + parent: 2 + - uid: 15627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,9.5 + parent: 2 + - uid: 15628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,5.5 + parent: 2 + - uid: 15629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,4.5 + parent: 2 + - uid: 15630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,7.5 + parent: 2 + - uid: 15631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,12.5 + parent: 2 + - uid: 15632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,3.5 + parent: 2 + - uid: 15633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,3.5 + parent: 2 + - uid: 15634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-1.5 + parent: 2 + - uid: 15635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,3.5 + parent: 2 + - uid: 15636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-1.5 + parent: 2 + - uid: 15637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,8.5 + parent: 2 + - uid: 15638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,10.5 + parent: 2 + - uid: 15639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,15.5 + parent: 2 + - uid: 15640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,15.5 + parent: 2 + - uid: 15641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,21.5 + parent: 2 + - uid: 15642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,18.5 + parent: 2 + - uid: 15643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,25.5 + parent: 2 + - uid: 15644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,28.5 + parent: 2 + - uid: 15645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,20.5 + parent: 2 + - uid: 15647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,14.5 + parent: 2 + - uid: 15648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,4.5 + parent: 2 + - uid: 15649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,7.5 + parent: 2 + - uid: 15650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,5.5 + parent: 2 + - uid: 15651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,9.5 + parent: 2 + - uid: 15652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,13.5 + parent: 2 + - uid: 15653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,22.5 + parent: 2 + - uid: 15654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,19.5 + parent: 2 + - uid: 15655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,21.5 + parent: 2 + - uid: 15656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,19.5 + parent: 2 + - uid: 15657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,7.5 + parent: 2 + - uid: 15658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,4.5 + parent: 2 + - uid: 15659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-1.5 + parent: 2 + - uid: 15660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-4.5 + parent: 2 + - uid: 15661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-1.5 + parent: 2 + - uid: 15662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-1.5 + parent: 2 + - uid: 15663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-9.5 + parent: 2 + - uid: 15664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-11.5 + parent: 2 + - uid: 15665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,-4.5 + parent: 2 + - uid: 15666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-4.5 + parent: 2 + - uid: 15668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-2.5 + parent: 2 + - uid: 15669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-10.5 + parent: 2 + - uid: 15670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-12.5 + parent: 2 + - uid: 15671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-9.5 + parent: 2 + - uid: 15672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-12.5 + parent: 2 + - uid: 15673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-9.5 + parent: 2 + - uid: 15674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-5.5 + parent: 2 + - uid: 15675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-3.5 + parent: 2 + - uid: 15676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-13.5 + parent: 2 + - uid: 15677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-15.5 + parent: 2 + - uid: 15678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-17.5 + parent: 2 + - uid: 15679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-14.5 + parent: 2 + - uid: 15680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-21.5 + parent: 2 + - uid: 15681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-21.5 + parent: 2 + - uid: 15682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-26.5 + parent: 2 + - uid: 15683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-30.5 + parent: 2 + - uid: 15684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-30.5 + parent: 2 + - uid: 15685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-30.5 + parent: 2 + - uid: 15686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-21.5 + parent: 2 + - uid: 15687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-19.5 + parent: 2 + - uid: 15688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-14.5 + parent: 2 + - uid: 15689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-14.5 + parent: 2 + - uid: 15690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-18.5 + parent: 2 + - uid: 15691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-18.5 + parent: 2 + - uid: 15692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-26.5 + parent: 2 + - uid: 15693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-28.5 + parent: 2 + - uid: 15694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-28.5 + parent: 2 + - uid: 15695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-28.5 + parent: 2 + - uid: 15696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,32.5 + parent: 2 + - uid: 15697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,-22.5 + parent: 2 + - uid: 15698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,-20.5 + parent: 2 + - uid: 15699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 99.5,-20.5 + parent: 2 + - uid: 15700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 103.5,-20.5 + parent: 2 + - uid: 15701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,-11.5 + parent: 2 + - uid: 15702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,-9.5 + parent: 2 + - uid: 15703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-8.5 + parent: 2 + - uid: 15704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-6.5 + parent: 2 + - uid: 15705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-13.5 + parent: 2 + - uid: 15706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,-1.5 + parent: 2 + - uid: 15707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,-5.5 + parent: 2 + - uid: 15708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,-2.5 + parent: 2 + - uid: 15709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,-0.5 + parent: 2 + - uid: 15710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,2.5 + parent: 2 + - uid: 15711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,1.5 + parent: 2 + - uid: 15712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,0.5 + parent: 2 + - uid: 15713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,4.5 + parent: 2 + - uid: 15714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,11.5 + parent: 2 + - uid: 15715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,4.5 + parent: 2 + - uid: 15716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,15.5 + parent: 2 + - uid: 15717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,22.5 + parent: 2 + - uid: 15718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,24.5 + parent: 2 + - uid: 15719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,27.5 + parent: 2 + - uid: 15720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,24.5 + parent: 2 + - uid: 15721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,33.5 + parent: 2 + - uid: 15722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,24.5 + parent: 2 + - uid: 15723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,33.5 + parent: 2 + - uid: 15724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,35.5 + parent: 2 + - uid: 15725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,38.5 + parent: 2 + - uid: 15726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,49.5 + parent: 2 + - uid: 15734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,25.5 + parent: 2 + - uid: 15806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,7.5 + parent: 2 + - uid: 15807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,11.5 + parent: 2 + - uid: 15808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,38.5 + parent: 2 +- proto: RandomScienceCorpseSpawner + entities: + - uid: 14896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,23.5 + parent: 2 +- proto: RandomSoap + entities: + - uid: 13503 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 +- proto: RandomSpawner + entities: + - uid: 13248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-23.5 + parent: 2 + - uid: 13249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-22.5 + parent: 2 + - uid: 13250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-23.5 + parent: 2 + - uid: 13251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-22.5 + parent: 2 + - uid: 13252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-22.5 + parent: 2 +- proto: RandomSpawner100 + entities: + - uid: 14977 + components: + - type: Transform + pos: 37.5,24.5 + parent: 2 + - uid: 14978 + components: + - type: Transform + pos: 38.5,24.5 + parent: 2 + - uid: 14979 + components: + - type: Transform + pos: 38.5,24.5 + parent: 2 + - uid: 14980 + components: + - type: Transform + pos: 37.5,24.5 + parent: 2 +- proto: RandomVending + entities: + - uid: 7847 + components: + - type: Transform + pos: 54.5,20.5 + parent: 2 + - uid: 11583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-0.5 + parent: 2 + - uid: 13477 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 2 +- proto: RandomVendingDrinks + entities: + - uid: 7848 + components: + - type: Transform + pos: 60.5,-29.5 + parent: 2 + - uid: 7849 + components: + - type: Transform + pos: 53.5,20.5 + parent: 2 + - uid: 7850 + components: + - type: Transform + pos: 68.5,-7.5 + parent: 2 + - uid: 11584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,0.5 + parent: 2 + - uid: 13461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-10.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 7851 + components: + - type: Transform + pos: 59.5,-29.5 + parent: 2 + - uid: 7852 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 7853 + components: + - type: Transform + pos: 68.5,-8.5 + parent: 2 + - uid: 11585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,1.5 + parent: 2 + - uid: 13460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 2 +- proto: RCD + entities: + - uid: 7854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.65674,25.663244 + parent: 2 +- proto: RCDAmmo + entities: + - uid: 7855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.78479,26.2697 + parent: 2 + - uid: 7856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.78479,26.2697 + parent: 2 + - uid: 7857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.78479,26.2697 + parent: 2 + - uid: 7858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.78479,26.2697 + parent: 2 +- proto: RCDEmpty + entities: + - uid: 14922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.7366,24.34181 + parent: 2 +- proto: ReagentContainerFlourSmall + entities: + - uid: 4141 + components: + - type: Transform + pos: 10.290597,5.964569 + parent: 2 + - uid: 12529 + components: + - type: Transform + pos: 10.493873,5.652069 + parent: 2 +- proto: ReagentContainerSugar + entities: + - uid: 12532 + components: + - type: Transform + pos: 10.415689,6.730194 + parent: 2 +- proto: ReagentGrinderMachineCircuitboard + entities: + - uid: 225 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Recycler + entities: + - uid: 7859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-7.5 + parent: 2 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 4335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,46.5 + parent: 2 + - uid: 4336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,45.5 + parent: 2 + - uid: 4604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,44.5 + parent: 2 + - uid: 6764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,41.5 + parent: 2 + - uid: 7860 + components: + - type: Transform + pos: 48.5,4.5 + parent: 2 + - uid: 7861 + components: + - type: Transform + pos: 48.5,3.5 + parent: 2 + - uid: 7862 + components: + - type: Transform + pos: 51.5,10.5 + parent: 2 + - uid: 7863 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 7864 + components: + - type: Transform + pos: 64.5,5.5 + parent: 2 + - uid: 7865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,14.5 + parent: 2 + - uid: 7866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,14.5 + parent: 2 + - uid: 7867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,14.5 + parent: 2 + - uid: 7868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,15.5 + parent: 2 + - uid: 7869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,17.5 + parent: 2 + - uid: 7870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,15.5 + parent: 2 + - uid: 7871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,17.5 + parent: 2 + - uid: 7872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,19.5 + parent: 2 + - uid: 7873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,21.5 + parent: 2 + - uid: 7874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,19.5 + parent: 2 + - uid: 7875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,21.5 + parent: 2 + - uid: 7876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,4.5 + parent: 2 + - uid: 7877 + components: + - type: Transform + pos: 62.5,23.5 + parent: 2 + - uid: 7878 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 + - uid: 7879 + components: + - type: Transform + pos: 62.5,25.5 + parent: 2 + - uid: 7880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,11.5 + parent: 2 + - uid: 7881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,11.5 + parent: 2 + - uid: 7882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,6.5 + parent: 2 + - uid: 7883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,3.5 + parent: 2 + - uid: 7884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,3.5 + parent: 2 + - uid: 7885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,3.5 + parent: 2 + - uid: 11228 + components: + - type: Transform + pos: 78.5,40.5 + parent: 2 + - uid: 11542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,42.5 + parent: 2 + - uid: 11996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,43.5 + parent: 2 + - uid: 12104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,44.5 + parent: 2 + - uid: 12163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,42.5 + parent: 2 + - uid: 12164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,43.5 + parent: 2 + - uid: 12167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,45.5 + parent: 2 +- proto: ReinforcedWindow + entities: + - uid: 3307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-46.5 + parent: 2 + - uid: 6193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,41.5 + parent: 2 + - uid: 6702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 2 + - uid: 6703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 2 + - uid: 6706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-0.5 + parent: 2 + - uid: 6908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,49.5 + parent: 2 + - uid: 6909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 99.5,47.5 + parent: 2 + - uid: 6911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,47.5 + parent: 2 + - uid: 7354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-0.5 + parent: 2 + - uid: 7542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 2 + - uid: 7886 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 2 + - uid: 7887 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 2 + - uid: 7888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,14.5 + parent: 2 + - uid: 7889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,14.5 + parent: 2 + - uid: 7890 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 2 + - uid: 7891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,14.5 + parent: 2 + - uid: 7892 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 7893 + components: + - type: Transform + pos: 63.5,-6.5 + parent: 2 + - uid: 7894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,1.5 + parent: 2 + - uid: 7895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 2 + - uid: 7896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-1.5 + parent: 2 + - uid: 7897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,14.5 + parent: 2 + - uid: 7898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,14.5 + parent: 2 + - uid: 7899 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 7902 + components: + - type: Transform + pos: -44.5,9.5 + parent: 2 + - uid: 7903 + components: + - type: Transform + pos: -51.5,-5.5 + parent: 2 + - uid: 7904 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 2 + - uid: 7905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,14.5 + parent: 2 + - uid: 7906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,14.5 + parent: 2 + - uid: 7907 + components: + - type: Transform + pos: -76.5,4.5 + parent: 2 + - uid: 7908 + components: + - type: Transform + pos: -76.5,2.5 + parent: 2 + - uid: 7909 + components: + - type: Transform + pos: -76.5,1.5 + parent: 2 + - uid: 7910 + components: + - type: Transform + pos: -76.5,0.5 + parent: 2 + - uid: 7911 + components: + - type: Transform + pos: -76.5,-0.5 + parent: 2 + - uid: 7912 + components: + - type: Transform + pos: -76.5,-2.5 + parent: 2 + - uid: 7913 + components: + - type: Transform + pos: -75.5,-2.5 + parent: 2 + - uid: 7914 + components: + - type: Transform + pos: -75.5,-3.5 + parent: 2 + - uid: 7915 + components: + - type: Transform + pos: -74.5,-4.5 + parent: 2 + - uid: 7916 + components: + - type: Transform + pos: -74.5,-5.5 + parent: 2 + - uid: 7917 + components: + - type: Transform + pos: -75.5,4.5 + parent: 2 + - uid: 7918 + components: + - type: Transform + pos: -75.5,5.5 + parent: 2 + - uid: 7919 + components: + - type: Transform + pos: -74.5,6.5 + parent: 2 + - uid: 7920 + components: + - type: Transform + pos: -74.5,7.5 + parent: 2 + - uid: 7921 + components: + - type: Transform + pos: -73.5,7.5 + parent: 2 + - uid: 7922 + components: + - type: Transform + pos: -72.5,8.5 + parent: 2 + - uid: 7923 + components: + - type: Transform + pos: -71.5,8.5 + parent: 2 + - uid: 7924 + components: + - type: Transform + pos: -71.5,9.5 + parent: 2 + - uid: 7925 + components: + - type: Transform + pos: -70.5,9.5 + parent: 2 + - uid: 7926 + components: + - type: Transform + pos: -73.5,-5.5 + parent: 2 + - uid: 7927 + components: + - type: Transform + pos: -72.5,-6.5 + parent: 2 + - uid: 7928 + components: + - type: Transform + pos: -71.5,-6.5 + parent: 2 + - uid: 7929 + components: + - type: Transform + pos: -71.5,-7.5 + parent: 2 + - uid: 7930 + components: + - type: Transform + pos: -70.5,-7.5 + parent: 2 + - uid: 7931 + components: + - type: Transform + pos: -58.5,-8.5 + parent: 2 + - uid: 7932 + components: + - type: Transform + pos: -56.5,-8.5 + parent: 2 + - uid: 7933 + components: + - type: Transform + pos: -57.5,-8.5 + parent: 2 + - uid: 7934 + components: + - type: Transform + pos: -63.5,10.5 + parent: 2 + - uid: 7935 + components: + - type: Transform + pos: -62.5,10.5 + parent: 2 + - uid: 7936 + components: + - type: Transform + pos: -61.5,10.5 + parent: 2 + - uid: 7937 + components: + - type: Transform + pos: -63.5,-8.5 + parent: 2 + - uid: 7938 + components: + - type: Transform + pos: -61.5,-8.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + pos: -62.5,-8.5 + parent: 2 + - uid: 7940 + components: + - type: Transform + pos: -53.5,11.5 + parent: 2 + - uid: 7941 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 2 + - uid: 7942 + components: + - type: Transform + pos: -47.5,-9.5 + parent: 2 + - uid: 7943 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 7944 + components: + - type: Transform + pos: -51.5,-9.5 + parent: 2 + - uid: 7945 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 2 + - uid: 7946 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 7947 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 7948 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 2 + - uid: 7949 + components: + - type: Transform + pos: -37.5,-1.5 + parent: 2 + - uid: 7950 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 2 + - uid: 7951 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 + - uid: 7952 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 + - uid: 7953 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - uid: 7954 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 + - uid: 7955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,2.5 + parent: 2 + - uid: 7956 + components: + - type: Transform + pos: -45.5,9.5 + parent: 2 + - uid: 7957 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 + - uid: 7958 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 7959 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 7960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-12.5 + parent: 2 + - uid: 7961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-12.5 + parent: 2 + - uid: 7962 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - uid: 7963 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - uid: 7964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 2 + - uid: 7965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-12.5 + parent: 2 + - uid: 7966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-12.5 + parent: 2 + - uid: 7967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-12.5 + parent: 2 + - uid: 7968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-12.5 + parent: 2 + - uid: 7969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-12.5 + parent: 2 + - uid: 7970 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 + - uid: 7971 + components: + - type: Transform + pos: -18.5,14.5 + parent: 2 + - uid: 7972 + components: + - type: Transform + pos: 59.5,-25.5 + parent: 2 + - uid: 7973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-9.5 + parent: 2 + - uid: 7974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-9.5 + parent: 2 + - uid: 7975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-19.5 + parent: 2 + - uid: 7976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-18.5 + parent: 2 + - uid: 7977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-16.5 + parent: 2 + - uid: 7978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-15.5 + parent: 2 + - uid: 7979 + components: + - type: Transform + pos: -39.5,1.5 + parent: 2 + - uid: 7980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-22.5 + parent: 2 + - uid: 7981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-23.5 + parent: 2 + - uid: 7982 + components: + - type: Transform + pos: 59.5,-22.5 + parent: 2 + - uid: 7983 + components: + - type: Transform + pos: 63.5,-11.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + pos: 63.5,-12.5 + parent: 2 + - uid: 7985 + components: + - type: Transform + pos: 62.5,-25.5 + parent: 2 + - uid: 7986 + components: + - type: Transform + pos: 63.5,-8.5 + parent: 2 + - uid: 7987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,3.5 + parent: 2 + - uid: 7988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,3.5 + parent: 2 + - uid: 7989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,1.5 + parent: 2 + - uid: 7990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,1.5 + parent: 2 + - uid: 7991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,1.5 + parent: 2 + - uid: 7992 + components: + - type: Transform + pos: 90.5,-20.5 + parent: 2 + - uid: 7993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,19.5 + parent: 2 + - uid: 7994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,18.5 + parent: 2 + - uid: 7996 + components: + - type: Transform + pos: 88.5,40.5 + parent: 2 + - uid: 7997 + components: + - type: Transform + pos: 92.5,41.5 + parent: 2 + - uid: 7999 + components: + - type: Transform + pos: 81.5,50.5 + parent: 2 + - uid: 8000 + components: + - type: Transform + pos: 83.5,50.5 + parent: 2 + - uid: 8001 + components: + - type: Transform + pos: 82.5,50.5 + parent: 2 + - uid: 8002 + components: + - type: Transform + pos: 69.5,48.5 + parent: 2 + - uid: 8003 + components: + - type: Transform + pos: 71.5,49.5 + parent: 2 + - uid: 8004 + components: + - type: Transform + pos: 72.5,49.5 + parent: 2 + - uid: 8005 + components: + - type: Transform + pos: 70.5,48.5 + parent: 2 + - uid: 8006 + components: + - type: Transform + pos: 70.5,49.5 + parent: 2 + - uid: 8007 + components: + - type: Transform + pos: 64.5,48.5 + parent: 2 + - uid: 8009 + components: + - type: Transform + pos: 73.5,37.5 + parent: 2 + - uid: 8010 + components: + - type: Transform + pos: 73.5,38.5 + parent: 2 + - uid: 8011 + components: + - type: Transform + pos: 72.5,37.5 + parent: 2 + - uid: 8012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,3.5 + parent: 2 + - uid: 8013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,1.5 + parent: 2 + - uid: 8014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,1.5 + parent: 2 + - uid: 8019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,14.5 + parent: 2 + - uid: 8020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-19.5 + parent: 2 + - uid: 8021 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 2 + - uid: 8022 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 + - uid: 8023 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 8024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,15.5 + parent: 2 + - uid: 8025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,15.5 + parent: 2 + - uid: 8026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,15.5 + parent: 2 + - uid: 8027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,14.5 + parent: 2 + - uid: 8028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 2 + - uid: 8032 + components: + - type: Transform + pos: 72.5,25.5 + parent: 2 + - uid: 8033 + components: + - type: Transform + pos: 72.5,27.5 + parent: 2 + - uid: 8034 + components: + - type: Transform + pos: 72.5,29.5 + parent: 2 + - uid: 8035 + components: + - type: Transform + pos: 72.5,31.5 + parent: 2 + - uid: 8036 + components: + - type: Transform + pos: 79.5,-18.5 + parent: 2 + - uid: 8037 + components: + - type: Transform + pos: 80.5,-18.5 + parent: 2 + - uid: 8038 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - uid: 8039 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - uid: 8040 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - uid: 8041 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 2 + - uid: 8042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,14.5 + parent: 2 + - uid: 8043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,22.5 + parent: 2 + - uid: 8044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,22.5 + parent: 2 + - uid: 8045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,14.5 + parent: 2 + - uid: 8046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,14.5 + parent: 2 + - uid: 8047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 2 + - uid: 8048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,17.5 + parent: 2 + - uid: 8049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,33.5 + parent: 2 + - uid: 8050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,35.5 + parent: 2 + - uid: 8051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,34.5 + parent: 2 + - uid: 8053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 2 + - uid: 8054 + components: + - type: Transform + pos: 90.5,22.5 + parent: 2 + - uid: 8055 + components: + - type: Transform + pos: 90.5,34.5 + parent: 2 + - uid: 8056 + components: + - type: Transform + pos: 89.5,22.5 + parent: 2 + - uid: 8057 + components: + - type: Transform + pos: 89.5,34.5 + parent: 2 + - uid: 8058 + components: + - type: Transform + pos: 86.5,38.5 + parent: 2 + - uid: 8084 + components: + - type: Transform + pos: 83.5,-22.5 + parent: 2 + - uid: 8085 + components: + - type: Transform + pos: 85.5,-22.5 + parent: 2 + - uid: 8086 + components: + - type: Transform + pos: 76.5,48.5 + parent: 2 + - uid: 8087 + components: + - type: Transform + pos: 76.5,47.5 + parent: 2 + - uid: 8088 + components: + - type: Transform + pos: 73.5,47.5 + parent: 2 + - uid: 8089 + components: + - type: Transform + pos: 73.5,48.5 + parent: 2 + - uid: 8090 + components: + - type: Transform + pos: 93.5,-20.5 + parent: 2 + - uid: 8091 + components: + - type: Transform + pos: 91.5,-16.5 + parent: 2 + - uid: 8092 + components: + - type: Transform + pos: 92.5,-16.5 + parent: 2 + - uid: 8093 + components: + - type: Transform + pos: 96.5,-16.5 + parent: 2 + - uid: 8094 + components: + - type: Transform + pos: 95.5,-16.5 + parent: 2 + - uid: 8095 + components: + - type: Transform + pos: 94.5,-16.5 + parent: 2 + - uid: 8096 + components: + - type: Transform + pos: 98.5,-16.5 + parent: 2 + - uid: 8097 + components: + - type: Transform + pos: 99.5,-16.5 + parent: 2 + - uid: 8098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-43.5 + parent: 2 + - uid: 8099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-43.5 + parent: 2 + - uid: 8101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 2 + - uid: 8102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,14.5 + parent: 2 + - uid: 8103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,14.5 + parent: 2 + - uid: 8104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,14.5 + parent: 2 + - uid: 8105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,14.5 + parent: 2 + - uid: 8106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,14.5 + parent: 2 + - uid: 8108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,23.5 + parent: 2 + - uid: 8109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,36.5 + parent: 2 + - uid: 8110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,35.5 + parent: 2 + - uid: 8111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,-16.5 + parent: 2 + - uid: 8112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 2 + - uid: 8113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 2 + - uid: 8502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 2 + - uid: 9493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-20.5 + parent: 2 + - uid: 11369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 99.5,49.5 + parent: 2 + - uid: 12013 + components: + - type: Transform + pos: 35.5,14.5 + parent: 2 + - uid: 12100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 100.5,50.5 + parent: 2 + - uid: 12205 + components: + - type: Transform + pos: 65.5,48.5 + parent: 2 + - uid: 12221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 100.5,47.5 + parent: 2 + - uid: 12222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 100.5,51.5 + parent: 2 + - uid: 12223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 100.5,49.5 + parent: 2 + - uid: 12224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 100.5,45.5 + parent: 2 + - uid: 12225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 100.5,46.5 + parent: 2 + - uid: 12546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,34.5 + parent: 2 + - uid: 12547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,34.5 + parent: 2 + - uid: 12929 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - uid: 13292 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 + - uid: 13295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-19.5 + parent: 2 + - uid: 13296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-19.5 + parent: 2 + - uid: 13297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-19.5 + parent: 2 + - uid: 13299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-28.5 + parent: 2 + - uid: 13300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-28.5 + parent: 2 + - uid: 13301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-28.5 + parent: 2 + - uid: 13622 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 + - uid: 13623 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 2 + - uid: 13625 + components: + - type: Transform + pos: 40.5,-31.5 + parent: 2 + - uid: 13680 + components: + - type: Transform + pos: 97.5,-40.5 + parent: 2 + - uid: 13743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-18.5 + parent: 2 + - uid: 13744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-19.5 + parent: 2 + - uid: 14344 + components: + - type: Transform + pos: 98.5,-40.5 + parent: 2 + - uid: 14346 + components: + - type: Transform + pos: 90.5,-49.5 + parent: 2 + - uid: 14347 + components: + - type: Transform + pos: 89.5,-49.5 + parent: 2 + - uid: 14348 + components: + - type: Transform + pos: 88.5,-49.5 + parent: 2 + - uid: 14472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,14.5 + parent: 2 + - uid: 14567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,-43.5 + parent: 2 + - uid: 14648 + components: + - type: Transform + pos: 37.5,33.5 + parent: 2 + - uid: 14753 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 + - uid: 15099 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 15100 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - uid: 15102 + components: + - type: Transform + pos: 31.5,32.5 + parent: 2 + - uid: 15103 + components: + - type: Transform + pos: 32.5,32.5 + parent: 2 + - uid: 15104 + components: + - type: Transform + pos: 36.5,33.5 + parent: 2 + - uid: 15168 + components: + - type: Transform + pos: 40.5,33.5 + parent: 2 + - uid: 15169 + components: + - type: Transform + pos: 41.5,33.5 + parent: 2 + - uid: 15786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-46.5 + parent: 2 + - uid: 15787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-46.5 + parent: 2 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 8114 + components: + - type: Transform + pos: 65.5,24.5 + parent: 2 +- proto: ResearchDisk20000 + entities: + - uid: 12095 + components: + - type: Transform + pos: 106.47411,-22.401873 + parent: 2 +- proto: Retractor + entities: + - uid: 8115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.511993,14.507668 + parent: 2 +- proto: ReverseEngineeringMachine + entities: + - uid: 8116 + components: + - type: Transform + pos: 72.5,9.5 + parent: 2 +- proto: RevolverCapGun + entities: + - uid: 13642 + components: + - type: Transform + pos: 71.42971,-44.388382 + parent: 2 + - uid: 13643 + components: + - type: Transform + pos: 71.31721,-44.182133 + parent: 2 + - uid: 13644 + components: + - type: Transform + pos: 71.52346,-44.575882 + parent: 2 + - uid: 13645 + components: + - type: Transform + pos: 71.71096,-44.707134 + parent: 2 +- proto: RipleyChassis + entities: + - uid: 8117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,12.5 + parent: 2 +- proto: RitualDagger + entities: + - uid: 8118 + components: + - type: Transform + pos: 84.34859,-37.2818 + parent: 2 +- proto: RollingPin + entities: + - uid: 8119 + components: + - type: Transform + pos: 10.965269,6.9685545 + parent: 2 +- proto: RubberStampApproved + entities: + - uid: 8120 + components: + - type: Transform + pos: 77.72135,-19.272469 + parent: 2 + - uid: 8121 + components: + - type: Transform + pos: 31.790087,-4.2339416 + parent: 2 +- proto: RubberStampCMO + entities: + - uid: 8122 + components: + - type: Transform + pos: 56.70523,-10.205929 + parent: 2 +- proto: RubberStampDenied + entities: + - uid: 8123 + components: + - type: Transform + pos: 77.7401,-19.459969 + parent: 2 + - uid: 8124 + components: + - type: Transform + pos: 31.743176,-4.5620666 + parent: 2 +- proto: RubberStampPsychologist + entities: + - uid: 8125 + components: + - type: Transform + pos: 58.41405,-4.4600325 + parent: 2 +- proto: SalvageCanisterSpawner + entities: + - uid: 13174 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 13603 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 + - uid: 13604 + components: + - type: Transform + pos: 43.5,-24.5 + parent: 2 + - uid: 13605 + components: + - type: Transform + pos: 47.5,-26.5 + parent: 2 + - uid: 14486 + components: + - type: Transform + pos: 80.5,-29.5 + parent: 2 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 8126 + components: + - type: Transform + pos: 73.5,-46.5 + parent: 2 +- proto: SalvageLorePaperGamingSpawner + entities: + - uid: 8127 + components: + - type: Transform + pos: -27.5,8.5 + parent: 2 +- proto: SalvageMagnet + entities: + - uid: 15515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-58.5 + parent: 2 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 8129 + components: + - type: Transform + pos: 71.5,-17.5 + parent: 2 + - uid: 8130 + components: + - type: Transform + pos: 74.5,-26.5 + parent: 2 + - uid: 8131 + components: + - type: Transform + pos: 81.5,-38.5 + parent: 2 + - uid: 12185 + components: + - type: Transform + pos: 69.5,42.5 + parent: 2 + - uid: 12188 + components: + - type: Transform + pos: 68.5,42.5 + parent: 2 + - uid: 12458 + components: + - type: Transform + pos: 59.5,30.5 + parent: 2 + - uid: 12459 + components: + - type: Transform + pos: 59.5,31.5 + parent: 2 + - uid: 12461 + components: + - type: Transform + pos: 79.5,-29.5 + parent: 2 + - uid: 13606 + components: + - type: Transform + pos: 43.5,-21.5 + parent: 2 + - uid: 13709 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 2 + - uid: 14387 + components: + - type: Transform + pos: 92.5,-40.5 + parent: 2 + - uid: 14425 + components: + - type: Transform + pos: 88.5,-48.5 + parent: 2 + - uid: 14864 + components: + - type: Transform + pos: 40.5,32.5 + parent: 2 + - uid: 14865 + components: + - type: Transform + pos: 41.5,32.5 + parent: 2 + - uid: 15106 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - uid: 15107 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 +- proto: SalvageMobSpawner + entities: + - uid: 8132 + components: + - type: Transform + pos: 73.5,-45.5 + parent: 2 +- proto: SalvageMobSpawner75 + entities: + - uid: 8133 + components: + - type: Transform + pos: 74.5,-45.5 + parent: 2 +- proto: SalvageShuttleConsoleCircuitboard + entities: + - uid: 8134 + components: + - type: Transform + pos: 95.53345,33.67472 + parent: 2 +- proto: SandBattlemap + entities: + - uid: 14989 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 + - uid: 15025 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 +- proto: Saw + entities: + - uid: 8135 + components: + - type: Transform + pos: 65.67183,-15.818743 + parent: 2 + - uid: 8136 + components: + - type: Transform + pos: 65.561104,-18.700516 + parent: 2 + - uid: 12481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.699852,-20.466906 + parent: 2 +- proto: SawElectric + entities: + - uid: 8137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.76218,14.538918 + parent: 2 +- proto: Scalpel + entities: + - uid: 8138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.24617,14.554543 + parent: 2 + - uid: 12482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.491364,-20.479927 + parent: 2 +- proto: ScalpelLaser + entities: + - uid: 8139 + components: + - type: Transform + pos: 65.55612,-15.61705 + parent: 2 + - uid: 8140 + components: + - type: Transform + pos: 65.66684,-19.071484 + parent: 2 +- proto: Screwdriver + entities: + - uid: 8141 + components: + - type: Transform + pos: 58.739925,9.466386 + parent: 2 +- proto: SecBreachingHammer + entities: + - uid: 12985 + components: + - type: Transform + pos: 66.52352,45.10759 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 8142 + components: + - type: Transform + pos: -39.5,-2.5 + parent: 2 +- proto: SeismicCharge + entities: + - uid: 8143 + components: + - type: Transform + pos: 83.13972,-47.226944 + parent: 2 + - uid: 8144 + components: + - type: Transform + pos: 83.15847,-47.37694 + parent: 2 + - uid: 8145 + components: + - type: Transform + pos: 83.308464,-47.37694 + parent: 2 + - uid: 8146 + components: + - type: Transform + pos: 83.308464,-47.226944 + parent: 2 +- proto: ShadowKudzuWeak + entities: + - uid: 8147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-33.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 8148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-34.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 8149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-35.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 8150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-33.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 8151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-39.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: ShardCrystalRandom + entities: + - uid: 13387 + components: + - type: Transform + pos: 28.595072,-27.709364 + parent: 2 + - uid: 13490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.356056,-25.256239 + parent: 2 +- proto: ShardCrystalRed + entities: + - uid: 8152 + components: + - type: MetaData + desc: Кто-то потерял рог? + name: отломленный рог + - type: Transform + pos: 8.263851,-18.75416 + parent: 2 +- proto: SheetGlass + entities: + - uid: 8153 + components: + - type: Transform + pos: -28.197884,3.529427 + parent: 2 + - uid: 8154 + components: + - type: Transform + pos: -39.642437,-3.4660354 + parent: 2 + - uid: 8155 + components: + - type: Transform + pos: 64.68337,-6.1994877 + parent: 2 + - uid: 8156 + components: + - type: Transform + pos: 73.80762,-21.261402 + parent: 2 + - uid: 8157 + components: + - type: Transform + pos: 91.5,23.5 + parent: 2 + - uid: 8158 + components: + - type: Transform + pos: 91.5,23.5 + parent: 2 + - uid: 8159 + components: + - type: Transform + pos: 91.5,23.5 + parent: 2 + - uid: 8160 + components: + - type: Transform + pos: 91.5,23.5 + parent: 2 + - uid: 8161 + components: + - type: Transform + pos: 54.681396,4.5920215 + parent: 2 + - uid: 8162 + components: + - type: Transform + pos: 54.540665,4.6545215 + parent: 2 + - uid: 8163 + components: + - type: Transform + pos: 47.737415,14.64081 + parent: 2 + - uid: 8164 + components: + - type: Transform + pos: 47.815598,14.531435 + parent: 2 +- proto: SheetGlass1 + entities: + - uid: 15618 + components: + - type: Transform + pos: 50.669415,26.664658 + parent: 2 +- proto: SheetPlasma + entities: + - uid: 8165 + components: + - type: Transform + pos: 74.5556,6.2641773 + parent: 2 + - uid: 8166 + components: + - type: Transform + pos: 92.52432,28.51086 + parent: 2 +- proto: SheetPlasteel + entities: + - uid: 8167 + components: + - type: Transform + pos: -28.696722,3.583704 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 8168 + components: + - type: Transform + pos: 89.5,23.5 + parent: 2 + - uid: 8169 + components: + - type: Transform + pos: 89.5,23.5 + parent: 2 + - uid: 8170 + components: + - type: Transform + pos: 89.5,23.5 + parent: 2 + - uid: 8171 + components: + - type: Transform + pos: 89.5,23.5 + parent: 2 +- proto: SheetPlastic + entities: + - uid: 8172 + components: + - type: Transform + pos: -39.342476,-3.9326062 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 8173 + components: + - type: Transform + pos: 73.41387,-21.261402 + parent: 2 + - uid: 8174 + components: + - type: Transform + pos: 55.932327,4.5607715 + parent: 2 + - uid: 8175 + components: + - type: Transform + pos: 55.822872,4.5920215 + parent: 2 +- proto: SheetPlastitanium + entities: + - uid: 8176 + components: + - type: Transform + pos: 95.321075,26.561031 + parent: 2 +- proto: SheetSteel + entities: + - uid: 8177 + components: + - type: Transform + pos: -28.262934,3.488978 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 8178 + components: + - type: Transform + pos: -39.248688,-3.3160355 + parent: 2 + - uid: 8179 + components: + - type: Transform + pos: 64.35695,-6.416879 + parent: 2 + - uid: 8180 + components: + - type: Transform + pos: 72.98262,-21.261402 + parent: 2 + - uid: 8181 + components: + - type: Transform + pos: 90.5,23.5 + parent: 2 + - uid: 8182 + components: + - type: Transform + pos: 90.5,23.5 + parent: 2 + - uid: 8183 + components: + - type: Transform + pos: 90.5,23.5 + parent: 2 + - uid: 8184 + components: + - type: Transform + pos: 90.5,23.5 + parent: 2 + - uid: 8185 + components: + - type: Transform + pos: 90.5,23.5 + parent: 2 + - uid: 8186 + components: + - type: Transform + pos: 90.5,23.5 + parent: 2 + - uid: 8187 + components: + - type: Transform + pos: 55.35377,4.6388965 + parent: 2 + - uid: 8188 + components: + - type: Transform + pos: 55.197407,4.6701465 + parent: 2 + - uid: 8189 + components: + - type: Transform + pos: 47.39341,14.623928 + parent: 2 + - uid: 8190 + components: + - type: Transform + pos: 47.502865,14.608303 + parent: 2 + - uid: 12592 + components: + - type: Transform + parent: 12591 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12593 + components: + - type: Transform + parent: 12591 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12594 + components: + - type: Transform + parent: 12591 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12611 + components: + - type: Transform + parent: 12610 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12612 + components: + - type: Transform + parent: 12610 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12613 + components: + - type: Transform + parent: 12610 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: SheetSteel1 + entities: + - uid: 13646 + components: + - type: Transform + pos: 44.253464,-25.337296 + parent: 2 + - uid: 13647 + components: + - type: Transform + pos: 44.50365,-24.149796 + parent: 2 + - uid: 13648 + components: + - type: Transform + pos: 42.095608,-23.587296 + parent: 2 + - uid: 13649 + components: + - type: Transform + pos: 48.81936,-21.837296 + parent: 2 + - uid: 13650 + components: + - type: Transform + pos: 48.256443,-25.04042 + parent: 2 +- proto: SheetTitanium + entities: + - uid: 8191 + components: + - type: Transform + pos: 95.76447,26.606243 + parent: 2 +- proto: SheetUranium + entities: + - uid: 8192 + components: + - type: Transform + pos: 92.66257,27.713385 + parent: 2 +- proto: ShellShotgunFlare + entities: + - uid: 15494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.67761,-54.039886 + parent: 2 + - uid: 15495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.63421,-54.050735 + parent: 2 + - uid: 15496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.49315,-54.072437 + parent: 2 +- proto: ShipBattlemap + entities: + - uid: 13392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.289497,-25.274788 + parent: 2 + - uid: 15027 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 +- proto: ShowcaseRobotAntique + entities: + - uid: 8193 + components: + - type: Transform + pos: 71.5,-25.5 + parent: 2 +- proto: ShuttersFrame + entities: + - uid: 13451 + components: + - type: Transform + pos: 34.5,-27.5 + parent: 2 +- proto: ShuttersNormal + entities: + - uid: 8194 + components: + - type: Transform + pos: 46.5,10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7005 + - 7004 + - uid: 8195 + components: + - type: Transform + pos: 48.5,10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7005 + - 7004 + - uid: 8196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15411 + - 15410 + - uid: 8197 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6998 + - uid: 8198 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6998 + - uid: 8199 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6998 + - uid: 8200 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6998 + - uid: 8201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15411 + - 15410 + - uid: 8202 + components: + - type: Transform + pos: 47.5,10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7005 + - 7004 + - uid: 8203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15432 + - 15439 + - uid: 8204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15432 + - 15439 + - uid: 8205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,31.5 + parent: 2 + - uid: 8206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,32.5 + parent: 2 + - uid: 11420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3244 + - 3240 + - uid: 12082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3244 + - 3240 + - uid: 12083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3244 + - 3240 + - uid: 13495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-7.5 + parent: 2 +- proto: ShuttersNormalOpen + entities: + - uid: 8207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8246 + - uid: 8208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8246 + - uid: 8209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8245 + - uid: 8210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8245 + - uid: 8214 + components: + - type: Transform + pos: 80.5,-25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6999 + - uid: 8215 + components: + - type: Transform + pos: 83.5,-22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6999 + - uid: 8216 + components: + - type: Transform + pos: 84.5,-22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6999 + - uid: 8217 + components: + - type: Transform + pos: 85.5,-22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6999 + - uid: 8218 + components: + - type: Transform + pos: 79.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6994 + - uid: 8219 + components: + - type: Transform + pos: 78.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6994 + - uid: 8220 + components: + - type: Transform + pos: 80.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6994 + - uid: 8221 + components: + - type: Transform + pos: 81.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6994 + - uid: 8222 + components: + - type: Transform + pos: 90.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6995 + - uid: 8223 + components: + - type: Transform + pos: 92.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6995 + - uid: 8224 + components: + - type: Transform + pos: 94.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6995 + - uid: 8225 + components: + - type: Transform + pos: 96.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6995 + - uid: 8226 + components: + - type: Transform + pos: 99.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6995 + - uid: 8227 + components: + - type: Transform + pos: 98.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6995 + - uid: 8228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7006 + - uid: 8229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7006 + - uid: 8230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7008 + - uid: 8231 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6993 + - uid: 8232 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6993 + - uid: 8233 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6993 + - uid: 8234 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6993 + - uid: 8235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8248 + - uid: 8236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8248 + - uid: 8237 + components: + - type: Transform + pos: -45.5,9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8248 + - uid: 8238 + components: + - type: Transform + pos: -44.5,9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8248 + - uid: 12156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12162 + - uid: 12157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12162 + - uid: 12158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12162 + - uid: 12159 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12161 + - uid: 12160 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12161 + - uid: 12491 + components: + - type: Transform + pos: -70.5,9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15234 + components: + - type: Transform + pos: -53.5,11.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13288 + - uid: 15235 + components: + - type: Transform + pos: -71.5,9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15236 + components: + - type: Transform + pos: -71.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15237 + components: + - type: Transform + pos: -72.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15238 + components: + - type: Transform + pos: -73.5,7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15239 + components: + - type: Transform + pos: -74.5,7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,-6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,-6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,-7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,-7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15259 + - 15258 + - uid: 15262 + components: + - type: Transform + pos: -63.5,10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15265 + - uid: 15263 + components: + - type: Transform + pos: -62.5,10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15265 + - uid: 15264 + components: + - type: Transform + pos: -61.5,10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15265 + - uid: 15274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15280 + - uid: 15275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15280 + - uid: 15276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15280 + - uid: 15277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15280 + - uid: 15278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15280 + - uid: 15279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15280 + - uid: 15281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15284 + - uid: 15282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15284 + - uid: 15283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15284 + - uid: 15290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15284 + - uid: 15291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15284 + - uid: 15310 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8266 + - uid: 15311 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8266 + - uid: 15344 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12161 + - uid: 15345 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12161 + - uid: 15346 + components: + - type: Transform + pos: 20.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12161 + - uid: 15347 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12161 + - uid: 15348 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12161 + - uid: 15417 + components: + - type: Transform + pos: 61.5,14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7009 + - uid: 15418 + components: + - type: Transform + pos: 62.5,14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7009 + - uid: 15419 + components: + - type: Transform + pos: 63.5,14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7009 +- proto: ShuttersRadiation + entities: + - uid: 4617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,48.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3263 + - 3268 + - uid: 4623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,47.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3263 + - 3268 +- proto: ShuttersWindow + entities: + - uid: 8239 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6998 + - uid: 8240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15411 + - 15410 + - uid: 8241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15432 + - 15439 + - uid: 8242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15432 + - 15439 + - uid: 13494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-7.5 + parent: 2 +- proto: ShuttersWindowOpen + entities: + - uid: 8243 + components: + - type: Transform + pos: 91.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6995 + - uid: 8244 + components: + - type: Transform + pos: 95.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6995 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 226 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ShuttleGunPerforator + entities: + - uid: 13273 + components: + - type: Transform + pos: 46.5,-31.5 + parent: 2 +- proto: SignAi + entities: + - uid: 15194 + components: + - type: Transform + pos: 85.5,-3.5 + parent: 2 +- proto: SignalButton + entities: + - uid: 8245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8209: + - Pressed: Toggle + 8210: + - Pressed: Toggle + - uid: 8246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8208: + - Pressed: Toggle + 8207: + - Pressed: Toggle + - uid: 8247 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 2 + - uid: 8248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8235: + - Pressed: Toggle + 8236: + - Pressed: Toggle + 8237: + - Pressed: Toggle + 8238: + - Pressed: Toggle + - uid: 13394 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 13395 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 +- proto: SignalButtonDirectional + entities: + - uid: 8249 + components: + - type: Transform + pos: 74.25954,-9.610976 + parent: 2 + - uid: 8250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.6608,-5.3869905 + parent: 2 + - uid: 8251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.27263,-5.3869905 + parent: 2 + - uid: 8252 + components: + - type: Transform + pos: 74.64773,-9.610976 + parent: 2 +- proto: SignAnomaly + entities: + - uid: 15207 + components: + - type: Transform + pos: 60.5,7.5 + parent: 2 +- proto: SignAnomaly2 + entities: + - uid: 15209 + components: + - type: Transform + pos: 70.5,11.5 + parent: 2 + - uid: 15210 + components: + - type: Transform + pos: 68.5,9.5 + parent: 2 +- proto: SignArmory + entities: + - uid: 8253 + components: + - type: Transform + pos: -39.5,0.5 + parent: 2 + - uid: 8254 + components: + - type: Transform + pos: -43.5,0.5 + parent: 2 +- proto: SignAtmos + entities: + - uid: 15195 + components: + - type: Transform + pos: 82.5,15.5 + parent: 2 +- proto: SignBar + entities: + - uid: 8255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 12443 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 2 +- proto: SignCanisters + entities: + - uid: 14863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,26.5 + parent: 2 +- proto: SignCargo + entities: + - uid: 8256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-16.5 + parent: 2 + - uid: 8257 + components: + - type: Transform + pos: 74.5,-22.5 + parent: 2 +- proto: SignCargoDock + entities: + - uid: 8258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,-20.5 + parent: 2 + - uid: 8259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 102.5,-16.5 + parent: 2 +- proto: SignChapel + entities: + - uid: 15204 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 +- proto: SignChem + entities: + - uid: 8260 + components: + - type: Transform + pos: 48.5,-6.5 + parent: 2 + - uid: 15667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-1.5 + parent: 2 +- proto: SignCloning + entities: + - uid: 15201 + components: + - type: Transform + pos: 63.5,-9.5 + parent: 2 +- proto: SignConference + entities: + - uid: 15203 + components: + - type: Transform + pos: -49.5,-5.5 + parent: 2 + - uid: 15205 + components: + - type: Transform + pos: -60.5,5.5 + parent: 2 +- proto: SignConspiracyBoard + entities: + - uid: 14564 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 +- proto: SignCourt + entities: + - uid: 15184 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 +- proto: SignCryogenicsMed + entities: + - uid: 15206 + components: + - type: Transform + pos: 47.5,-9.5 + parent: 2 +- proto: SignDirectionalBar + entities: + - uid: 15172 + components: + - type: Transform + pos: 7.524423,3.4740047 + parent: 2 +- proto: SignDirectionalBridge + entities: + - uid: 15180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.314108,3.2559721 + parent: 2 +- proto: SignDirectionalBrig + entities: + - uid: 15174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.231375,3.2559721 + parent: 2 +- proto: SignDirectionalChapel + entities: + - uid: 15183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.008165,3.4740047 + parent: 2 +- proto: SignDirectionalCryo + entities: + - uid: 8262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-10.5 + parent: 2 + - uid: 15178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.602793,3.2559721 + parent: 2 +- proto: SignDirectionalDorms + entities: + - uid: 15176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.917662,3.2559721 + parent: 2 +- proto: SignDirectionalEng + entities: + - uid: 15177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.917662,3.4740047 + parent: 2 +- proto: SignDirectionalHop + entities: + - uid: 15171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.524423,3.2559721 + parent: 2 +- proto: SignDirectionalHydro + entities: + - uid: 15175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.231375,3.4740047 + parent: 2 +- proto: SignDirectionalJustice + entities: + - uid: 15185 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 +- proto: SignDirectionalLibrary + entities: + - uid: 15173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.524423,3.6833158 + parent: 2 +- proto: SignDirectionalMed + entities: + - uid: 15179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.602793,3.4740047 + parent: 2 +- proto: SignDirectionalSalvage + entities: + - uid: 8263 + components: + - type: Transform + pos: 75.5,-29.5 + parent: 2 + - uid: 8264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-35.5 + parent: 2 + - uid: 8265 + components: + - type: Transform + pos: 82.5,-40.5 + parent: 2 +- proto: SignDirectionalSci + entities: + - uid: 15181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.314306,3.4740047 + parent: 2 +- proto: SignDirectionalSupply + entities: + - uid: 15182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.008165,3.2559721 + parent: 2 +- proto: SignDisposalSpace + entities: + - uid: 15223 + components: + - type: Transform + pos: 88.5,-10.5 + parent: 2 +- proto: SignEngine + entities: + - uid: 15230 + components: + - type: Transform + pos: 87.5,35.5 + parent: 2 +- proto: SignEngineering + entities: + - uid: 15199 + components: + - type: Transform + pos: 82.5,9.5 + parent: 2 +- proto: SignGravity + entities: + - uid: 15198 + components: + - type: Transform + pos: 90.5,4.5 + parent: 2 +- proto: SignHead + entities: + - uid: 15213 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 2 + - uid: 15214 + components: + - type: Transform + pos: 64.5,14.5 + parent: 2 + - uid: 15215 + components: + - type: Transform + pos: 59.5,-10.5 + parent: 2 + - uid: 15216 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - uid: 15217 + components: + - type: Transform + pos: -26.5,5.5 + parent: 2 + - uid: 15218 + components: + - type: Transform + pos: -58.5,7.5 + parent: 2 + - uid: 15219 + components: + - type: Transform + pos: 86.5,-22.5 + parent: 2 + - uid: 15220 + components: + - type: Transform + pos: 80.5,-26.5 + parent: 2 + - uid: 15221 + components: + - type: Transform + pos: 78.5,41.5 + parent: 2 + - uid: 15222 + components: + - type: Transform + pos: 78.5,46.5 + parent: 2 +- proto: SignHydro3 + entities: + - uid: 15197 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 +- proto: SignInterrogation + entities: + - uid: 15200 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 2 +- proto: SignKiddiePlaque + entities: + - uid: 15186 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 2 +- proto: SignLastIdiot + entities: + - uid: 15192 + components: + - type: Transform + pos: 84.5,4.5 + parent: 2 +- proto: SignLibrary + entities: + - uid: 8267 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 +- proto: SignMail + entities: + - uid: 8268 + components: + - type: Transform + pos: 82.5,-17.5 + parent: 2 + - uid: 8269 + components: + - type: Transform + pos: 84.5,-18.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 8270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-1.5 + parent: 2 + - uid: 8271 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 2 + - uid: 15211 + components: + - type: Transform + pos: 60.5,-1.5 + parent: 2 + - uid: 15212 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 8272 + components: + - type: Transform + pos: 59.5,-16.5 + parent: 2 +- proto: SignNanotrasen1 + entities: + - uid: 15187 + components: + - type: Transform + pos: -65.5,5.5 + parent: 2 +- proto: SignNanotrasen2 + entities: + - uid: 15188 + components: + - type: Transform + pos: -64.5,5.5 + parent: 2 +- proto: SignNanotrasen3 + entities: + - uid: 15189 + components: + - type: Transform + pos: -63.5,5.5 + parent: 2 +- proto: SignNanotrasen4 + entities: + - uid: 15190 + components: + - type: Transform + pos: -62.5,5.5 + parent: 2 +- proto: SignNanotrasen5 + entities: + - uid: 15191 + components: + - type: Transform + pos: -61.5,5.5 + parent: 2 +- proto: SignNTMine + entities: + - uid: 8273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-43.5 + parent: 2 + - uid: 8274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-28.5 + parent: 2 +- proto: SignPrison + entities: + - uid: 8275 + components: + - type: Transform + pos: -38.5,5.5 + parent: 2 + - uid: 8276 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 8277 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 2 +- proto: SignPsychology + entities: + - uid: 15224 + components: + - type: Transform + pos: 55.5,-1.5 + parent: 2 +- proto: SignRedOne + entities: + - uid: 8278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-18.5 + parent: 2 +- proto: SignRedTwo + entities: + - uid: 8279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-22.5 + parent: 2 +- proto: SignRND + entities: + - uid: 15193 + components: + - type: Transform + pos: 51.5,3.5 + parent: 2 +- proto: SignRobo + entities: + - uid: 15225 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 +- proto: SignSalvage + entities: + - uid: 8280 + components: + - type: Transform + pos: 85.5,-43.5 + parent: 2 +- proto: SignShock + entities: + - uid: 15386 + components: + - type: Transform + pos: 73.5,-31.5 + parent: 2 + - uid: 15387 + components: + - type: Transform + pos: 75.5,-31.5 + parent: 2 +- proto: SignSpace + entities: + - uid: 12226 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 2 + - uid: 15170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,50.5 + parent: 2 + - uid: 15202 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 +- proto: SignSurgery + entities: + - uid: 8281 + components: + - type: Transform + pos: 62.5,-13.5 + parent: 2 + - uid: 8282 + components: + - type: Transform + pos: 62.5,-17.5 + parent: 2 +- proto: SignTelecomms + entities: + - uid: 15226 + components: + - type: Transform + pos: 92.5,-3.5 + parent: 2 + - uid: 15227 + components: + - type: Transform + pos: -55.5,-6.5 + parent: 2 + - uid: 15228 + components: + - type: Transform + pos: -66.5,-6.5 + parent: 2 +- proto: SignVirology + entities: + - uid: 15196 + components: + - type: Transform + pos: 56.5,-26.5 + parent: 2 +- proto: SignXenobio2 + entities: + - uid: 15208 + components: + - type: Transform + pos: 70.5,14.5 + parent: 2 +- proto: SimpleXenoArtifactItem + entities: + - uid: 13641 + components: + - type: Transform + parent: 13640 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Sink + entities: + - uid: 8283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,5.5 + parent: 2 + - uid: 14332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,-42.5 + parent: 2 +- proto: SinkStemlessWater + entities: + - uid: 14882 + components: + - type: Transform + pos: 11.5,28.5 + parent: 2 +- proto: SinkWide + entities: + - uid: 8284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 2 + - uid: 8285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-5.5 + parent: 2 + - uid: 8286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,45.5 + parent: 2 + - uid: 8287 + components: + - type: Transform + pos: 77.5,7.5 + parent: 2 + - uid: 12136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-5.5 + parent: 2 + - uid: 12525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,4.5 + parent: 2 +- proto: SmartFridge + entities: + - uid: 8288 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 8289 + components: + - type: Transform + pos: 47.5,-6.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 8290 + components: + - type: Transform + pos: 90.5,-5.5 + parent: 2 + - uid: 8291 + components: + - type: Transform + pos: 79.5,49.5 + parent: 2 + - uid: 8292 + components: + - type: Transform + pos: 85.5,20.5 + parent: 2 + - uid: 8293 + components: + - type: Transform + pos: 85.5,19.5 + parent: 2 + - uid: 8294 + components: + - type: Transform + pos: 85.5,18.5 + parent: 2 +- proto: SMESMachineCircuitboard + entities: + - uid: 227 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 228 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: SnowBattlemap + entities: + - uid: 14990 + components: + - type: Transform + pos: 29.5,24.5 + parent: 2 +- proto: soda_dispenser + entities: + - uid: 8295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 2 + - uid: 14847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,22.5 + parent: 2 +- proto: SolarControlComputerCircuitboard + entities: + - uid: 229 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: SolidSecretDoor + entities: + - uid: 14893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,25.5 + parent: 2 +- proto: SophicScribe + entities: + - uid: 8296 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 +- proto: SpaceCash1000 + entities: + - uid: 8297 + components: + - type: Transform + pos: -62.60456,-0.2239523 + parent: 2 + - uid: 8298 + components: + - type: Transform + pos: -62.29206,-0.3802023 + parent: 2 +- proto: SpaceCashLuckyBill + entities: + - uid: 8299 + components: + - type: Transform + pos: 82.54874,-26.235266 + parent: 2 +- proto: SpaceHeaterEnabled + entities: + - uid: 12390 + components: + - type: Transform + pos: 60.5,43.5 + parent: 2 + - type: GasThermoMachine + targetTemperature: 308.15 +- proto: SpareIdCabinetFilled + entities: + - uid: 11573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-1.5 + parent: 2 +- proto: SpawnBlueShieldOfficer + entities: + - uid: 12989 + components: + - type: Transform + pos: -63.5,2.5 + parent: 2 + - uid: 12990 + components: + - type: Transform + pos: -67.5,2.5 + parent: 2 +- proto: SpawnExpeditor + entities: + - uid: 12433 + components: + - type: Transform + pos: 55.5,22.5 + parent: 2 + - uid: 12434 + components: + - type: Transform + pos: 55.5,23.5 + parent: 2 + - uid: 12435 + components: + - type: Transform + pos: 55.5,24.5 + parent: 2 +- proto: SpawnMobAdultSlimesBlue + entities: + - uid: 8301 + components: + - type: Transform + pos: 76.5,19.5 + parent: 2 +- proto: SpawnMobAdultSlimesGreen + entities: + - uid: 8302 + components: + - type: Transform + pos: 68.5,16.5 + parent: 2 +- proto: SpawnMobAdultSlimesYellow + entities: + - uid: 8303 + components: + - type: Transform + pos: 68.5,20.5 + parent: 2 +- proto: SpawnMobCorgi + entities: + - uid: 8304 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 2 +- proto: SpawnMobCrabAtmos + entities: + - uid: 12833 + components: + - type: Transform + pos: 82.5,42.5 + parent: 2 +- proto: SpawnMobFoxRenault + entities: + - uid: 12958 + components: + - type: Transform + pos: -56.5,9.5 + parent: 2 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 8306 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 +- proto: SpawnMobSecDogLaika + entities: + - uid: 8307 + components: + - type: Transform + pos: -33.5,3.5 + parent: 2 +- proto: SpawnMobShiva + entities: + - uid: 8308 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 +- proto: SpawnPointAtmos + entities: + - uid: 13003 + components: + - type: Transform + pos: 78.5,36.5 + parent: 2 + - uid: 13004 + components: + - type: Transform + pos: 79.5,36.5 + parent: 2 + - uid: 13152 + components: + - type: Transform + pos: 76.5,26.5 + parent: 2 + - uid: 13153 + components: + - type: Transform + pos: 79.5,20.5 + parent: 2 + - uid: 13154 + components: + - type: Transform + pos: 81.5,17.5 + parent: 2 +- proto: SpawnPointBartender + entities: + - uid: 8309 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 13005 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 13006 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 +- proto: SpawnPointBorg + entities: + - uid: 13061 + components: + - type: Transform + pos: -44.5,-7.5 + parent: 2 + - uid: 13062 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 + - uid: 13064 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 2 + - uid: 13065 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 13066 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - uid: 13067 + components: + - type: Transform + pos: 32.5,1.5 + parent: 2 + - uid: 13068 + components: + - type: Transform + pos: 46.5,1.5 + parent: 2 + - uid: 13069 + components: + - type: Transform + pos: 59.5,1.5 + parent: 2 + - uid: 13070 + components: + - type: Transform + pos: 72.5,1.5 + parent: 2 + - uid: 13071 + components: + - type: Transform + pos: 79.5,6.5 + parent: 2 + - uid: 13072 + components: + - type: Transform + pos: 79.5,-6.5 + parent: 2 + - uid: 13073 + components: + - type: Transform + pos: 69.5,-6.5 + parent: 2 +- proto: SpawnPointBotanist + entities: + - uid: 13010 + components: + - type: Transform + pos: 21.5,9.5 + parent: 2 + - uid: 13011 + components: + - type: Transform + pos: 22.5,8.5 + parent: 2 + - uid: 13012 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - uid: 13013 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 13014 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 13016 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 +- proto: SpawnPointBrigmedic + entities: + - uid: 8310 + components: + - type: Transform + pos: -23.5,3.5 + parent: 2 + - uid: 13050 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 +- proto: SpawnPointCaptain + entities: + - uid: 8311 + components: + - type: Transform + pos: -56.5,5.5 + parent: 2 + - uid: 13100 + components: + - type: Transform + pos: -54.5,2.5 + parent: 2 + - uid: 13101 + components: + - type: Transform + pos: -53.5,10.5 + parent: 2 +- proto: SpawnPointCargoTechnician + entities: + - uid: 8314 + components: + - type: Transform + pos: 77.5,-20.5 + parent: 2 + - uid: 8315 + components: + - type: Transform + pos: 75.5,-27.5 + parent: 2 + - uid: 8506 + components: + - type: Transform + pos: 72.5,-20.5 + parent: 2 + - uid: 8605 + components: + - type: Transform + pos: 87.5,-19.5 + parent: 2 + - uid: 13294 + components: + - type: Transform + pos: 87.5,-20.5 + parent: 2 +- proto: SpawnPointChaplain + entities: + - uid: 12913 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 + - uid: 12914 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 + - uid: 12915 + components: + - type: Transform + pos: 28.5,11.5 + parent: 2 +- proto: SpawnPointChef + entities: + - uid: 13165 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 13166 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 13167 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 13168 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 +- proto: SpawnPointChemist + entities: + - uid: 8317 + components: + - type: Transform + pos: 46.5,-4.5 + parent: 2 + - uid: 8318 + components: + - type: Transform + pos: 49.5,-4.5 + parent: 2 +- proto: SpawnPointChiefEngineer + entities: + - uid: 13099 + components: + - type: Transform + pos: -56.5,-1.5 + parent: 2 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 8320 + components: + - type: Transform + pos: 56.5,-11.5 + parent: 2 + - uid: 13028 + components: + - type: Transform + pos: -52.5,-1.5 + parent: 2 +- proto: SpawnPointClerk + entities: + - uid: 8321 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 +- proto: SpawnPointClown + entities: + - uid: 8322 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 +- proto: SpawnPointCourier + entities: + - uid: 13001 + components: + - type: Transform + pos: 84.5,-16.5 + parent: 2 + - uid: 13002 + components: + - type: Transform + pos: 80.5,-19.5 + parent: 2 +- proto: SpawnPointDetective + entities: + - uid: 8323 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 13029 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 13095 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 +- proto: SpawnPointForensicMantis + entities: + - uid: 8324 + components: + - type: Transform + pos: 65.5,28.5 + parent: 2 + - uid: 13074 + components: + - type: Transform + pos: 55.5,19.5 + parent: 2 + - uid: 15880 + components: + - type: Transform + pos: 61.5,29.5 + parent: 2 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 8325 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - uid: 13025 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 2 + - uid: 13026 + components: + - type: Transform + pos: -56.5,-0.5 + parent: 2 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 8326 + components: + - type: Transform + pos: -21.5,9.5 + parent: 2 + - uid: 13027 + components: + - type: Transform + pos: -52.5,-0.5 + parent: 2 + - uid: 13060 + components: + - type: Transform + pos: -33.5,7.5 + parent: 2 +- proto: SpawnPointJanitor + entities: + - uid: 8327 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - uid: 8328 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 +- proto: SpawnPointLibrarian + entities: + - uid: 8329 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 + - uid: 13007 + components: + - type: Transform + pos: 43.5,7.5 + parent: 2 + - uid: 13008 + components: + - type: Transform + pos: 43.5,6.5 + parent: 2 + - uid: 13009 + components: + - type: Transform + pos: 34.5,5.5 + parent: 2 +- proto: SpawnPointLocationMidRoundAntag + entities: + - uid: 12328 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 2 + - uid: 12902 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - uid: 12903 + components: + - type: Transform + pos: -44.5,6.5 + parent: 2 +- proto: SpawnPointMedicalBorg + entities: + - uid: 12999 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 2 + - uid: 13000 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 2 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 8330 + components: + - type: Transform + pos: 65.5,-3.5 + parent: 2 + - uid: 8331 + components: + - type: Transform + pos: 66.5,-3.5 + parent: 2 + - uid: 8332 + components: + - type: Transform + pos: 67.5,-3.5 + parent: 2 + - uid: 8333 + components: + - type: Transform + pos: 65.5,-7.5 + parent: 2 +- proto: SpawnPointMedicalIntern + entities: + - uid: 8334 + components: + - type: Transform + pos: 59.5,-7.5 + parent: 2 + - uid: 8335 + components: + - type: Transform + pos: 55.5,-7.5 + parent: 2 + - uid: 8336 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 2 + - uid: 13044 + components: + - type: Transform + pos: 45.5,-9.5 + parent: 2 + - uid: 13045 + components: + - type: Transform + pos: 43.5,-9.5 + parent: 2 +- proto: SpawnPointMime + entities: + - uid: 8337 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 +- proto: SpawnPointMusician + entities: + - uid: 8338 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 +- proto: SpawnPointParamedic + entities: + - uid: 13082 + components: + - type: Transform + pos: 54.5,-3.5 + parent: 2 +- proto: SpawnPointPassenger + entities: + - uid: 8017 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 8339 + components: + - type: Transform + pos: 68.5,-19.5 + parent: 2 + - uid: 8340 + components: + - type: Transform + pos: 68.5,-16.5 + parent: 2 + - uid: 8341 + components: + - type: Transform + pos: 68.5,-20.5 + parent: 2 + - uid: 8342 + components: + - type: Transform + pos: 68.5,-15.5 + parent: 2 + - uid: 13119 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - uid: 13120 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 13123 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 13124 + components: + - type: Transform + pos: -3.5,3.5 + parent: 2 + - uid: 13125 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 + - uid: 13126 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 13127 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 13128 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 13129 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 13130 + components: + - type: Transform + pos: 13.5,1.5 + parent: 2 + - uid: 13131 + components: + - type: Transform + pos: 25.5,1.5 + parent: 2 + - uid: 13132 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 13133 + components: + - type: Transform + pos: 50.5,1.5 + parent: 2 + - uid: 13134 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 13135 + components: + - type: Transform + pos: 55.5,1.5 + parent: 2 + - uid: 13136 + components: + - type: Transform + pos: 65.5,1.5 + parent: 2 + - uid: 13137 + components: + - type: Transform + pos: 79.5,1.5 + parent: 2 + - uid: 13138 + components: + - type: Transform + pos: 79.5,11.5 + parent: 2 + - uid: 13139 + components: + - type: Transform + pos: 72.5,-7.5 + parent: 2 + - uid: 13140 + components: + - type: Transform + pos: 80.5,-12.5 + parent: 2 + - uid: 13141 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - uid: 13143 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 + - uid: 13278 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - uid: 13279 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 13280 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 13281 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 13282 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 + - uid: 13283 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 2 + - uid: 13284 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 13285 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 13286 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 +- proto: SpawnPointPrisonGuard + entities: + - uid: 13118 + components: + - type: Transform + pos: -39.5,7.5 + parent: 2 +- proto: SpawnPointProsecutor + entities: + - uid: 8343 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 2 +- proto: SpawnPointPsychologist + entities: + - uid: 8344 + components: + - type: Transform + pos: 59.5,-3.5 + parent: 2 + - uid: 13083 + components: + - type: Transform + pos: 56.5,-4.5 + parent: 2 +- proto: SpawnPointQuartermaster + entities: + - uid: 8345 + components: + - type: Transform + pos: 83.5,-26.5 + parent: 2 + - uid: 12998 + components: + - type: Transform + pos: -56.5,0.5 + parent: 2 +- proto: SpawnPointReporter + entities: + - uid: 12394 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 +- proto: SpawnPointResearchAssistant + entities: + - uid: 13075 + components: + - type: Transform + pos: 55.5,8.5 + parent: 2 + - uid: 13076 + components: + - type: Transform + pos: 56.5,8.5 + parent: 2 + - uid: 13077 + components: + - type: Transform + pos: 57.5,8.5 + parent: 2 + - uid: 13078 + components: + - type: Transform + pos: 53.5,19.5 + parent: 2 + - uid: 13079 + components: + - type: Transform + pos: 58.5,21.5 + parent: 2 + - uid: 13080 + components: + - type: Transform + pos: 66.5,12.5 + parent: 2 + - uid: 13081 + components: + - type: Transform + pos: 58.5,12.5 + parent: 2 +- proto: SpawnPointResearchDirector + entities: + - uid: 8346 + components: + - type: Transform + pos: 64.5,20.5 + parent: 2 + - uid: 12996 + components: + - type: Transform + pos: -52.5,0.5 + parent: 2 + - uid: 12997 + components: + - type: Transform + pos: 62.5,16.5 + parent: 2 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 8347 + components: + - type: Transform + pos: 85.5,-44.5 + parent: 2 + - uid: 8348 + components: + - type: Transform + pos: 85.5,-45.5 + parent: 2 + - uid: 8349 + components: + - type: Transform + pos: 85.5,-46.5 + parent: 2 + - uid: 8350 + components: + - type: Transform + pos: 85.5,-47.5 + parent: 2 +- proto: SpawnPointScientist + entities: + - uid: 13155 + components: + - type: Transform + pos: 55.5,7.5 + parent: 2 + - uid: 13156 + components: + - type: Transform + pos: 56.5,7.5 + parent: 2 + - uid: 13157 + components: + - type: Transform + pos: 57.5,7.5 + parent: 2 + - uid: 13158 + components: + - type: Transform + pos: 55.5,12.5 + parent: 2 + - uid: 13159 + components: + - type: Transform + pos: 53.5,17.5 + parent: 2 + - uid: 13160 + components: + - type: Transform + pos: 54.5,17.5 + parent: 2 + - uid: 13161 + components: + - type: Transform + pos: 71.5,12.5 + parent: 2 + - uid: 13162 + components: + - type: Transform + pos: 70.5,10.5 + parent: 2 + - uid: 13163 + components: + - type: Transform + pos: 75.5,11.5 + parent: 2 + - uid: 13164 + components: + - type: Transform + pos: 72.5,6.5 + parent: 2 +- proto: SpawnPointSecurityCadet + entities: + - uid: 8351 + components: + - type: Transform + pos: -15.5,8.5 + parent: 2 + - uid: 8352 + components: + - type: Transform + pos: -15.5,7.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + pos: -15.5,6.5 + parent: 2 + - uid: 8354 + components: + - type: Transform + pos: -15.5,5.5 + parent: 2 + - uid: 13046 + components: + - type: Transform + pos: -31.5,1.5 + parent: 2 + - uid: 13047 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 13048 + components: + - type: Transform + pos: -35.5,1.5 + parent: 2 + - uid: 13049 + components: + - type: Transform + pos: -36.5,1.5 + parent: 2 + - uid: 13052 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - uid: 13053 + components: + - type: Transform + pos: -31.5,3.5 + parent: 2 + - uid: 13054 + components: + - type: Transform + pos: -32.5,4.5 + parent: 2 + - uid: 13055 + components: + - type: Transform + pos: -32.5,3.5 + parent: 2 + - uid: 13056 + components: + - type: Transform + pos: -35.5,3.5 + parent: 2 + - uid: 13057 + components: + - type: Transform + pos: -35.5,4.5 + parent: 2 + - uid: 13058 + components: + - type: Transform + pos: -36.5,3.5 + parent: 2 + - uid: 13059 + components: + - type: Transform + pos: -36.5,4.5 + parent: 2 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 8355 + components: + - type: Transform + pos: -17.5,8.5 + parent: 2 + - uid: 8356 + components: + - type: Transform + pos: -17.5,7.5 + parent: 2 + - uid: 8357 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 + - uid: 8358 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 8359 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 +- proto: SpawnPointSeniorEngineer + entities: + - uid: 13020 + components: + - type: Transform + pos: 84.5,11.5 + parent: 2 + - uid: 13021 + components: + - type: Transform + pos: 86.5,26.5 + parent: 2 + - uid: 13022 + components: + - type: Transform + pos: 88.5,5.5 + parent: 2 +- proto: SpawnPointSeniorPhysician + entities: + - uid: 8360 + components: + - type: Transform + pos: 53.5,-7.5 + parent: 2 + - uid: 13023 + components: + - type: Transform + pos: 61.5,-7.5 + parent: 2 + - uid: 13024 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 2 +- proto: SpawnPointSeniorResearcher + entities: + - uid: 13015 + components: + - type: Transform + pos: 56.5,6.5 + parent: 2 + - uid: 13017 + components: + - type: Transform + pos: 54.5,19.5 + parent: 2 + - uid: 13018 + components: + - type: Transform + pos: 58.5,24.5 + parent: 2 + - uid: 13019 + components: + - type: Transform + pos: 71.5,18.5 + parent: 2 +- proto: SpawnPointServiceWorker + entities: + - uid: 13090 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 13091 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 13092 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 13093 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 +- proto: SpawnPointStationEngineer + entities: + - uid: 9301 + components: + - type: Transform + pos: 87.5,33.5 + parent: 2 + - uid: 13030 + components: + - type: Transform + pos: 85.5,6.5 + parent: 2 + - uid: 13031 + components: + - type: Transform + pos: 85.5,7.5 + parent: 2 + - uid: 13032 + components: + - type: Transform + pos: 85.5,8.5 + parent: 2 + - uid: 13033 + components: + - type: Transform + pos: 85.5,9.5 + parent: 2 + - uid: 13034 + components: + - type: Transform + pos: 85.5,10.5 + parent: 2 + - uid: 13035 + components: + - type: Transform + pos: 84.5,24.5 + parent: 2 + - uid: 13036 + components: + - type: Transform + pos: 84.5,25.5 + parent: 2 + - uid: 13037 + components: + - type: Transform + pos: 84.5,26.5 + parent: 2 + - uid: 13038 + components: + - type: Transform + pos: 84.5,27.5 + parent: 2 + - uid: 13040 + components: + - type: Transform + pos: 87.5,19.5 + parent: 2 + - uid: 13041 + components: + - type: Transform + pos: 88.5,12.5 + parent: 2 + - uid: 13042 + components: + - type: Transform + pos: 88.5,9.5 + parent: 2 + - uid: 13043 + components: + - type: Transform + pos: 88.5,8.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 13142 + components: + - type: Transform + pos: 84.5,10.5 + parent: 2 + - uid: 13144 + components: + - type: Transform + pos: 84.5,9.5 + parent: 2 + - uid: 13145 + components: + - type: Transform + pos: 84.5,8.5 + parent: 2 + - uid: 13146 + components: + - type: Transform + pos: 84.5,7.5 + parent: 2 + - uid: 13147 + components: + - type: Transform + pos: 84.5,6.5 + parent: 2 + - uid: 13148 + components: + - type: Transform + pos: 84.5,18.5 + parent: 2 + - uid: 13149 + components: + - type: Transform + pos: 84.5,19.5 + parent: 2 + - uid: 13150 + components: + - type: Transform + pos: 84.5,20.5 + parent: 2 + - uid: 13151 + components: + - type: Transform + pos: 86.5,29.5 + parent: 2 +- proto: SpawnPointWarden + entities: + - uid: 8362 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 + - uid: 13051 + components: + - type: Transform + pos: -35.5,2.5 + parent: 2 + - uid: 13094 + components: + - type: Transform + pos: -36.5,6.5 + parent: 2 + - uid: 13085 + components: + - type: Transform + pos: 49.5,12.5 + parent: 2 + - uid: 13086 + components: + - type: Transform + pos: 50.5,12.5 + parent: 2 + - uid: 13087 + components: + - type: Transform + pos: 55.5,17.5 + parent: 2 + - uid: 13088 + components: + - type: Transform + pos: 58.5,17.5 + parent: 2 + - uid: 13089 + components: + - type: Transform + pos: 63.5,12.5 + parent: 2 +- proto: SpeedLoaderCap + entities: + - uid: 13631 + components: + - type: Transform + pos: 62.207752,-43.207134 + parent: 2 + - uid: 13632 + components: + - type: Transform + pos: 62.5265,-43.225883 + parent: 2 + - uid: 13638 + components: + - type: Transform + pos: 69.17971,-41.519634 + parent: 2 + - uid: 13639 + components: + - type: Transform + pos: 69.62971,-41.519634 + parent: 2 +- proto: SpeedLoaderMagnum + entities: + - uid: 8363 + components: + - type: Transform + pos: -23.311062,6.408317 + parent: 2 +- proto: SpeedLoaderMagnumAP + entities: + - uid: 8364 + components: + - type: Transform + pos: -23.480331,6.564567 + parent: 2 + - uid: 8365 + components: + - type: Transform + pos: -23.415228,6.564567 + parent: 2 +- proto: SpeedLoaderMagnumRubber + entities: + - uid: 8366 + components: + - type: Transform + pos: -11.391171,5.3788524 + parent: 2 + - uid: 8367 + components: + - type: Transform + pos: -11.328671,5.7382274 + parent: 2 +- proto: SpiderWeb + entities: + - uid: 8368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-22.5 + parent: 2 + - uid: 8369 + components: + - type: Transform + pos: 74.5,-14.5 + parent: 2 + - uid: 8370 + components: + - type: Transform + pos: 73.5,-15.5 + parent: 2 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 8371 + components: + - type: Transform + pos: 20.263905,-5.0311575 + parent: 2 + - uid: 8372 + components: + - type: Transform + pos: 20.263905,-5.1249075 + parent: 2 + - uid: 8373 + components: + - type: Transform + pos: 20.263905,-5.2342825 + parent: 2 + - uid: 8374 + components: + - type: Transform + pos: 20.263905,-5.3280325 + parent: 2 + - uid: 12296 + components: + - type: Transform + pos: 9.599411,-7.907524 + parent: 2 +- proto: SS13Memorial + entities: + - uid: 13302 + components: + - type: MetaData + desc: Мемориал, показывающий мужчину, который держит в руке звезду. Он явно пытается улыбается, не скрывая горесть потери. Под ним расположена табличка где указаны полные имена неизвестных вам сотрудников. Ниже имён есть надпись "Я бы последовал за тобой - моим братом, моим капитаном, моим королем". + name: Мемориал "Упавших Звёзд" + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-23.5 + parent: 2 +- proto: StairDark + entities: + - uid: 8375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 2 + - uid: 8376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,0.5 + parent: 2 +- proto: StairStage + entities: + - uid: 13910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-30.5 + parent: 2 + - uid: 13918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-31.5 + parent: 2 +- proto: StairWood + entities: + - uid: 14816 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 14817 + components: + - type: Transform + pos: 16.5,28.5 + parent: 2 + - uid: 14818 + components: + - type: Transform + pos: 17.5,28.5 + parent: 2 +- proto: StasisBed + entities: + - uid: 8377 + components: + - type: Transform + pos: -20.5,2.5 + parent: 2 + - uid: 8378 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 2 +- proto: StationMap + entities: + - uid: 12492 + components: + - type: Transform + pos: -14.5,13.5 + parent: 2 + - uid: 12908 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 13287 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 13289 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 13293 + components: + - type: Transform + pos: 62.5,3.5 + parent: 2 + - uid: 15229 + components: + - type: Transform + pos: 77.5,8.5 + parent: 2 + - uid: 15231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-15.5 + parent: 2 + - uid: 15233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-1.5 + parent: 2 +- proto: StationMapAssembly + entities: + - uid: 13448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-26.5 + parent: 2 +- proto: StationRecordsComputerCircuitboard + entities: + - uid: 8379 + components: + - type: Transform + pos: 95.53781,33.783737 + parent: 2 +- proto: StatueVenusBlue + entities: + - uid: 12170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,43.5 + parent: 2 + - uid: 12227 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 +- proto: StatueVenusRed + entities: + - uid: 12171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,43.5 + parent: 2 +- proto: SteelBench + entities: + - uid: 13440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-7.5 + parent: 2 +- proto: StimpackMini + entities: + - uid: 15165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.22368,23.770996 + parent: 2 +- proto: Stool + entities: + - uid: 8380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.470718,-4.0726247 + parent: 2 + - uid: 8381 + components: + - type: Transform + pos: 16.471882,-4.50838 + parent: 2 +- proto: StoolBar + entities: + - uid: 8382 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 8383 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 8384 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 8385 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 +- proto: StorageCanister + entities: + - uid: 8386 + components: + - type: Transform + anchored: True + pos: 74.5,23.5 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + bodyType: Static + - uid: 8387 + components: + - type: Transform + pos: 61.5,4.5 + parent: 2 + - uid: 8388 + components: + - type: Transform + pos: 78.5,17.5 + parent: 2 + - uid: 8389 + components: + - type: Transform + pos: 78.5,18.5 + parent: 2 +- proto: StrangePill + entities: + - uid: 13275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.53748,-29.6224 + parent: 2 + - uid: 13556 + components: + - type: Transform + pos: 44.3342,-29.763025 + parent: 2 + - uid: 13558 + components: + - type: Transform + pos: 44.115288,-29.419275 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 8390 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 + - uid: 8391 + components: + - type: Transform + pos: -28.5,8.5 + parent: 2 + - uid: 8392 + components: + - type: Transform + pos: 53.5,-27.5 + parent: 2 + - uid: 8393 + components: + - type: Transform + pos: 91.5,-5.5 + parent: 2 + - uid: 8394 + components: + - type: Transform + pos: 78.5,49.5 + parent: 2 + - uid: 8395 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 8396 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - uid: 8397 + components: + - type: Transform + pos: 74.5,-30.5 + parent: 2 + - uid: 8398 + components: + - type: Transform + pos: 50.5,16.5 + parent: 2 + - uid: 8399 + components: + - type: Transform + pos: 54.5,29.5 + parent: 2 + - uid: 8400 + components: + - type: Transform + pos: 87.5,-2.5 + parent: 2 + - uid: 11742 + components: + - type: Transform + pos: 82.5,16.5 + parent: 2 +- proto: SubstationMachineCircuitboard + entities: + - uid: 230 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 231 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: SubstationWallBasic + entities: + - uid: 8401 + components: + - type: Transform + pos: -51.5,7.5 + parent: 2 + - uid: 8402 + components: + - type: Transform + pos: -64.5,4.5 + parent: 2 + - uid: 8403 + components: + - type: Transform + pos: -54.5,4.5 + parent: 2 +- proto: SuitStorageCaptain + entities: + - uid: 8404 + components: + - type: Transform + pos: -52.5,5.5 + parent: 2 +- proto: SuitStorageCE + entities: + - uid: 8405 + components: + - type: Transform + pos: 68.5,47.5 + parent: 2 +- proto: SuitStorageEngi + entities: + - uid: 8406 + components: + - type: Transform + pos: 90.5,33.5 + parent: 2 + - uid: 8407 + components: + - type: Transform + pos: 89.5,33.5 + parent: 2 + - uid: 8408 + components: + - type: Transform + pos: 91.5,33.5 + parent: 2 + - uid: 8409 + components: + - type: Transform + pos: 95.5,27.5 + parent: 2 + - uid: 8410 + components: + - type: Transform + pos: 95.5,28.5 + parent: 2 + - uid: 8411 + components: + - type: Transform + pos: 95.5,29.5 + parent: 2 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 8412 + components: + - type: Transform + pos: -40.5,8.5 + parent: 2 + - uid: 8413 + components: + - type: Transform + pos: -39.5,8.5 + parent: 2 +- proto: SuitStorageRD + entities: + - uid: 8414 + components: + - type: Transform + pos: 64.5,21.5 + parent: 2 +- proto: SuitStorageSalv + entities: + - uid: 8415 + components: + - type: Transform + pos: 86.5,-45.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + pos: 86.5,-47.5 + parent: 2 + - uid: 8417 + components: + - type: Transform + pos: 86.5,-46.5 + parent: 2 + - uid: 8418 + components: + - type: Transform + pos: 86.5,-44.5 + parent: 2 +- proto: SuitStorageSec + entities: + - uid: 8419 + components: + - type: Transform + pos: -47.5,3.5 + parent: 2 + - uid: 8421 + components: + - type: Transform + pos: -46.5,3.5 + parent: 2 + - uid: 12012 + components: + - type: Transform + pos: -48.5,3.5 + parent: 2 +- proto: SuitStorageWarden + entities: + - uid: 8422 + components: + - type: Transform + pos: -42.5,0.5 + parent: 2 +- proto: Supermatter + entities: + - uid: 6762 + components: + - type: Transform + pos: 93.5,47.5 + parent: 2 +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 8424 + components: + - type: Transform + pos: 93.5,1.5 + parent: 2 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 8425 + components: + - type: Transform + pos: 93.5,3.5 + parent: 2 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 8426 + components: + - type: Transform + pos: 93.5,-1.5 + parent: 2 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 8427 + components: + - type: Transform + pos: 93.5,0.5 + parent: 2 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 8428 + components: + - type: Transform + pos: 93.5,-0.5 + parent: 2 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 8429 + components: + - type: Transform + pos: 93.5,-2.5 + parent: 2 +- proto: SurveillanceCameraRouterService + entities: + - uid: 8430 + components: + - type: Transform + pos: 93.5,-3.5 + parent: 2 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 8431 + components: + - type: Transform + pos: 93.5,2.5 + parent: 2 +- proto: SurveillanceCameraWirelessRouterBase + entities: + - uid: 8432 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 8433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-8.5 + parent: 2 +- proto: SurvivalKnife + entities: + - uid: 8434 + components: + - type: Transform + pos: 76.39558,-14.3857355 + parent: 2 +- proto: SyringeDermaline + entities: + - uid: 14184 + components: + - type: Transform + pos: 48.52174,-10.88549 + parent: 2 + - uid: 14185 + components: + - type: Transform + pos: 48.553013,-11.04174 + parent: 2 +- proto: Table + entities: + - uid: 6949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,6.5 + parent: 2 + - uid: 7581 + components: + - type: Transform + pos: 83.5,-19.5 + parent: 2 + - uid: 8435 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - uid: 8436 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 8437 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - uid: 8438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,6.5 + parent: 2 + - uid: 8439 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 8440 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 8442 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 8443 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 8444 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 8445 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 8446 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 8447 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 8448 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 8449 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 + - uid: 8450 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 8451 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 2 + - uid: 8452 + components: + - type: Transform + pos: 38.5,-3.5 + parent: 2 + - uid: 8453 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 2 + - uid: 8454 + components: + - type: Transform + pos: 58.5,-23.5 + parent: 2 + - uid: 8455 + components: + - type: Transform + pos: 58.5,-22.5 + parent: 2 + - uid: 8456 + components: + - type: Transform + pos: 52.5,-4.5 + parent: 2 + - uid: 8457 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 + - uid: 8458 + components: + - type: Transform + pos: 76.5,-16.5 + parent: 2 + - uid: 8459 + components: + - type: Transform + pos: 52.5,-2.5 + parent: 2 + - uid: 8460 + components: + - type: Transform + pos: 52.5,-3.5 + parent: 2 + - uid: 8461 + components: + - type: Transform + pos: 58.5,-4.5 + parent: 2 + - uid: 8462 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 2 + - uid: 8463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-22.5 + parent: 2 + - uid: 8464 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 + - uid: 8465 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 2 + - uid: 8466 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 8467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 2 + - uid: 8468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-4.5 + parent: 2 + - uid: 8469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-4.5 + parent: 2 + - uid: 8470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-4.5 + parent: 2 + - uid: 8471 + components: + - type: Transform + pos: -28.5,9.5 + parent: 2 + - uid: 8473 + components: + - type: Transform + pos: 83.5,-15.5 + parent: 2 + - uid: 8474 + components: + - type: Transform + pos: 76.5,-17.5 + parent: 2 + - uid: 8475 + components: + - type: Transform + pos: 76.5,-15.5 + parent: 2 + - uid: 8476 + components: + - type: Transform + pos: 75.5,-17.5 + parent: 2 + - uid: 8477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-20.5 + parent: 2 + - uid: 8478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-21.5 + parent: 2 + - uid: 8479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-21.5 + parent: 2 + - uid: 8480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-21.5 + parent: 2 + - uid: 8481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-19.5 + parent: 2 + - uid: 8482 + components: + - type: Transform + pos: 82.5,-26.5 + parent: 2 + - uid: 8483 + components: + - type: Transform + pos: 82.5,-25.5 + parent: 2 + - uid: 8484 + components: + - type: Transform + pos: 83.5,-25.5 + parent: 2 + - uid: 8485 + components: + - type: Transform + pos: 84.5,-25.5 + parent: 2 + - uid: 8486 + components: + - type: Transform + pos: 84.5,-26.5 + parent: 2 + - uid: 8487 + components: + - type: Transform + pos: 92.5,25.5 + parent: 2 + - uid: 8488 + components: + - type: Transform + pos: 92.5,26.5 + parent: 2 + - uid: 8489 + components: + - type: Transform + pos: 92.5,27.5 + parent: 2 + - uid: 8490 + components: + - type: Transform + pos: 92.5,28.5 + parent: 2 + - uid: 8491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,-19.5 + parent: 2 + - uid: 8492 + components: + - type: Transform + pos: 20.5,8.5 + parent: 2 + - uid: 8493 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 8494 + components: + - type: Transform + pos: 69.5,-21.5 + parent: 2 + - uid: 8495 + components: + - type: Transform + pos: 67.5,-20.5 + parent: 2 + - uid: 8496 + components: + - type: Transform + pos: 67.5,-19.5 + parent: 2 + - uid: 8497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-22.5 + parent: 2 + - uid: 8498 + components: + - type: Transform + pos: 67.5,-16.5 + parent: 2 + - uid: 8499 + components: + - type: Transform + pos: 67.5,-17.5 + parent: 2 + - uid: 8500 + components: + - type: Transform + pos: 67.5,-18.5 + parent: 2 + - uid: 8501 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 + - uid: 12322 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 12462 + components: + - type: Transform + pos: 74.5,-29.5 + parent: 2 + - uid: 13329 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - uid: 13355 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 13543 + components: + - type: Transform + pos: 47.5,-28.5 + parent: 2 + - uid: 13545 + components: + - type: Transform + pos: 46.5,-28.5 + parent: 2 + - uid: 13546 + components: + - type: Transform + pos: 45.5,-28.5 + parent: 2 + - uid: 14133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-29.5 + parent: 2 + - uid: 14134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-29.5 + parent: 2 +- proto: TableCarpet + entities: + - uid: 8503 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 8504 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 8610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 2 + - uid: 14494 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 +- proto: TableCounterMetal + entities: + - uid: 12286 + components: + - type: Transform + pos: -40.5,10.5 + parent: 2 + - uid: 13390 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 2 + - uid: 13485 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 2 + - uid: 13486 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 2 + - uid: 13593 + components: + - type: Transform + pos: 39.5,-30.5 + parent: 2 + - uid: 13595 + components: + - type: Transform + pos: 39.5,-29.5 + parent: 2 + - uid: 13671 + components: + - type: Transform + pos: 48.5,-14.5 + parent: 2 + - uid: 13672 + components: + - type: Transform + pos: 48.5,-15.5 + parent: 2 + - uid: 13673 + components: + - type: Transform + pos: 48.5,-16.5 + parent: 2 + - uid: 14126 + components: + - type: Transform + pos: 71.5,-34.5 + parent: 2 + - uid: 14127 + components: + - type: Transform + pos: 72.5,-34.5 + parent: 2 + - uid: 14141 + components: + - type: Transform + pos: 70.5,-34.5 + parent: 2 + - uid: 14340 + components: + - type: Transform + pos: 95.5,-47.5 + parent: 2 + - uid: 14341 + components: + - type: Transform + pos: 94.5,-47.5 + parent: 2 + - uid: 14415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,-40.5 + parent: 2 + - uid: 14417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,-47.5 + parent: 2 + - uid: 14418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,-46.5 + parent: 2 + - uid: 14561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,-29.5 + parent: 2 + - uid: 14588 + components: + - type: Transform + pos: 50.5,31.5 + parent: 2 + - uid: 14594 + components: + - type: Transform + pos: 50.5,32.5 + parent: 2 + - uid: 14866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,27.5 + parent: 2 + - uid: 14867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,27.5 + parent: 2 + - uid: 14868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,27.5 + parent: 2 + - uid: 14869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,27.5 + parent: 2 + - uid: 14992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,26.5 + parent: 2 + - uid: 14996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,26.5 + parent: 2 + - uid: 15114 + components: + - type: Transform + pos: 25.5,29.5 + parent: 2 + - uid: 15115 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 + - uid: 15152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,27.5 + parent: 2 + - uid: 15153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,27.5 + parent: 2 + - uid: 15154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,28.5 + parent: 2 + - uid: 15155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,27.5 + parent: 2 +- proto: TableCounterWood + entities: + - uid: 8508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 2 + - uid: 8509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 2 + - uid: 8510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 2 + - uid: 8511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 2 + - uid: 8512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 2 + - uid: 9253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 2 +- proto: TableFancyBlack + entities: + - uid: 13317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-24.5 + parent: 2 + - uid: 13318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-23.5 + parent: 2 + - uid: 13319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-22.5 + parent: 2 + - uid: 13362 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 2 + - uid: 14290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 100.5,-47.5 + parent: 2 + - uid: 14291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 99.5,-44.5 + parent: 2 + - uid: 14292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 98.5,-44.5 + parent: 2 +- proto: TableFancyBlue + entities: + - uid: 8513 + components: + - type: Transform + pos: -54.5,1.5 + parent: 2 + - uid: 8514 + components: + - type: Transform + pos: -54.5,-2.5 + parent: 2 + - uid: 8515 + components: + - type: Transform + pos: -55.5,1.5 + parent: 2 + - uid: 8516 + components: + - type: Transform + pos: -52.5,2.5 + parent: 2 + - uid: 8517 + components: + - type: Transform + pos: -52.5,1.5 + parent: 2 + - uid: 8518 + components: + - type: Transform + pos: -54.5,-0.5 + parent: 2 + - uid: 8519 + components: + - type: Transform + pos: -54.5,0.5 + parent: 2 + - uid: 8520 + components: + - type: Transform + pos: -54.5,-1.5 + parent: 2 + - uid: 8521 + components: + - type: Transform + pos: -53.5,1.5 + parent: 2 + - uid: 8522 + components: + - type: Transform + pos: -55.5,-2.5 + parent: 2 + - uid: 8523 + components: + - type: Transform + pos: -53.5,0.5 + parent: 2 + - uid: 8524 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 2 + - uid: 8525 + components: + - type: Transform + pos: -53.5,-1.5 + parent: 2 + - uid: 8526 + components: + - type: Transform + pos: -56.5,1.5 + parent: 2 + - uid: 8527 + components: + - type: Transform + pos: -53.5,-2.5 + parent: 2 + - uid: 8528 + components: + - type: Transform + pos: -56.5,2.5 + parent: 2 + - uid: 8529 + components: + - type: Transform + pos: -55.5,-1.5 + parent: 2 + - uid: 8530 + components: + - type: Transform + pos: -55.5,-0.5 + parent: 2 + - uid: 8531 + components: + - type: Transform + pos: -55.5,0.5 + parent: 2 +- proto: TableFancyCyan + entities: + - uid: 8532 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 2 + - uid: 8533 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 2 +- proto: TableFancyOrange + entities: + - uid: 8534 + components: + - type: Transform + pos: 72.5,46.5 + parent: 2 + - uid: 8535 + components: + - type: Transform + pos: 71.5,46.5 + parent: 2 + - uid: 10700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,41.5 + parent: 2 +- proto: TableFancyPink + entities: + - uid: 8536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 2 + - uid: 8537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 +- proto: TableFancyPurple + entities: + - uid: 8538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,18.5 + parent: 2 + - uid: 8539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,15.5 + parent: 2 + - uid: 8540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,16.5 + parent: 2 + - uid: 8541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,18.5 + parent: 2 + - uid: 8542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,18.5 + parent: 2 +- proto: TableFancyWhite + entities: + - uid: 8543 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - uid: 8544 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 8545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 2 +- proto: TableFrame + entities: + - uid: 13449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-29.5 + parent: 2 +- proto: TableGlass + entities: + - uid: 8546 + components: + - type: Transform + pos: 87.5,-27.5 + parent: 2 + - uid: 12297 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 2 + - uid: 12313 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 3260 + components: + - type: Transform + pos: 83.5,9.5 + parent: 2 + - uid: 3261 + components: + - type: Transform + pos: 83.5,8.5 + parent: 2 + - uid: 8547 + components: + - type: Transform + pos: 78.5,-18.5 + parent: 2 + - uid: 8548 + components: + - type: Transform + pos: 88.5,13.5 + parent: 2 + - uid: 8549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,13.5 + parent: 2 + - uid: 8550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,14.5 + parent: 2 + - uid: 8551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,12.5 + parent: 2 + - uid: 8552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-44.5 + parent: 2 + - uid: 8553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-44.5 + parent: 2 + - uid: 8554 + components: + - type: Transform + pos: 82.5,-47.5 + parent: 2 + - uid: 8555 + components: + - type: Transform + pos: 83.5,-47.5 + parent: 2 + - uid: 8556 + components: + - type: Transform + pos: 82.5,-46.5 + parent: 2 + - uid: 8557 + components: + - type: Transform + pos: 84.5,-47.5 + parent: 2 + - uid: 8558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,13.5 + parent: 2 + - uid: 8559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-5.5 + parent: 2 + - uid: 8560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-4.5 + parent: 2 + - uid: 12108 + components: + - type: Transform + pos: 87.5,14.5 + parent: 2 + - uid: 12553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,31.5 + parent: 2 + - uid: 15482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-54.5 + parent: 2 + - uid: 15483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-53.5 + parent: 2 +- proto: TableReinforcedGlass + entities: + - uid: 8561 + components: + - type: Transform + pos: 89.5,-27.5 + parent: 2 +- proto: TableStone + entities: + - uid: 8562 + components: + - type: Transform + pos: -23.5,4.5 + parent: 2 + - uid: 8563 + components: + - type: Transform + pos: -24.5,4.5 + parent: 2 + - uid: 8564 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - uid: 8565 + components: + - type: Transform + pos: -22.5,4.5 + parent: 2 + - uid: 8566 + components: + - type: Transform + pos: -39.5,2.5 + parent: 2 + - uid: 8567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 2 +- proto: TableWood + entities: + - uid: 3146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,-17.5 + parent: 2 + - uid: 3148 + components: + - type: Transform + pos: 86.5,-17.5 + parent: 2 + - uid: 6698 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - uid: 8568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,6.5 + parent: 2 + - uid: 8569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,7.5 + parent: 2 + - uid: 8570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 2 + - uid: 8571 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 8572 + components: + - type: Transform + pos: 35.5,5.5 + parent: 2 + - uid: 8573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-29.5 + parent: 2 + - uid: 8574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,9.5 + parent: 2 + - uid: 8575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,8.5 + parent: 2 + - uid: 8576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,8.5 + parent: 2 + - uid: 8577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,5.5 + parent: 2 + - uid: 8578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,4.5 + parent: 2 + - uid: 8579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-28.5 + parent: 2 + - uid: 8580 + components: + - type: Transform + pos: 57.5,-27.5 + parent: 2 + - uid: 8581 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 8582 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 2 + - uid: 8583 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - uid: 8584 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 2 + - uid: 8586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,10.5 + parent: 2 + - uid: 8591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 2 + - uid: 8592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 2 + - uid: 8593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 2 + - uid: 8594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 2 + - uid: 8596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-27.5 + parent: 2 + - uid: 8597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,6.5 + parent: 2 + - uid: 8598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,6.5 + parent: 2 + - uid: 8599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-4.5 + parent: 2 + - uid: 8600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-2.5 + parent: 2 + - uid: 8601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 2 + - uid: 8602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 2 + - uid: 8603 + components: + - type: Transform + pos: 63.5,27.5 + parent: 2 + - uid: 8604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,9.5 + parent: 2 + - uid: 12490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + - uid: 12503 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 12514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + - uid: 12960 + components: + - type: Transform + pos: -53.5,5.5 + parent: 2 + - uid: 13122 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 13206 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 13207 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 13258 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 13268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 2 + - uid: 13272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-42.5 + parent: 2 + - uid: 13521 + components: + - type: Transform + pos: 71.5,-46.5 + parent: 2 + - uid: 13522 + components: + - type: Transform + pos: 71.5,-45.5 + parent: 2 + - uid: 13523 + components: + - type: Transform + pos: 71.5,-44.5 + parent: 2 + - uid: 13619 + components: + - type: Transform + pos: 69.5,-41.5 + parent: 2 + - uid: 13620 + components: + - type: Transform + pos: 69.5,-42.5 + parent: 2 + - uid: 13627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-43.5 + parent: 2 + - uid: 14575 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 14619 + components: + - type: Transform + pos: 23.5,25.5 + parent: 2 + - uid: 14623 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 14849 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - uid: 14850 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - uid: 15034 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 +- proto: TableWoodReinforced + entities: + - uid: 8606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 2 + - uid: 8611 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 8612 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 8613 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - uid: 8614 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - uid: 8615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,11.5 + parent: 2 + - uid: 8616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,10.5 + parent: 2 + - uid: 8617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,10.5 + parent: 2 + - uid: 8618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,11.5 + parent: 2 + - uid: 9254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 2 + - uid: 9258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 2 + - uid: 9259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 2 + - uid: 9300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 2 + - uid: 12090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 2 + - uid: 12092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,8.5 + parent: 2 + - uid: 12219 + components: + - type: Transform + pos: 82.5,-16.5 + parent: 2 + - uid: 12333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 2 + - uid: 12335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 2 + - uid: 12336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,9.5 + parent: 2 + - uid: 14640 + components: + - type: Transform + pos: 16.5,29.5 + parent: 2 + - uid: 14641 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 14642 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - uid: 14735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,26.5 + parent: 2 + - uid: 14842 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 14843 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - uid: 14844 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 +- proto: TechnologyDisk + entities: + - uid: 3291 + components: + - type: Transform + parent: 3290 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 3292 + components: + - type: Transform + parent: 3290 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 3293 + components: + - type: Transform + parent: 3290 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: TechnologyDiskRare + entities: + - uid: 3294 + components: + - type: Transform + parent: 3290 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12112 + components: + - type: Transform + pos: 106.11447,-22.808123 + parent: 2 + - uid: 12436 + components: + - type: Transform + pos: 106.80248,-22.823748 + parent: 2 + - uid: 12437 + components: + - type: Transform + pos: 106.78684,-22.120623 + parent: 2 + - uid: 12438 + components: + - type: Transform + pos: 106.11447,-22.104998 + parent: 2 +- proto: TelecomServer + entities: + - uid: 8619 + components: + - type: Transform + pos: -60.5,-7.5 + parent: 2 + - uid: 8620 + components: + - type: Transform + pos: -60.5,-6.5 + parent: 2 + - uid: 8621 + components: + - type: Transform + pos: -60.5,-4.5 + parent: 2 + - uid: 8622 + components: + - type: Transform + pos: -60.5,-3.5 + parent: 2 + - uid: 13436 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 2 +- proto: TelecomServerFilledCargo + entities: + - uid: 8623 + components: + - type: Transform + pos: -64.5,-7.5 + parent: 2 +- proto: TelecomServerFilledCommand + entities: + - uid: 8624 + components: + - type: Transform + pos: -64.5,-6.5 + parent: 2 +- proto: TelecomServerFilledCommon + entities: + - uid: 8625 + components: + - type: Transform + pos: -62.5,-4.5 + parent: 2 +- proto: TelecomServerFilledEngineering + entities: + - uid: 8626 + components: + - type: Transform + pos: -64.5,-3.5 + parent: 2 +- proto: TelecomServerFilledMedical + entities: + - uid: 8627 + components: + - type: Transform + pos: -64.5,-4.5 + parent: 2 +- proto: TelecomServerFilledScience + entities: + - uid: 8628 + components: + - type: Transform + pos: -62.5,-3.5 + parent: 2 +- proto: TelecomServerFilledSecurity + entities: + - uid: 8629 + components: + - type: Transform + pos: -62.5,-7.5 + parent: 2 +- proto: TelecomServerFilledService + entities: + - uid: 8630 + components: + - type: Transform + pos: -62.5,-6.5 + parent: 2 +- proto: Telecrystal10 + entities: + - uid: 5069 + components: + - type: Transform + parent: 13039 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Telecrystal5 + entities: + - uid: 8631 + components: + - type: Transform + pos: 106.14976,27.806814 + parent: 2 +- proto: TeslaCoil + entities: + - uid: 12589 + components: + - type: Transform + pos: 95.5,50.5 + parent: 2 + - uid: 12590 + components: + - type: Transform + pos: 95.5,46.5 + parent: 2 + - uid: 12595 + components: + - type: Transform + pos: 95.5,44.5 + parent: 2 + - uid: 12597 + components: + - type: Transform + pos: 95.5,48.5 + parent: 2 + - uid: 12599 + components: + - type: Transform + pos: 90.5,50.5 + parent: 2 + - uid: 12600 + components: + - type: Transform + pos: 90.5,44.5 + parent: 2 +- proto: TeslaGroundingRod + entities: + - uid: 12596 + components: + - type: Transform + pos: 95.5,47.5 + parent: 2 + - uid: 12646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,45.5 + parent: 2 + - uid: 12647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,49.5 + parent: 2 +- proto: ThermomachineFreezerMachineCircuitBoard + entities: + - uid: 232 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ThermomachineHeaterMachineCircuitBoard + entities: + - uid: 233 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ThrusterMachineCircuitboard + entities: + - uid: 234 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 235 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: TintedWindow + entities: + - uid: 8632 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - uid: 8633 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 + - uid: 8634 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 2 + - uid: 14675 + components: + - type: Transform + pos: 18.5,27.5 + parent: 2 +- proto: ToiletDirtyWater + entities: + - uid: 8635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,8.5 + parent: 2 + - uid: 8636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,19.5 + parent: 2 + - uid: 14627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,28.5 + parent: 2 +- proto: ToiletEmpty + entities: + - uid: 8637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,46.5 + parent: 2 + - uid: 8638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-4.5 + parent: 2 + - uid: 8639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-12.5 + parent: 2 +- proto: ToolboxArtisticFilled + entities: + - uid: 8640 + components: + - type: Transform + pos: 72.535286,4.62175 + parent: 2 + - uid: 8641 + components: + - type: Transform + pos: 67.43184,-17.180275 + parent: 2 +- proto: ToolboxElectricalFilled + entities: + - uid: 8642 + components: + - type: Transform + pos: 67.447464,-17.649025 + parent: 2 + - uid: 8643 + components: + - type: Transform + pos: 74.48585,4.543625 + parent: 2 + - uid: 8644 + components: + - type: Transform + pos: 58.16079,9.755737 + parent: 2 +- proto: ToolboxEmergencyFilled + entities: + - uid: 8645 + components: + - type: Transform + pos: 74.47021,5.5905 + parent: 2 + - uid: 8646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.68184,-18.69679 + parent: 2 + - uid: 13524 + components: + - type: Transform + pos: 47.477165,-28.4349 + parent: 2 +- proto: ToolboxMechanicalFilled + entities: + - uid: 8647 + components: + - type: Transform + pos: 57.91647,9.493513 + parent: 2 + - uid: 8649 + components: + - type: Transform + pos: 69.45197,-22.466543 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 12009 + components: + - type: Transform + pos: 67.496414,-16.808867 + parent: 2 + - uid: 13560 + components: + - type: Transform + pos: 45.83532,-28.481775 + parent: 2 +- proto: ToolboxSyndicateFilled + entities: + - uid: 8650 + components: + - type: Transform + pos: 106.44663,27.47869 + parent: 2 +- proto: ToyDurand + entities: + - uid: 13342 + components: + - type: Transform + pos: 16.050184,-23.37557 + parent: 2 +- proto: ToyFigurineCaptain + entities: + - uid: 8651 + components: + - type: Transform + pos: -57.727715,6.7054276 + parent: 2 + - uid: 8652 + components: + - type: MetaData + desc: Эта игрушка напоминает КПБ-*** + name: КЗ-0** + - type: Transform + pos: -54.68862,10.549952 + parent: 2 + - uid: 13363 + components: + - type: MetaData + desc: Фигурка, изображающая стандартно экипированного капитана гражданского космического актива Nanotrasen. У основания написано мелким шрифтом "Он сказал, что либо он, либо команда. В тот момент его помощник ничего не понял, и пытался открыть шлюз, который был на болтах. Со стороны капитана прогремел взрыв. Потом стрельба. Потом что-то, в виде сингулярности поглотило весь мостик и внезапно пропало. Он не умер! Именно поэтому он тут! Мы будем ждать вас, Капитан!!!" + - type: Transform + pos: 17.318523,-23.087914 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ToyFigurineCargoTech + entities: + - uid: 8653 + components: + - type: Transform + pos: 76.74621,-16.977928 + parent: 2 + - uid: 13330 + components: + - type: MetaData + desc: Фигурка, изображающая грузчика расы рептилий. У основания написано мелким шрифтом "Погиб при лобовом столкновении с кораблём врага. Всё ради пары минут, для зарядки прыжкового двигателя." + - type: Transform + pos: 13.6136465,-24.274145 + parent: 2 +- proto: ToyFigurineChef + entities: + - uid: 13328 + components: + - type: MetaData + desc: Фигурка, изображающая шеф-повара, мастера кулинарных искусств! У основания написано мелким шрифтом "Лучший кук. Умер как герой, забрав с собой десяток агентов голыми руками" + - type: Transform + pos: 13.45728,-23.805395 + parent: 2 +- proto: ToyFigurineChemist + entities: + - uid: 13326 + components: + - type: MetaData + desc: Фигурка, изображающая химика, который, по всей видимости, ползёт куда то. У основания написано мелким шрифтом "Даже когда умирал, зашивал раны сослуживцев. Последний пакет крови влил в капитана. Скончался от потери крови..." + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.36346,-23.47727 + parent: 2 +- proto: ToyFigurineChiefEngineer + entities: + - uid: 12988 + components: + - type: Transform + pos: 71.96507,42.716965 + parent: 2 +- proto: ToyFigurineDetective + entities: + - uid: 15312 + components: + - type: Transform + pos: -11.2195215,5.07967 + parent: 2 +- proto: ToyFigurineEngineer + entities: + - uid: 13321 + components: + - type: MetaData + desc: Фигурка, изображающая инженера станции, держащего наготове монтировку. У основания написано мелким шрифтом "Их нашли у двигателей, с большим количеством ожогов. Врачи сообщили, что они умерли не от них, а от того, что у них закончился кислород в баллонах. И даже когда они задыхались, они ремонтировали обшивку и двигатели корабля." + - type: Transform + pos: 13.6136465,-22.586645 + parent: 2 + - uid: 13322 + components: + - type: MetaData + desc: Фигурка, изображающая инженера станции, держащего наготове монтировку. У основания написано мелким шрифтом "Их нашли у двигателей, с большим количеством ожогов. Врачи сообщили, что они умерли не от них, а от того, что у них закончился кислород в баллонах. И даже когда они задыхались, они ремонтировали обшивку и двигатели корабля." + - type: Transform + pos: 13.41037,-22.66477 + parent: 2 +- proto: ToyFigurineGreytider + entities: + - uid: 8654 + components: + - type: Transform + pos: 67.69276,-18.045506 + parent: 2 +- proto: ToyFigurineHeadOfSecurity + entities: + - uid: 13320 + components: + - type: MetaData + desc: Фигурка, изображающая прославленного главу отдела службы безопасности. У основания написано мелким шрифтом "Он здесь не потому что герой, а как напоминание. Этот ублюдок продал корабль с его экипажем врагу. Врагом может быть каждый. Спасибо за этот урок." + - type: Transform + pos: 13.332187,-22.16477 + parent: 2 +- proto: ToyFigurineHoloClown + entities: + - uid: 15029 + components: + - type: Transform + pos: 30.09288,23.62018 + parent: 2 +- proto: ToyFigurineJanitor + entities: + - uid: 8655 + components: + - type: Transform + pos: 20.300362,-4.4862375 + parent: 2 +- proto: ToyFigurineLawyer + entities: + - uid: 416 + components: + - type: Transform + pos: -7.479348,-2.0194066 + parent: 2 + - uid: 12504 + components: + - type: Transform + pos: -12.489924,9.970119 + parent: 2 + - uid: 13343 + components: + - type: MetaData + desc: 'Фигурка, изображающая Адвкоата в свежепошитом костюме. У основания написано мелким шрифтом "Ты был ублюдком, который был вечно недоволен всем. Но перед смертью ты доказал обратное, заблокировав шлюз со словами: Ну хоть помру эффектно..."' + - type: Transform + pos: 13.6136465,-23.024145 + parent: 2 +- proto: ToyFigurineLibrarian + entities: + - uid: 8656 + components: + - type: Transform + pos: 44.50345,9.630541 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ToyFigurineNukieCommander + entities: + - uid: 8657 + components: + - type: Transform + pos: -48.366993,-4.627418 + parent: 2 + - uid: 8658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.510365,6.3616776 + parent: 2 +- proto: ToyFigurineSpaceDragon + entities: + - uid: 15030 + components: + - type: Transform + pos: 28.435396,24.62018 + parent: 2 +- proto: ToyFigurineThief + entities: + - uid: 15031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.576126,23.479555 + parent: 2 +- proto: ToyFigurineWizard + entities: + - uid: 15028 + components: + - type: Transform + pos: 29.608143,24.18268 + parent: 2 +- proto: ToyMouse + entities: + - uid: 13345 + components: + - type: Transform + pos: 16.034548,-23.87557 + parent: 2 +- proto: ToyRipley + entities: + - uid: 7575 + components: + - type: Transform + pos: 83.83287,-25.287575 + parent: 2 +- proto: ToySpawner + entities: + - uid: 14158 + components: + - type: Transform + pos: 72.5,-34.5 + parent: 2 +- proto: ToySword + entities: + - uid: 8660 + components: + - type: Transform + pos: -33.384907,6.7245617 + parent: 2 + - uid: 13659 + components: + - type: Transform + pos: 71.46721,-45.963383 + parent: 2 + - uid: 13660 + components: + - type: Transform + pos: 71.57971,-45.682133 + parent: 2 + - uid: 13661 + components: + - type: Transform + pos: 71.71096,-46.00088 + parent: 2 + - uid: 13662 + components: + - type: Transform + pos: 71.917206,-45.700882 + parent: 2 +- proto: TrashBagBlue + entities: + - uid: 12295 + components: + - type: Transform + pos: 9.802536,-7.798149 + parent: 2 + - uid: 13668 + components: + - type: MetaData + name: мешок для собирания пулек + - type: Transform + pos: 71.84182,-46.00088 + parent: 2 +- proto: TwoWayLever + entities: + - uid: 8661 + components: + - type: Transform + pos: 86.5,-14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3245: + - Left: Forward + - Right: Reverse + - Middle: Off + 3242: + - Left: Forward + - Right: Reverse + - Middle: Off + 3243: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 8663 + components: + - type: Transform + pos: 91.5,-8.5 + parent: 2 +- proto: UnfinishedMachineFrame + entities: + - uid: 15575 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 +- proto: UniformPrinter + entities: + - uid: 8664 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 +- proto: UprightPianoInstrument + entities: + - uid: 8665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 2 +- proto: Vaccinator + entities: + - uid: 8666 + components: + - type: Transform + pos: 55.5,-22.5 + parent: 2 +- proto: VendingBarDrobe + entities: + - uid: 8667 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 12201 + components: + - type: Transform + pos: 72.5,36.5 + parent: 2 + - uid: 12785 + components: + - type: Transform + pos: 82.5,18.5 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 8668 + components: + - type: Transform + pos: 63.5,41.5 + parent: 2 + - uid: 8669 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 + - uid: 14845 + components: + - type: Transform + pos: 16.5,22.5 + parent: 2 + - type: AccessReader + enabled: False + - type: Emagged +- proto: VendingMachineBoxingDrobe + entities: + - uid: 8670 + components: + - type: Transform + pos: 76.5,4.5 + parent: 2 +- proto: VendingMachineCargoDrobe + entities: + - uid: 8671 + components: + - type: Transform + pos: 71.5,-19.5 + parent: 2 +- proto: VendingMachineCart + entities: + - uid: 8672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 2 +- proto: VendingMachineChapel + entities: + - uid: 8673 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 +- proto: VendingMachineChefDrobe + entities: + - uid: 8674 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 +- proto: VendingMachineChefvend + entities: + - uid: 8675 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 +- proto: VendingMachineChemDrobe + entities: + - uid: 8676 + components: + - type: Transform + pos: 50.5,-5.5 + parent: 2 +- proto: VendingMachineChemicals + entities: + - uid: 8677 + components: + - type: Transform + pos: 50.5,-4.5 + parent: 2 +- proto: VendingMachineCoffee + entities: + - uid: 8678 + components: + - type: Transform + pos: 55.5,9.5 + parent: 2 + - uid: 13276 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 13434 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 +- proto: VendingMachineCondiments + entities: + - uid: 12326 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 +- proto: VendingMachineCourierDrobe + entities: + - uid: 11226 + components: + - type: Transform + pos: 87.5,-17.5 + parent: 2 +- proto: VendingMachineCuraDrobe + entities: + - uid: 9252 + components: + - type: Transform + pos: 43.5,9.5 + parent: 2 +- proto: VendingMachineDetDrobe + entities: + - uid: 8679 + components: + - type: Transform + pos: -14.5,4.5 + parent: 2 +- proto: VendingMachineDinnerware + entities: + - uid: 8680 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 +- proto: VendingMachineDonut + entities: + - uid: 13277 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 +- proto: VendingMachineEngiDrobe + entities: + - uid: 8681 + components: + - type: Transform + pos: 83.5,23.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,6.5 + parent: 2 +- proto: VendingMachineFitness + entities: + - uid: 8682 + components: + - type: Transform + pos: 76.5,5.5 + parent: 2 + - uid: 12558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,33.5 + parent: 2 +- proto: VendingMachineGames + entities: + - uid: 382 + components: + - type: Transform + pos: 34.5,7.5 + parent: 2 + - uid: 15032 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 +- proto: VendingMachineHydrobe + entities: + - uid: 12147 + components: + - type: Transform + pos: 20.5,9.5 + parent: 2 +- proto: VendingMachineJaniDrobe + entities: + - uid: 8684 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 +- proto: VendingMachineLawDrobe + entities: + - uid: 8685 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 2 + - uid: 8686 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 12358 + components: + - type: Transform + pos: 42.5,-2.5 + parent: 2 + - uid: 12360 + components: + - type: Transform + pos: 44.5,-10.5 + parent: 2 +- proto: VendingMachineMediDrobe + entities: + - uid: 8687 + components: + - type: Transform + pos: 68.5,-4.5 + parent: 2 +- proto: VendingMachineRepDrobe + entities: + - uid: 8688 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 +- proto: VendingMachineRestockBooze + entities: + - uid: 8689 + components: + - type: Transform + pos: 3.6924365,-8.426158 + parent: 2 +- proto: VendingMachineRoboDrobe + entities: + - uid: 8690 + components: + - type: Transform + pos: 50.5,14.5 + parent: 2 +- proto: VendingMachineRobotics + entities: + - uid: 8691 + components: + - type: Transform + pos: 49.5,14.5 + parent: 2 +- proto: VendingMachineSalvage + entities: + - uid: 8692 + components: + - type: Transform + pos: 78.5,-46.5 + parent: 2 +- proto: VendingMachineSciDrobe + entities: + - uid: 8693 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 +- proto: VendingMachineSec + entities: + - uid: 8694 + components: + - type: Transform + pos: -14.5,9.5 + parent: 2 +- proto: VendingMachineSecDrobe + entities: + - uid: 8695 + components: + - type: Transform + pos: -18.5,9.5 + parent: 2 +- proto: VendingMachineSeeds + entities: + - uid: 12146 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 8696 + components: + - type: Transform + pos: -43.5,5.5 + parent: 2 +- proto: VendingMachineSoda + entities: + - uid: 13359 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 +- proto: VendingMachineSovietSoda + entities: + - uid: 8697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-42.5 + parent: 2 +- proto: VendingMachineSustenance + entities: + - uid: 8698 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 2 + - uid: 8699 + components: + - type: Transform + pos: -47.5,5.5 + parent: 2 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 8700 + components: + - type: Transform + pos: 87.5,23.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 8702 + components: + - type: Transform + pos: 87.5,24.5 + parent: 2 + - uid: 12231 + components: + - type: Transform + pos: -48.5,1.5 + parent: 2 +- proto: VendingMachineTheater + entities: + - uid: 8703 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 +- proto: VendingMachineVendomat + entities: + - uid: 8704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-14.5 + parent: 2 + - uid: 8705 + components: + - type: Transform + pos: 46.5,14.5 + parent: 2 +- proto: VendingMachineWallMedical + entities: + - uid: 8706 + components: + - type: MetaData + name: НаноМед с свободным доступом + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-4.5 + parent: 2 + - type: AccessReader + enabled: False + - uid: 12348 + components: + - type: MetaData + name: НаноМед с свободным доступом + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 2 + - type: AccessReader + enabled: False + - uid: 12359 + components: + - type: Transform + pos: 45.5,-6.5 + parent: 2 + - uid: 12361 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 2 +- proto: VendingMachineWeeb + entities: + - uid: 8707 + components: + - type: Transform + pos: 76.5,3.5 + parent: 2 +- proto: VendingMachineYouTool + entities: + - uid: 3259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,7.5 + parent: 2 + - uid: 8708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-15.5 + parent: 2 +- proto: WallBrick + entities: + - uid: 8709 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - uid: 8710 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 8711 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 + - uid: 8712 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 8713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 2 + - uid: 8714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 2 + - uid: 8715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 2 + - uid: 8716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 2 + - uid: 8717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 2 + - uid: 8718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 2 + - uid: 8719 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 + - uid: 8720 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 8721 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 8722 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 2 + - uid: 8723 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 8724 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 8725 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 1592 + components: + - type: Transform + pos: 63.5,48.5 + parent: 2 + - uid: 2095 + components: + - type: Transform + pos: -34.5,11.5 + parent: 2 + - uid: 4022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,49.5 + parent: 2 + - uid: 6905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 101.5,52.5 + parent: 2 + - uid: 8726 + components: + - type: Transform + pos: -55.5,10.5 + parent: 2 + - uid: 8727 + components: + - type: Transform + pos: -60.5,10.5 + parent: 2 + - uid: 8728 + components: + - type: Transform + pos: -59.5,10.5 + parent: 2 + - uid: 8729 + components: + - type: Transform + pos: -57.5,10.5 + parent: 2 + - uid: 8730 + components: + - type: Transform + pos: -58.5,10.5 + parent: 2 + - uid: 8731 + components: + - type: Transform + pos: -49.5,1.5 + parent: 2 + - uid: 8732 + components: + - type: Transform + pos: -67.5,9.5 + parent: 2 + - uid: 8733 + components: + - type: Transform + pos: -65.5,10.5 + parent: 2 + - uid: 8734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 2 + - uid: 8735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,14.5 + parent: 2 + - uid: 8736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,14.5 + parent: 2 + - uid: 8737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,14.5 + parent: 2 + - uid: 8738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,14.5 + parent: 2 + - uid: 8739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,15.5 + parent: 2 + - uid: 8740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,14.5 + parent: 2 + - uid: 8741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 2 + - uid: 8742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-4.5 + parent: 2 + - uid: 8743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,7.5 + parent: 2 + - uid: 8744 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 2 + - uid: 8745 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - uid: 8746 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 2 + - uid: 8747 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 2 + - uid: 8748 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 2 + - uid: 8749 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 2 + - uid: 8750 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 2 + - uid: 8751 + components: + - type: Transform + pos: -37.5,-5.5 + parent: 2 + - uid: 8752 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 2 + - uid: 8753 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 2 + - uid: 8754 + components: + - type: Transform + pos: 67.5,-6.5 + parent: 2 + - uid: 8755 + components: + - type: Transform + pos: 51.5,-6.5 + parent: 2 + - uid: 8756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-2.5 + parent: 2 + - uid: 8757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-5.5 + parent: 2 + - uid: 8758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-1.5 + parent: 2 + - uid: 8759 + components: + - type: Transform + pos: 63.5,-2.5 + parent: 2 + - uid: 8760 + components: + - type: Transform + pos: 63.5,-3.5 + parent: 2 + - uid: 8761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-1.5 + parent: 2 + - uid: 8762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-1.5 + parent: 2 + - uid: 8763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-1.5 + parent: 2 + - uid: 8764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-1.5 + parent: 2 + - uid: 8765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-3.5 + parent: 2 + - uid: 8766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-1.5 + parent: 2 + - uid: 8767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-6.5 + parent: 2 + - uid: 8768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-6.5 + parent: 2 + - uid: 8769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-1.5 + parent: 2 + - uid: 8770 + components: + - type: Transform + pos: -16.5,15.5 + parent: 2 + - uid: 8771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,14.5 + parent: 2 + - uid: 8772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,14.5 + parent: 2 + - uid: 8773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,14.5 + parent: 2 + - uid: 8774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,14.5 + parent: 2 + - uid: 8775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,14.5 + parent: 2 + - uid: 8776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,14.5 + parent: 2 + - uid: 8777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,14.5 + parent: 2 + - uid: 8778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,14.5 + parent: 2 + - uid: 8779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,14.5 + parent: 2 + - uid: 8780 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 2 + - uid: 8781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,5.5 + parent: 2 + - uid: 8782 + components: + - type: Transform + pos: -19.5,4.5 + parent: 2 + - uid: 8783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,5.5 + parent: 2 + - uid: 8784 + components: + - type: Transform + pos: -21.5,5.5 + parent: 2 + - uid: 8785 + components: + - type: Transform + pos: -19.5,9.5 + parent: 2 + - uid: 8786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,8.5 + parent: 2 + - uid: 8787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,14.5 + parent: 2 + - uid: 8788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,14.5 + parent: 2 + - uid: 8789 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 + - uid: 8790 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 + - uid: 8791 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 2 + - uid: 8792 + components: + - type: Transform + pos: -41.5,10.5 + parent: 2 + - uid: 8793 + components: + - type: Transform + pos: -48.5,9.5 + parent: 2 + - uid: 8794 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 8795 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 2 + - uid: 8796 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 8797 + components: + - type: Transform + pos: -43.5,0.5 + parent: 2 + - uid: 8798 + components: + - type: Transform + pos: -22.5,5.5 + parent: 2 + - uid: 8799 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 2 + - uid: 8800 + components: + - type: Transform + pos: -48.5,4.5 + parent: 2 + - uid: 8801 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 + - uid: 8802 + components: + - type: Transform + pos: -38.5,-1.5 + parent: 2 + - uid: 8803 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - uid: 8804 + components: + - type: Transform + pos: -34.5,-1.5 + parent: 2 + - uid: 8805 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 2 + - uid: 8806 + components: + - type: Transform + pos: -56.5,10.5 + parent: 2 + - uid: 8807 + components: + - type: Transform + pos: -64.5,10.5 + parent: 2 + - uid: 8808 + components: + - type: Transform + pos: -50.5,4.5 + parent: 2 + - uid: 8809 + components: + - type: Transform + pos: -51.5,4.5 + parent: 2 + - uid: 8810 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 2 + - uid: 8811 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 2 + - uid: 8812 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 2 + - uid: 8813 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 2 + - uid: 8814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,14.5 + parent: 2 + - uid: 8815 + components: + - type: Transform + pos: 72.5,24.5 + parent: 2 + - uid: 8816 + components: + - type: Transform + pos: -66.5,2.5 + parent: 2 + - uid: 8817 + components: + - type: Transform + pos: 51.5,3.5 + parent: 2 + - uid: 8818 + components: + - type: Transform + pos: 52.5,3.5 + parent: 2 + - uid: 8819 + components: + - type: Transform + pos: 53.5,3.5 + parent: 2 + - uid: 8820 + components: + - type: Transform + pos: 58.5,3.5 + parent: 2 + - uid: 8821 + components: + - type: Transform + pos: 54.5,3.5 + parent: 2 + - uid: 8822 + components: + - type: Transform + pos: 59.5,3.5 + parent: 2 + - uid: 8823 + components: + - type: Transform + pos: 61.5,3.5 + parent: 2 + - uid: 8824 + components: + - type: Transform + pos: 60.5,3.5 + parent: 2 + - uid: 8825 + components: + - type: Transform + pos: 67.5,3.5 + parent: 2 + - uid: 8826 + components: + - type: Transform + pos: 66.5,3.5 + parent: 2 + - uid: 8827 + components: + - type: Transform + pos: 68.5,3.5 + parent: 2 + - uid: 8828 + components: + - type: Transform + pos: 45.5,12.5 + parent: 2 + - uid: 8829 + components: + - type: Transform + pos: 53.5,4.5 + parent: 2 + - uid: 8830 + components: + - type: Transform + pos: -73.5,8.5 + parent: 2 + - uid: 8831 + components: + - type: Transform + pos: -75.5,6.5 + parent: 2 + - uid: 8832 + components: + - type: Transform + pos: -73.5,-6.5 + parent: 2 + - uid: 8833 + components: + - type: Transform + pos: -75.5,-4.5 + parent: 2 + - uid: 8834 + components: + - type: Transform + pos: -76.5,-1.5 + parent: 2 + - uid: 8835 + components: + - type: Transform + pos: -76.5,3.5 + parent: 2 + - uid: 8836 + components: + - type: Transform + pos: -69.5,-7.5 + parent: 2 + - uid: 8837 + components: + - type: Transform + pos: -68.5,-7.5 + parent: 2 + - uid: 8838 + components: + - type: Transform + pos: -69.5,9.5 + parent: 2 + - uid: 8839 + components: + - type: Transform + pos: -68.5,9.5 + parent: 2 + - uid: 8840 + components: + - type: Transform + pos: -66.5,-1.5 + parent: 2 + - uid: 8841 + components: + - type: Transform + pos: -66.5,0.5 + parent: 2 + - uid: 8842 + components: + - type: Transform + pos: -66.5,1.5 + parent: 2 + - uid: 8843 + components: + - type: Transform + pos: 62.5,3.5 + parent: 2 + - uid: 8844 + components: + - type: Transform + pos: 64.5,3.5 + parent: 2 + - uid: 8845 + components: + - type: Transform + pos: -61.5,3.5 + parent: 2 + - uid: 8846 + components: + - type: Transform + pos: -61.5,2.5 + parent: 2 + - uid: 8847 + components: + - type: Transform + pos: -61.5,1.5 + parent: 2 + - uid: 8848 + components: + - type: Transform + pos: -61.5,0.5 + parent: 2 + - uid: 8849 + components: + - type: Transform + pos: -61.5,-0.5 + parent: 2 + - uid: 8850 + components: + - type: Transform + pos: -61.5,-1.5 + parent: 2 + - uid: 8851 + components: + - type: Transform + pos: -62.5,-1.5 + parent: 2 + - uid: 8852 + components: + - type: Transform + pos: -63.5,-1.5 + parent: 2 + - uid: 8853 + components: + - type: Transform + pos: -64.5,-1.5 + parent: 2 + - uid: 8854 + components: + - type: Transform + pos: -65.5,-1.5 + parent: 2 + - uid: 8855 + components: + - type: Transform + pos: -60.5,3.5 + parent: 2 + - uid: 8856 + components: + - type: Transform + pos: -60.5,4.5 + parent: 2 + - uid: 8857 + components: + - type: Transform + pos: -60.5,-2.5 + parent: 2 + - uid: 8858 + components: + - type: Transform + pos: -60.5,2.5 + parent: 2 + - uid: 8859 + components: + - type: Transform + pos: -60.5,-0.5 + parent: 2 + - uid: 8860 + components: + - type: Transform + pos: -60.5,-1.5 + parent: 2 + - uid: 8861 + components: + - type: Transform + pos: -60.5,0.5 + parent: 2 + - uid: 8862 + components: + - type: Transform + pos: -60.5,1.5 + parent: 2 + - uid: 8863 + components: + - type: Transform + pos: -66.5,-2.5 + parent: 2 + - uid: 8864 + components: + - type: Transform + pos: -65.5,-2.5 + parent: 2 + - uid: 8865 + components: + - type: Transform + pos: -64.5,-2.5 + parent: 2 + - uid: 8866 + components: + - type: Transform + pos: -63.5,-2.5 + parent: 2 + - uid: 8867 + components: + - type: Transform + pos: -62.5,-2.5 + parent: 2 + - uid: 8868 + components: + - type: Transform + pos: -61.5,-2.5 + parent: 2 + - uid: 8869 + components: + - type: Transform + pos: -61.5,4.5 + parent: 2 + - uid: 8870 + components: + - type: Transform + pos: -62.5,4.5 + parent: 2 + - uid: 8871 + components: + - type: Transform + pos: -63.5,4.5 + parent: 2 + - uid: 8872 + components: + - type: Transform + pos: 63.5,3.5 + parent: 2 + - uid: 8873 + components: + - type: Transform + pos: -65.5,4.5 + parent: 2 + - uid: 8874 + components: + - type: Transform + pos: -66.5,4.5 + parent: 2 + - uid: 8875 + components: + - type: Transform + pos: -49.5,4.5 + parent: 2 + - uid: 8876 + components: + - type: Transform + pos: -49.5,3.5 + parent: 2 + - uid: 8877 + components: + - type: Transform + pos: -66.5,9.5 + parent: 2 + - uid: 8878 + components: + - type: Transform + pos: -66.5,10.5 + parent: 2 + - uid: 8879 + components: + - type: Transform + pos: -49.5,2.5 + parent: 2 + - uid: 8880 + components: + - type: Transform + pos: -54.5,4.5 + parent: 2 + - uid: 8881 + components: + - type: Transform + pos: -66.5,5.5 + parent: 2 + - uid: 8882 + components: + - type: Transform + pos: -66.5,6.5 + parent: 2 + - uid: 8883 + components: + - type: Transform + pos: -66.5,8.5 + parent: 2 + - uid: 8884 + components: + - type: Transform + pos: -67.5,-7.5 + parent: 2 + - uid: 8885 + components: + - type: Transform + pos: -66.5,-7.5 + parent: 2 + - uid: 8886 + components: + - type: Transform + pos: -66.5,-3.5 + parent: 2 + - uid: 8887 + components: + - type: Transform + pos: -66.5,-8.5 + parent: 2 + - uid: 8888 + components: + - type: Transform + pos: -66.5,-4.5 + parent: 2 + - uid: 8889 + components: + - type: Transform + pos: -66.5,-6.5 + parent: 2 + - uid: 8890 + components: + - type: Transform + pos: -64.5,-8.5 + parent: 2 + - uid: 8891 + components: + - type: Transform + pos: -65.5,-8.5 + parent: 2 + - uid: 8892 + components: + - type: Transform + pos: -60.5,-8.5 + parent: 2 + - uid: 8893 + components: + - type: Transform + pos: -59.5,-8.5 + parent: 2 + - uid: 8894 + components: + - type: Transform + pos: -49.5,-0.5 + parent: 2 + - uid: 8895 + components: + - type: Transform + pos: -40.5,11.5 + parent: 2 + - uid: 8896 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 8897 + components: + - type: Transform + pos: -55.5,-8.5 + parent: 2 + - uid: 8898 + components: + - type: Transform + pos: -55.5,-9.5 + parent: 2 + - uid: 8899 + components: + - type: Transform + pos: -55.5,11.5 + parent: 2 + - uid: 8900 + components: + - type: Transform + pos: -52.5,4.5 + parent: 2 + - uid: 8901 + components: + - type: Transform + pos: -53.5,4.5 + parent: 2 + - uid: 8902 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 2 + - uid: 8903 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 + - uid: 8904 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 8905 + components: + - type: Transform + pos: -56.5,4.5 + parent: 2 + - uid: 8906 + components: + - type: Transform + pos: -54.5,11.5 + parent: 2 + - uid: 8907 + components: + - type: Transform + pos: -51.5,11.5 + parent: 2 + - uid: 8908 + components: + - type: Transform + pos: -52.5,11.5 + parent: 2 + - uid: 8909 + components: + - type: Transform + pos: -51.5,9.5 + parent: 2 + - uid: 8910 + components: + - type: Transform + pos: -51.5,10.5 + parent: 2 + - uid: 8911 + components: + - type: Transform + pos: -51.5,8.5 + parent: 2 + - uid: 8912 + components: + - type: Transform + pos: -51.5,5.5 + parent: 2 + - uid: 8913 + components: + - type: Transform + pos: -51.5,6.5 + parent: 2 + - uid: 8914 + components: + - type: Transform + pos: -55.5,4.5 + parent: 2 + - uid: 8915 + components: + - type: Transform + pos: -51.5,7.5 + parent: 2 + - uid: 8916 + components: + - type: Transform + pos: -58.5,4.5 + parent: 2 + - uid: 8917 + components: + - type: Transform + pos: -57.5,4.5 + parent: 2 + - uid: 8918 + components: + - type: Transform + pos: -49.5,-2.5 + parent: 2 + - uid: 8919 + components: + - type: Transform + pos: -49.5,0.5 + parent: 2 + - uid: 8920 + components: + - type: Transform + pos: -49.5,-1.5 + parent: 2 + - uid: 8921 + components: + - type: Transform + pos: -49.5,-3.5 + parent: 2 + - uid: 8922 + components: + - type: Transform + pos: -49.5,-5.5 + parent: 2 + - uid: 8923 + components: + - type: Transform + pos: -49.5,-4.5 + parent: 2 + - uid: 8924 + components: + - type: Transform + pos: -48.5,-5.5 + parent: 2 + - uid: 8925 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - uid: 8926 + components: + - type: Transform + pos: -44.5,-5.5 + parent: 2 + - uid: 8927 + components: + - type: Transform + pos: -46.5,-5.5 + parent: 2 + - uid: 8928 + components: + - type: Transform + pos: -45.5,-5.5 + parent: 2 + - uid: 8929 + components: + - type: Transform + pos: -43.5,-5.5 + parent: 2 + - uid: 8930 + components: + - type: Transform + pos: -54.5,-9.5 + parent: 2 + - uid: 8931 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 2 + - uid: 8932 + components: + - type: Transform + pos: -52.5,-9.5 + parent: 2 + - uid: 8933 + components: + - type: Transform + pos: -39.5,11.5 + parent: 2 + - uid: 8934 + components: + - type: Transform + pos: -41.5,11.5 + parent: 2 + - uid: 8935 + components: + - type: Transform + pos: -27.5,12.5 + parent: 2 + - uid: 8936 + components: + - type: Transform + pos: -26.5,12.5 + parent: 2 + - uid: 8937 + components: + - type: Transform + pos: -25.5,12.5 + parent: 2 + - uid: 8938 + components: + - type: Transform + pos: -24.5,12.5 + parent: 2 + - uid: 8939 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 + - uid: 8940 + components: + - type: Transform + pos: -22.5,12.5 + parent: 2 + - uid: 8941 + components: + - type: Transform + pos: -21.5,12.5 + parent: 2 + - uid: 8942 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 8943 + components: + - type: Transform + pos: -19.5,12.5 + parent: 2 + - uid: 8944 + components: + - type: Transform + pos: -38.5,12.5 + parent: 2 + - uid: 8945 + components: + - type: Transform + pos: -37.5,12.5 + parent: 2 + - uid: 8946 + components: + - type: Transform + pos: -36.5,12.5 + parent: 2 + - uid: 8947 + components: + - type: Transform + pos: -35.5,12.5 + parent: 2 + - uid: 8948 + components: + - type: Transform + pos: -34.5,12.5 + parent: 2 + - uid: 8949 + components: + - type: Transform + pos: -33.5,12.5 + parent: 2 + - uid: 8950 + components: + - type: Transform + pos: -32.5,12.5 + parent: 2 + - uid: 8951 + components: + - type: Transform + pos: -31.5,12.5 + parent: 2 + - uid: 8952 + components: + - type: Transform + pos: -30.5,12.5 + parent: 2 + - uid: 8953 + components: + - type: Transform + pos: -29.5,12.5 + parent: 2 + - uid: 8954 + components: + - type: Transform + pos: -28.5,12.5 + parent: 2 + - uid: 8955 + components: + - type: Transform + pos: -19.5,13.5 + parent: 2 + - uid: 8956 + components: + - type: Transform + pos: -18.5,13.5 + parent: 2 + - uid: 8957 + components: + - type: Transform + pos: -14.5,15.5 + parent: 2 + - uid: 8958 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 + - uid: 8959 + components: + - type: Transform + pos: -18.5,15.5 + parent: 2 + - uid: 8960 + components: + - type: Transform + pos: -14.5,13.5 + parent: 2 + - uid: 8961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,35.5 + parent: 2 + - uid: 8962 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 2 + - uid: 8963 + components: + - type: Transform + pos: -39.5,-9.5 + parent: 2 + - uid: 8964 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 2 + - uid: 8965 + components: + - type: Transform + pos: -49.5,-9.5 + parent: 2 + - uid: 8966 + components: + - type: Transform + pos: -48.5,-9.5 + parent: 2 + - uid: 8967 + components: + - type: Transform + pos: -45.5,-9.5 + parent: 2 + - uid: 8968 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 2 + - uid: 8969 + components: + - type: Transform + pos: -43.5,-9.5 + parent: 2 + - uid: 8970 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 2 + - uid: 8971 + components: + - type: Transform + pos: -41.5,-9.5 + parent: 2 + - uid: 8972 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - uid: 8973 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 2 + - uid: 8974 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 8975 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 2 + - uid: 8976 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 2 + - uid: 8977 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 8978 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 2 + - uid: 8979 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 2 + - uid: 8980 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 2 + - uid: 8981 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 2 + - uid: 8982 + components: + - type: Transform + pos: -38.5,-10.5 + parent: 2 + - uid: 8983 + components: + - type: Transform + pos: -37.5,-10.5 + parent: 2 + - uid: 8984 + components: + - type: Transform + pos: -36.5,-10.5 + parent: 2 + - uid: 8985 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - uid: 8986 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 8987 + components: + - type: Transform + pos: -30.5,-10.5 + parent: 2 + - uid: 8988 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 2 + - uid: 8989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-13.5 + parent: 2 + - uid: 8990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-11.5 + parent: 2 + - uid: 8991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-11.5 + parent: 2 + - uid: 8992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-11.5 + parent: 2 + - uid: 8993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-11.5 + parent: 2 + - uid: 8994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-11.5 + parent: 2 + - uid: 8995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-11.5 + parent: 2 + - uid: 8996 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 8997 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 8998 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 2 + - uid: 8999 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 + - uid: 9000 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 + - uid: 9002 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 9003 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 2 + - uid: 9004 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - uid: 9005 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 2 + - uid: 9006 + components: + - type: Transform + pos: -38.5,11.5 + parent: 2 + - uid: 9007 + components: + - type: Transform + pos: -41.5,9.5 + parent: 2 + - uid: 9008 + components: + - type: Transform + pos: -46.5,9.5 + parent: 2 + - uid: 9009 + components: + - type: Transform + pos: -37.5,9.5 + parent: 2 + - uid: 9010 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 + - uid: 9011 + components: + - type: Transform + pos: -39.5,9.5 + parent: 2 + - uid: 9012 + components: + - type: Transform + pos: -41.5,8.5 + parent: 2 + - uid: 9013 + components: + - type: Transform + pos: -40.5,9.5 + parent: 2 + - uid: 9014 + components: + - type: Transform + pos: -41.5,7.5 + parent: 2 + - uid: 9015 + components: + - type: Transform + pos: -41.5,5.5 + parent: 2 + - uid: 9016 + components: + - type: Transform + pos: -43.5,9.5 + parent: 2 + - uid: 9017 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 2 + - uid: 9018 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 2 + - uid: 9019 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - uid: 9020 + components: + - type: Transform + pos: -26.5,9.5 + parent: 2 + - uid: 9021 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 9022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,5.5 + parent: 2 + - uid: 9023 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 9024 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 9025 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 9026 + components: + - type: Transform + pos: -21.5,10.5 + parent: 2 + - uid: 9027 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 9028 + components: + - type: Transform + pos: -22.5,10.5 + parent: 2 + - uid: 9029 + components: + - type: Transform + pos: -19.5,3.5 + parent: 2 + - uid: 9030 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 9031 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 9032 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 9033 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 9034 + components: + - type: Transform + pos: -19.5,5.5 + parent: 2 + - uid: 9035 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 + - uid: 9036 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 9037 + components: + - type: Transform + pos: -26.5,10.5 + parent: 2 + - uid: 9038 + components: + - type: Transform + pos: -13.5,6.5 + parent: 2 + - uid: 9039 + components: + - type: Transform + pos: -13.5,4.5 + parent: 2 + - uid: 9040 + components: + - type: Transform + pos: -13.5,8.5 + parent: 2 + - uid: 9041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,5.5 + parent: 2 + - uid: 9042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,5.5 + parent: 2 + - uid: 9043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,7.5 + parent: 2 + - uid: 9044 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 9045 + components: + - type: Transform + pos: -36.5,9.5 + parent: 2 + - uid: 9046 + components: + - type: Transform + pos: 65.5,3.5 + parent: 2 + - uid: 9047 + components: + - type: Transform + pos: -34.5,9.5 + parent: 2 + - uid: 9048 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 + - uid: 9049 + components: + - type: Transform + pos: -32.5,9.5 + parent: 2 + - uid: 9050 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 9051 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 + - uid: 9052 + components: + - type: Transform + pos: -29.5,9.5 + parent: 2 + - uid: 9053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,8.5 + parent: 2 + - uid: 9054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,7.5 + parent: 2 + - uid: 9055 + components: + - type: Transform + pos: -47.5,4.5 + parent: 2 + - uid: 9056 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 2 + - uid: 9057 + components: + - type: Transform + pos: -45.5,4.5 + parent: 2 + - uid: 9058 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 2 + - uid: 9059 + components: + - type: Transform + pos: -46.5,4.5 + parent: 2 + - uid: 9060 + components: + - type: Transform + pos: -49.5,5.5 + parent: 2 + - uid: 9061 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 2 + - uid: 9062 + components: + - type: Transform + pos: -42.5,4.5 + parent: 2 + - uid: 9063 + components: + - type: Transform + pos: -44.5,4.5 + parent: 2 + - uid: 9064 + components: + - type: Transform + pos: -40.5,4.5 + parent: 2 + - uid: 9065 + components: + - type: Transform + pos: -43.5,4.5 + parent: 2 + - uid: 9066 + components: + - type: Transform + pos: -42.5,9.5 + parent: 2 + - uid: 9067 + components: + - type: Transform + pos: -41.5,4.5 + parent: 2 + - uid: 9068 + components: + - type: Transform + pos: -49.5,8.5 + parent: 2 + - uid: 9069 + components: + - type: Transform + pos: -19.5,8.5 + parent: 2 + - uid: 9070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,4.5 + parent: 2 + - uid: 9071 + components: + - type: Transform + pos: -19.5,6.5 + parent: 2 + - uid: 9072 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 2 + - uid: 9073 + components: + - type: Transform + pos: -39.5,-1.5 + parent: 2 + - uid: 9074 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 + - uid: 9075 + components: + - type: Transform + pos: -39.5,0.5 + parent: 2 + - uid: 9076 + components: + - type: Transform + pos: -39.5,3.5 + parent: 2 + - uid: 9077 + components: + - type: Transform + pos: -43.5,3.5 + parent: 2 + - uid: 9078 + components: + - type: Transform + pos: -40.5,-1.5 + parent: 2 + - uid: 9079 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 9080 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 2 + - uid: 9081 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - uid: 9082 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 2 + - uid: 9083 + components: + - type: Transform + pos: -13.5,10.5 + parent: 2 + - uid: 9084 + components: + - type: Transform + pos: -14.5,10.5 + parent: 2 + - uid: 9085 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 9086 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - uid: 9087 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 9088 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 2 + - uid: 9089 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 2 + - uid: 9090 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 2 + - uid: 9091 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 9092 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 + - uid: 9093 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 2 + - uid: 9094 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 2 + - uid: 9097 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 2 + - uid: 9098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,4.5 + parent: 2 + - uid: 9099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,14.5 + parent: 2 + - uid: 9100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,14.5 + parent: 2 + - uid: 9101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,14.5 + parent: 2 + - uid: 9105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,15.5 + parent: 2 + - uid: 9106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,16.5 + parent: 2 + - uid: 9107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,16.5 + parent: 2 + - uid: 9108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,16.5 + parent: 2 + - uid: 9109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,17.5 + parent: 2 + - uid: 9110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,17.5 + parent: 2 + - uid: 9111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,17.5 + parent: 2 + - uid: 9112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,18.5 + parent: 2 + - uid: 9113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,18.5 + parent: 2 + - uid: 9114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,18.5 + parent: 2 + - uid: 9115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,19.5 + parent: 2 + - uid: 9116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,19.5 + parent: 2 + - uid: 9117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,19.5 + parent: 2 + - uid: 9118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,19.5 + parent: 2 + - uid: 9119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,20.5 + parent: 2 + - uid: 9120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,21.5 + parent: 2 + - uid: 9121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,22.5 + parent: 2 + - uid: 9122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,22.5 + parent: 2 + - uid: 9123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,22.5 + parent: 2 + - uid: 9124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,22.5 + parent: 2 + - uid: 9125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,22.5 + parent: 2 + - uid: 9126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,22.5 + parent: 2 + - uid: 9130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,22.5 + parent: 2 + - uid: 9131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,22.5 + parent: 2 + - uid: 9132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,22.5 + parent: 2 + - uid: 9133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,22.5 + parent: 2 + - uid: 9134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,22.5 + parent: 2 + - uid: 9135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,22.5 + parent: 2 + - uid: 9136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,22.5 + parent: 2 + - uid: 9137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,22.5 + parent: 2 + - uid: 9138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,22.5 + parent: 2 + - uid: 9139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,22.5 + parent: 2 + - uid: 9140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,22.5 + parent: 2 + - uid: 9141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,22.5 + parent: 2 + - uid: 9142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,22.5 + parent: 2 + - uid: 9143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,22.5 + parent: 2 + - uid: 9144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,21.5 + parent: 2 + - uid: 9145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,21.5 + parent: 2 + - uid: 9146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,21.5 + parent: 2 + - uid: 9147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,21.5 + parent: 2 + - uid: 9148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,21.5 + parent: 2 + - uid: 9149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,21.5 + parent: 2 + - uid: 9150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,21.5 + parent: 2 + - uid: 9151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,21.5 + parent: 2 + - uid: 9152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,21.5 + parent: 2 + - uid: 9153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,21.5 + parent: 2 + - uid: 9154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 2 + - uid: 9155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,21.5 + parent: 2 + - uid: 9156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,21.5 + parent: 2 + - uid: 9157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,21.5 + parent: 2 + - uid: 9158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,21.5 + parent: 2 + - uid: 9159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,21.5 + parent: 2 + - uid: 9160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,21.5 + parent: 2 + - uid: 9161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,21.5 + parent: 2 + - uid: 9162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,21.5 + parent: 2 + - uid: 9163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,21.5 + parent: 2 + - uid: 9164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,21.5 + parent: 2 + - uid: 9165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,21.5 + parent: 2 + - uid: 9166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,21.5 + parent: 2 + - uid: 9167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,21.5 + parent: 2 + - uid: 9168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-12.5 + parent: 2 + - uid: 9169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-12.5 + parent: 2 + - uid: 9170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 2 + - uid: 9171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-12.5 + parent: 2 + - uid: 9172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 9173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-12.5 + parent: 2 + - uid: 9174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 2 + - uid: 9175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-12.5 + parent: 2 + - uid: 9176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-12.5 + parent: 2 + - uid: 9177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-12.5 + parent: 2 + - uid: 9178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-12.5 + parent: 2 + - uid: 9179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-12.5 + parent: 2 + - uid: 9180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-12.5 + parent: 2 + - uid: 9181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-12.5 + parent: 2 + - uid: 9182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-12.5 + parent: 2 + - uid: 9183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-12.5 + parent: 2 + - uid: 9184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-12.5 + parent: 2 + - uid: 9185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-12.5 + parent: 2 + - uid: 9186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-12.5 + parent: 2 + - uid: 9187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-12.5 + parent: 2 + - uid: 9188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-12.5 + parent: 2 + - uid: 9189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-12.5 + parent: 2 + - uid: 9190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-12.5 + parent: 2 + - uid: 9191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-12.5 + parent: 2 + - uid: 9192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-12.5 + parent: 2 + - uid: 9193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-12.5 + parent: 2 + - uid: 9194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-12.5 + parent: 2 + - uid: 9195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-12.5 + parent: 2 + - uid: 9196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-13.5 + parent: 2 + - uid: 9197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-13.5 + parent: 2 + - uid: 9198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-13.5 + parent: 2 + - uid: 9199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-14.5 + parent: 2 + - uid: 9200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-14.5 + parent: 2 + - uid: 9201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-14.5 + parent: 2 + - uid: 9202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-13.5 + parent: 2 + - uid: 9203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-11.5 + parent: 2 + - uid: 9204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-11.5 + parent: 2 + - uid: 9205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-13.5 + parent: 2 + - uid: 9206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,7.5 + parent: 2 + - uid: 9207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,8.5 + parent: 2 + - uid: 9208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,10.5 + parent: 2 + - uid: 9209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,10.5 + parent: 2 + - uid: 9210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-19.5 + parent: 2 + - uid: 9211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-19.5 + parent: 2 + - uid: 9215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-19.5 + parent: 2 + - uid: 9216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-19.5 + parent: 2 + - uid: 9217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-19.5 + parent: 2 + - uid: 9218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-19.5 + parent: 2 + - uid: 9219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-19.5 + parent: 2 + - uid: 9220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-19.5 + parent: 2 + - uid: 9221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-19.5 + parent: 2 + - uid: 9222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-19.5 + parent: 2 + - uid: 9223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-19.5 + parent: 2 + - uid: 9224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-19.5 + parent: 2 + - uid: 9225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-19.5 + parent: 2 + - uid: 9226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-19.5 + parent: 2 + - uid: 9227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-19.5 + parent: 2 + - uid: 9228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-19.5 + parent: 2 + - uid: 9229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-19.5 + parent: 2 + - uid: 9230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-19.5 + parent: 2 + - uid: 9231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-19.5 + parent: 2 + - uid: 9232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 2 + - uid: 9233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-19.5 + parent: 2 + - uid: 9234 + components: + - type: Transform + pos: 65.5,-33.5 + parent: 2 + - uid: 9235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-20.5 + parent: 2 + - uid: 9236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-20.5 + parent: 2 + - uid: 9237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-20.5 + parent: 2 + - uid: 9238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-20.5 + parent: 2 + - uid: 9239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-20.5 + parent: 2 + - uid: 9240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-20.5 + parent: 2 + - uid: 9241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-20.5 + parent: 2 + - uid: 9242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-20.5 + parent: 2 + - uid: 9243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-20.5 + parent: 2 + - uid: 9244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-20.5 + parent: 2 + - uid: 9245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-20.5 + parent: 2 + - uid: 9246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-20.5 + parent: 2 + - uid: 9247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-20.5 + parent: 2 + - uid: 9248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-20.5 + parent: 2 + - uid: 9249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-20.5 + parent: 2 + - uid: 9250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-20.5 + parent: 2 + - uid: 9251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-20.5 + parent: 2 + - uid: 9255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-20.5 + parent: 2 + - uid: 9256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-20.5 + parent: 2 + - uid: 9257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-20.5 + parent: 2 + - uid: 9260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-17.5 + parent: 2 + - uid: 9261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-17.5 + parent: 2 + - uid: 9262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-17.5 + parent: 2 + - uid: 9263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-17.5 + parent: 2 + - uid: 9264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-16.5 + parent: 2 + - uid: 9265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-16.5 + parent: 2 + - uid: 9266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-16.5 + parent: 2 + - uid: 9267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-15.5 + parent: 2 + - uid: 9268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-15.5 + parent: 2 + - uid: 9269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-15.5 + parent: 2 + - uid: 9270 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 9271 + components: + - type: Transform + pos: 62.5,-26.5 + parent: 2 + - uid: 9272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,14.5 + parent: 2 + - uid: 9273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,14.5 + parent: 2 + - uid: 9274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,14.5 + parent: 2 + - uid: 9275 + components: + - type: Transform + pos: 65.5,30.5 + parent: 2 + - uid: 9276 + components: + - type: Transform + pos: 45.5,10.5 + parent: 2 + - uid: 9277 + components: + - type: Transform + pos: 45.5,11.5 + parent: 2 + - uid: 9278 + components: + - type: Transform + pos: 45.5,8.5 + parent: 2 + - uid: 9279 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2 + - uid: 9280 + components: + - type: Transform + pos: 45.5,6.5 + parent: 2 + - uid: 9281 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 9282 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 + - uid: 9283 + components: + - type: Transform + pos: 45.5,5.5 + parent: 2 + - uid: 9284 + components: + - type: Transform + pos: 45.5,3.5 + parent: 2 + - uid: 9285 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 9286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 2 + - uid: 9287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-5.5 + parent: 2 + - uid: 9288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-4.5 + parent: 2 + - uid: 9289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-2.5 + parent: 2 + - uid: 9290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-9.5 + parent: 2 + - uid: 9291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-10.5 + parent: 2 + - uid: 9292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-11.5 + parent: 2 + - uid: 9293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-12.5 + parent: 2 + - uid: 9294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-12.5 + parent: 2 + - uid: 9295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-12.5 + parent: 2 + - uid: 9296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-12.5 + parent: 2 + - uid: 9297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-12.5 + parent: 2 + - uid: 9298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-12.5 + parent: 2 + - uid: 9299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-12.5 + parent: 2 + - uid: 9302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 2 + - uid: 9303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-6.5 + parent: 2 + - uid: 9304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-5.5 + parent: 2 + - uid: 9305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-4.5 + parent: 2 + - uid: 9306 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 2 + - uid: 9307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-1.5 + parent: 2 + - uid: 9308 + components: + - type: Transform + pos: -13.5,9.5 + parent: 2 + - uid: 9309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-13.5 + parent: 2 + - uid: 9310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-13.5 + parent: 2 + - uid: 9311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-13.5 + parent: 2 + - uid: 9312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-13.5 + parent: 2 + - uid: 9313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-13.5 + parent: 2 + - uid: 9314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-13.5 + parent: 2 + - uid: 9315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-13.5 + parent: 2 + - uid: 9316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-12.5 + parent: 2 + - uid: 9317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-11.5 + parent: 2 + - uid: 9318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-10.5 + parent: 2 + - uid: 9319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-9.5 + parent: 2 + - uid: 9320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-14.5 + parent: 2 + - uid: 9321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-15.5 + parent: 2 + - uid: 9322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-16.5 + parent: 2 + - uid: 9323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-17.5 + parent: 2 + - uid: 9324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-18.5 + parent: 2 + - uid: 9325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-20.5 + parent: 2 + - uid: 9326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-21.5 + parent: 2 + - uid: 9327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-21.5 + parent: 2 + - uid: 9328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-21.5 + parent: 2 + - uid: 9329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-21.5 + parent: 2 + - uid: 9330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-21.5 + parent: 2 + - uid: 9331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-21.5 + parent: 2 + - uid: 9332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-21.5 + parent: 2 + - uid: 9333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-21.5 + parent: 2 + - uid: 9334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-21.5 + parent: 2 + - uid: 9335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-21.5 + parent: 2 + - uid: 9336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-21.5 + parent: 2 + - uid: 9337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-13.5 + parent: 2 + - uid: 9338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-13.5 + parent: 2 + - uid: 9339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-13.5 + parent: 2 + - uid: 9340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-13.5 + parent: 2 + - uid: 9341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-13.5 + parent: 2 + - uid: 9342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-13.5 + parent: 2 + - uid: 9343 + components: + - type: Transform + pos: 58.5,-26.5 + parent: 2 + - uid: 9344 + components: + - type: Transform + pos: 57.5,-26.5 + parent: 2 + - uid: 9345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-1.5 + parent: 2 + - uid: 9346 + components: + - type: Transform + pos: 52.5,-1.5 + parent: 2 + - uid: 9347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-1.5 + parent: 2 + - uid: 9348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-1.5 + parent: 2 + - uid: 9349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-2.5 + parent: 2 + - uid: 9350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-3.5 + parent: 2 + - uid: 9351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-4.5 + parent: 2 + - uid: 9352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-5.5 + parent: 2 + - uid: 9353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-22.5 + parent: 2 + - uid: 9354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-3.5 + parent: 2 + - uid: 9355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-4.5 + parent: 2 + - uid: 9356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-2.5 + parent: 2 + - uid: 9357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-1.5 + parent: 2 + - uid: 9358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-5.5 + parent: 2 + - uid: 9359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-5.5 + parent: 2 + - uid: 9360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-5.5 + parent: 2 + - uid: 9361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-5.5 + parent: 2 + - uid: 9362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-9.5 + parent: 2 + - uid: 9363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-9.5 + parent: 2 + - uid: 9364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-9.5 + parent: 2 + - uid: 9365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-9.5 + parent: 2 + - uid: 9366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-10.5 + parent: 2 + - uid: 9367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-12.5 + parent: 2 + - uid: 9368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-23.5 + parent: 2 + - uid: 9369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-21.5 + parent: 2 + - uid: 9370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-21.5 + parent: 2 + - uid: 9371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-21.5 + parent: 2 + - uid: 9372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-21.5 + parent: 2 + - uid: 9373 + components: + - type: Transform + pos: 66.5,-9.5 + parent: 2 + - uid: 9374 + components: + - type: Transform + pos: 64.5,-9.5 + parent: 2 + - uid: 9375 + components: + - type: Transform + pos: 65.5,-9.5 + parent: 2 + - uid: 9376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-13.5 + parent: 2 + - uid: 9377 + components: + - type: Transform + pos: 67.5,-9.5 + parent: 2 + - uid: 9378 + components: + - type: Transform + pos: 67.5,-8.5 + parent: 2 + - uid: 9379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-13.5 + parent: 2 + - uid: 9380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-13.5 + parent: 2 + - uid: 9381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-13.5 + parent: 2 + - uid: 9382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-21.5 + parent: 2 + - uid: 9383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-20.5 + parent: 2 + - uid: 9384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-19.5 + parent: 2 + - uid: 9385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-18.5 + parent: 2 + - uid: 9386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-17.5 + parent: 2 + - uid: 9387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-16.5 + parent: 2 + - uid: 9388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-15.5 + parent: 2 + - uid: 9389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-14.5 + parent: 2 + - uid: 9390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-13.5 + parent: 2 + - uid: 9391 + components: + - type: Transform + pos: 63.5,-5.5 + parent: 2 + - uid: 9392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-9.5 + parent: 2 + - uid: 9393 + components: + - type: Transform + pos: 67.5,-5.5 + parent: 2 + - uid: 9394 + components: + - type: Transform + pos: 67.5,-7.5 + parent: 2 + - uid: 9395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-24.5 + parent: 2 + - uid: 9396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-25.5 + parent: 2 + - uid: 9397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-5.5 + parent: 2 + - uid: 9398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-26.5 + parent: 2 + - uid: 9399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-30.5 + parent: 2 + - uid: 9400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-29.5 + parent: 2 + - uid: 9401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-28.5 + parent: 2 + - uid: 9402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-27.5 + parent: 2 + - uid: 9403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-30.5 + parent: 2 + - uid: 9404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-30.5 + parent: 2 + - uid: 9405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-30.5 + parent: 2 + - uid: 9406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-26.5 + parent: 2 + - uid: 9407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-1.5 + parent: 2 + - uid: 9408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-23.5 + parent: 2 + - uid: 9409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-22.5 + parent: 2 + - uid: 9410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-26.5 + parent: 2 + - uid: 9411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-26.5 + parent: 2 + - uid: 9412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-26.5 + parent: 2 + - uid: 9413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-26.5 + parent: 2 + - uid: 9414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-30.5 + parent: 2 + - uid: 9415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-32.5 + parent: 2 + - uid: 9416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-32.5 + parent: 2 + - uid: 9417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-32.5 + parent: 2 + - uid: 9418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-32.5 + parent: 2 + - uid: 9419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-32.5 + parent: 2 + - uid: 9420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-32.5 + parent: 2 + - uid: 9421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-32.5 + parent: 2 + - uid: 9422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-33.5 + parent: 2 + - uid: 9423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-33.5 + parent: 2 + - uid: 9424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-33.5 + parent: 2 + - uid: 9425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-30.5 + parent: 2 + - uid: 9426 + components: + - type: Transform + pos: 59.5,-26.5 + parent: 2 + - uid: 9427 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - uid: 9428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-5.5 + parent: 2 + - uid: 9429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-4.5 + parent: 2 + - uid: 9430 + components: + - type: Transform + pos: 65.5,-26.5 + parent: 2 + - uid: 9431 + components: + - type: Transform + pos: 64.5,-26.5 + parent: 2 + - uid: 9432 + components: + - type: Transform + pos: 63.5,-26.5 + parent: 2 + - uid: 9433 + components: + - type: Transform + pos: 65.5,-29.5 + parent: 2 + - uid: 9434 + components: + - type: Transform + pos: 65.5,-27.5 + parent: 2 + - uid: 9435 + components: + - type: Transform + pos: 65.5,-28.5 + parent: 2 + - uid: 9436 + components: + - type: Transform + pos: 65.5,-30.5 + parent: 2 + - uid: 9437 + components: + - type: Transform + pos: 64.5,-30.5 + parent: 2 + - uid: 9438 + components: + - type: Transform + pos: 63.5,-30.5 + parent: 2 + - uid: 9439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-1.5 + parent: 2 + - uid: 9440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,7.5 + parent: 2 + - uid: 9441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,8.5 + parent: 2 + - uid: 9442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,7.5 + parent: 2 + - uid: 9443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,8.5 + parent: 2 + - uid: 9444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 2 + - uid: 9445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,3.5 + parent: 2 + - uid: 9446 + components: + - type: Transform + pos: 51.5,-4.5 + parent: 2 + - uid: 9447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,7.5 + parent: 2 + - uid: 9448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,1.5 + parent: 2 + - uid: 9451 + components: + - type: Transform + pos: 43.5,-32.5 + parent: 2 + - uid: 9452 + components: + - type: Transform + pos: 42.5,-32.5 + parent: 2 + - uid: 9453 + components: + - type: Transform + pos: 55.5,-32.5 + parent: 2 + - uid: 9454 + components: + - type: Transform + pos: 54.5,-32.5 + parent: 2 + - uid: 9455 + components: + - type: Transform + pos: 53.5,-32.5 + parent: 2 + - uid: 9456 + components: + - type: Transform + pos: 52.5,-32.5 + parent: 2 + - uid: 9457 + components: + - type: Transform + pos: 51.5,-32.5 + parent: 2 + - uid: 9458 + components: + - type: Transform + pos: 50.5,-32.5 + parent: 2 + - uid: 9459 + components: + - type: Transform + pos: 49.5,-32.5 + parent: 2 + - uid: 9460 + components: + - type: Transform + pos: 48.5,-32.5 + parent: 2 + - uid: 9461 + components: + - type: Transform + pos: 47.5,-32.5 + parent: 2 + - uid: 9463 + components: + - type: Transform + pos: 42.5,-31.5 + parent: 2 + - uid: 9464 + components: + - type: Transform + pos: 41.5,-31.5 + parent: 2 + - uid: 9466 + components: + - type: Transform + pos: 39.5,-31.5 + parent: 2 + - uid: 9467 + components: + - type: Transform + pos: 38.5,-31.5 + parent: 2 + - uid: 9468 + components: + - type: Transform + pos: 37.5,-31.5 + parent: 2 + - uid: 9469 + components: + - type: Transform + pos: 36.5,-31.5 + parent: 2 + - uid: 9470 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 2 + - uid: 9471 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 2 + - uid: 9472 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 2 + - uid: 9473 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 2 + - uid: 9474 + components: + - type: Transform + pos: 32.5,-30.5 + parent: 2 + - uid: 9475 + components: + - type: Transform + pos: 31.5,-30.5 + parent: 2 + - uid: 9476 + components: + - type: Transform + pos: 30.5,-30.5 + parent: 2 + - uid: 9477 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 2 + - uid: 9478 + components: + - type: Transform + pos: 28.5,-30.5 + parent: 2 + - uid: 9479 + components: + - type: Transform + pos: 27.5,-30.5 + parent: 2 + - uid: 9480 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 2 + - uid: 9481 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 2 + - uid: 9482 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 2 + - uid: 9483 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 2 + - uid: 9484 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 2 + - uid: 9485 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 2 + - uid: 9486 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 2 + - uid: 9487 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 2 + - uid: 9488 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 2 + - uid: 9489 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 2 + - uid: 9490 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 2 + - uid: 9494 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 2 + - uid: 9495 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 2 + - uid: 9496 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 2 + - uid: 9497 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 2 + - uid: 9498 + components: + - type: Transform + pos: 11.5,-27.5 + parent: 2 + - uid: 9499 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 2 + - uid: 9500 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 2 + - uid: 9501 + components: + - type: Transform + pos: 8.5,-27.5 + parent: 2 + - uid: 9502 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 2 + - uid: 9503 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 2 + - uid: 9504 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 2 + - uid: 9505 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 2 + - uid: 9506 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 2 + - uid: 9507 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 2 + - uid: 9508 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 2 + - uid: 9509 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - uid: 9510 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 2 + - uid: 9511 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 2 + - uid: 9512 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 2 + - uid: 9513 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 2 + - uid: 9514 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 2 + - uid: 9515 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 9516 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - uid: 9517 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 2 + - uid: 9518 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 + - uid: 9519 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 9520 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 9521 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 2 + - uid: 9522 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 2 + - uid: 9523 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - uid: 9524 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 2 + - uid: 9525 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 + - uid: 9526 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - uid: 9527 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 2 + - uid: 9528 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 2 + - uid: 9529 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 2 + - uid: 9530 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 2 + - uid: 9531 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - uid: 9532 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 9533 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 9534 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 2 + - uid: 9535 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 + - uid: 9536 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 2 + - uid: 9537 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 2 + - uid: 9538 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 2 + - uid: 9539 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 2 + - uid: 9540 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 2 + - uid: 9541 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 2 + - uid: 9542 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 2 + - uid: 9543 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 2 + - uid: 9544 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 2 + - uid: 9545 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 2 + - uid: 9546 + components: + - type: Transform + pos: 65.5,-34.5 + parent: 2 + - uid: 9547 + components: + - type: Transform + pos: 76.5,-37.5 + parent: 2 + - uid: 9548 + components: + - type: Transform + pos: 66.5,-34.5 + parent: 2 + - uid: 9549 + components: + - type: Transform + pos: 67.5,-34.5 + parent: 2 + - uid: 9550 + components: + - type: Transform + pos: 68.5,-34.5 + parent: 2 + - uid: 9551 + components: + - type: Transform + pos: 69.5,-34.5 + parent: 2 + - uid: 9552 + components: + - type: Transform + pos: 69.5,-35.5 + parent: 2 + - uid: 9553 + components: + - type: Transform + pos: 70.5,-35.5 + parent: 2 + - uid: 9554 + components: + - type: Transform + pos: 71.5,-35.5 + parent: 2 + - uid: 9555 + components: + - type: Transform + pos: 72.5,-35.5 + parent: 2 + - uid: 9556 + components: + - type: Transform + pos: 72.5,-36.5 + parent: 2 + - uid: 9557 + components: + - type: Transform + pos: 73.5,-36.5 + parent: 2 + - uid: 9558 + components: + - type: Transform + pos: 74.5,-36.5 + parent: 2 + - uid: 9559 + components: + - type: Transform + pos: 75.5,-36.5 + parent: 2 + - uid: 9560 + components: + - type: Transform + pos: 76.5,-36.5 + parent: 2 + - uid: 9561 + components: + - type: Transform + pos: 76.5,-38.5 + parent: 2 + - uid: 9562 + components: + - type: Transform + pos: 76.5,-39.5 + parent: 2 + - uid: 9563 + components: + - type: Transform + pos: 75.5,-39.5 + parent: 2 + - uid: 9564 + components: + - type: Transform + pos: 74.5,-39.5 + parent: 2 + - uid: 9565 + components: + - type: Transform + pos: 73.5,-39.5 + parent: 2 + - uid: 9566 + components: + - type: Transform + pos: 72.5,-39.5 + parent: 2 + - uid: 9567 + components: + - type: Transform + pos: 71.5,-39.5 + parent: 2 + - uid: 9568 + components: + - type: Transform + pos: 70.5,-39.5 + parent: 2 + - uid: 9569 + components: + - type: Transform + pos: 69.5,-39.5 + parent: 2 + - uid: 9570 + components: + - type: Transform + pos: 68.5,-39.5 + parent: 2 + - uid: 9571 + components: + - type: Transform + pos: 67.5,-39.5 + parent: 2 + - uid: 9572 + components: + - type: Transform + pos: 66.5,-39.5 + parent: 2 + - uid: 9573 + components: + - type: Transform + pos: 55.5,-38.5 + parent: 2 + - uid: 9574 + components: + - type: Transform + pos: 54.5,-38.5 + parent: 2 + - uid: 9575 + components: + - type: Transform + pos: 53.5,-38.5 + parent: 2 + - uid: 9576 + components: + - type: Transform + pos: 52.5,-38.5 + parent: 2 + - uid: 9577 + components: + - type: Transform + pos: 66.5,-38.5 + parent: 2 + - uid: 9578 + components: + - type: Transform + pos: 65.5,-38.5 + parent: 2 + - uid: 9579 + components: + - type: Transform + pos: 64.5,-38.5 + parent: 2 + - uid: 9580 + components: + - type: Transform + pos: 63.5,-38.5 + parent: 2 + - uid: 9581 + components: + - type: Transform + pos: 62.5,-38.5 + parent: 2 + - uid: 9582 + components: + - type: Transform + pos: 61.5,-38.5 + parent: 2 + - uid: 9583 + components: + - type: Transform + pos: 60.5,-38.5 + parent: 2 + - uid: 9584 + components: + - type: Transform + pos: 59.5,-38.5 + parent: 2 + - uid: 9585 + components: + - type: Transform + pos: 58.5,-38.5 + parent: 2 + - uid: 9586 + components: + - type: Transform + pos: 57.5,-38.5 + parent: 2 + - uid: 9587 + components: + - type: Transform + pos: 56.5,-38.5 + parent: 2 + - uid: 9588 + components: + - type: Transform + pos: 53.5,-39.5 + parent: 2 + - uid: 9589 + components: + - type: Transform + pos: 54.5,-39.5 + parent: 2 + - uid: 9590 + components: + - type: Transform + pos: 54.5,-40.5 + parent: 2 + - uid: 9591 + components: + - type: Transform + pos: 54.5,-41.5 + parent: 2 + - uid: 9592 + components: + - type: Transform + pos: 54.5,-42.5 + parent: 2 + - uid: 9593 + components: + - type: Transform + pos: 54.5,-43.5 + parent: 2 + - uid: 9594 + components: + - type: Transform + pos: 54.5,-44.5 + parent: 2 + - uid: 9595 + components: + - type: Transform + pos: 54.5,-45.5 + parent: 2 + - uid: 9596 + components: + - type: Transform + pos: 53.5,-44.5 + parent: 2 + - uid: 9597 + components: + - type: Transform + pos: 53.5,-45.5 + parent: 2 + - uid: 9598 + components: + - type: Transform + pos: 52.5,-45.5 + parent: 2 + - uid: 9599 + components: + - type: Transform + pos: 55.5,-45.5 + parent: 2 + - uid: 9600 + components: + - type: Transform + pos: 55.5,-44.5 + parent: 2 + - uid: 9601 + components: + - type: Transform + pos: 56.5,-45.5 + parent: 2 + - uid: 9602 + components: + - type: Transform + pos: 56.5,-44.5 + parent: 2 + - uid: 9603 + components: + - type: Transform + pos: 57.5,-45.5 + parent: 2 + - uid: 9604 + components: + - type: Transform + pos: 57.5,-44.5 + parent: 2 + - uid: 9605 + components: + - type: Transform + pos: 58.5,-45.5 + parent: 2 + - uid: 9606 + components: + - type: Transform + pos: 58.5,-44.5 + parent: 2 + - uid: 9607 + components: + - type: Transform + pos: 59.5,-45.5 + parent: 2 + - uid: 9608 + components: + - type: Transform + pos: 59.5,-44.5 + parent: 2 + - uid: 9609 + components: + - type: Transform + pos: 55.5,-39.5 + parent: 2 + - uid: 9610 + components: + - type: Transform + pos: 56.5,-39.5 + parent: 2 + - uid: 9611 + components: + - type: Transform + pos: 57.5,-39.5 + parent: 2 + - uid: 9612 + components: + - type: Transform + pos: 58.5,-39.5 + parent: 2 + - uid: 9613 + components: + - type: Transform + pos: 59.5,-39.5 + parent: 2 + - uid: 9614 + components: + - type: Transform + pos: 59.5,-40.5 + parent: 2 + - uid: 9615 + components: + - type: Transform + pos: 59.5,-41.5 + parent: 2 + - uid: 9616 + components: + - type: Transform + pos: 59.5,-42.5 + parent: 2 + - uid: 9617 + components: + - type: Transform + pos: 59.5,-43.5 + parent: 2 + - uid: 9618 + components: + - type: Transform + pos: 60.5,-45.5 + parent: 2 + - uid: 9619 + components: + - type: Transform + pos: 61.5,-45.5 + parent: 2 + - uid: 9620 + components: + - type: Transform + pos: 62.5,-45.5 + parent: 2 + - uid: 9621 + components: + - type: Transform + pos: 113.5,-51.5 + parent: 2 + - uid: 9622 + components: + - type: Transform + pos: 62.5,-46.5 + parent: 2 + - uid: 9623 + components: + - type: Transform + pos: 63.5,-46.5 + parent: 2 + - uid: 9628 + components: + - type: Transform + pos: 68.5,-46.5 + parent: 2 + - uid: 9629 + components: + - type: Transform + pos: 69.5,-46.5 + parent: 2 + - uid: 9630 + components: + - type: Transform + pos: 70.5,-46.5 + parent: 2 + - uid: 9631 + components: + - type: Transform + pos: 70.5,-47.5 + parent: 2 + - uid: 9632 + components: + - type: Transform + pos: 71.5,-47.5 + parent: 2 + - uid: 9633 + components: + - type: Transform + pos: 72.5,-47.5 + parent: 2 + - uid: 9634 + components: + - type: Transform + pos: 73.5,-47.5 + parent: 2 + - uid: 9635 + components: + - type: Transform + pos: 74.5,-47.5 + parent: 2 + - uid: 9636 + components: + - type: Transform + pos: 75.5,-47.5 + parent: 2 + - uid: 9637 + components: + - type: Transform + pos: 76.5,-47.5 + parent: 2 + - uid: 9638 + components: + - type: Transform + pos: 77.5,-47.5 + parent: 2 + - uid: 9639 + components: + - type: Transform + pos: 77.5,-48.5 + parent: 2 + - uid: 9640 + components: + - type: Transform + pos: 78.5,-48.5 + parent: 2 + - uid: 9641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,-48.5 + parent: 2 + - uid: 9642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 99.5,-48.5 + parent: 2 + - uid: 9643 + components: + - type: Transform + pos: 81.5,-48.5 + parent: 2 + - uid: 9644 + components: + - type: Transform + pos: 82.5,-48.5 + parent: 2 + - uid: 9645 + components: + - type: Transform + pos: 83.5,-48.5 + parent: 2 + - uid: 9646 + components: + - type: Transform + pos: 84.5,-48.5 + parent: 2 + - uid: 9647 + components: + - type: Transform + pos: 85.5,-48.5 + parent: 2 + - uid: 9648 + components: + - type: Transform + pos: 85.5,-49.5 + parent: 2 + - uid: 9649 + components: + - type: Transform + pos: 86.5,-49.5 + parent: 2 + - uid: 9650 + components: + - type: Transform + pos: 87.5,-49.5 + parent: 2 + - uid: 9654 + components: + - type: Transform + pos: 91.5,-49.5 + parent: 2 + - uid: 9655 + components: + - type: Transform + pos: 91.5,-50.5 + parent: 2 + - uid: 9656 + components: + - type: Transform + pos: 92.5,-50.5 + parent: 2 + - uid: 9657 + components: + - type: Transform + pos: 93.5,-50.5 + parent: 2 + - uid: 9658 + components: + - type: Transform + pos: 94.5,-50.5 + parent: 2 + - uid: 9659 + components: + - type: Transform + pos: 95.5,-50.5 + parent: 2 + - uid: 9660 + components: + - type: Transform + pos: 96.5,-50.5 + parent: 2 + - uid: 9661 + components: + - type: Transform + pos: 96.5,-51.5 + parent: 2 + - uid: 9662 + components: + - type: Transform + pos: 100.5,-51.5 + parent: 2 + - uid: 9663 + components: + - type: Transform + pos: 100.5,-50.5 + parent: 2 + - uid: 9664 + components: + - type: Transform + pos: 100.5,-49.5 + parent: 2 + - uid: 9665 + components: + - type: Transform + pos: 101.5,-49.5 + parent: 2 + - uid: 9666 + components: + - type: Transform + pos: 102.5,-49.5 + parent: 2 + - uid: 9667 + components: + - type: Transform + pos: 100.5,-41.5 + parent: 2 + - uid: 9668 + components: + - type: Transform + pos: 104.5,-49.5 + parent: 2 + - uid: 9669 + components: + - type: Transform + pos: 114.5,-50.5 + parent: 2 + - uid: 9670 + components: + - type: Transform + pos: 114.5,-51.5 + parent: 2 + - uid: 9671 + components: + - type: Transform + pos: 115.5,-50.5 + parent: 2 + - uid: 9672 + components: + - type: Transform + pos: 115.5,-51.5 + parent: 2 + - uid: 9673 + components: + - type: Transform + pos: 107.5,-51.5 + parent: 2 + - uid: 9674 + components: + - type: Transform + pos: 108.5,-50.5 + parent: 2 + - uid: 9675 + components: + - type: Transform + pos: 108.5,-51.5 + parent: 2 + - uid: 9676 + components: + - type: Transform + pos: 109.5,-50.5 + parent: 2 + - uid: 9677 + components: + - type: Transform + pos: 109.5,-51.5 + parent: 2 + - uid: 9678 + components: + - type: Transform + pos: 110.5,-50.5 + parent: 2 + - uid: 9679 + components: + - type: Transform + pos: 110.5,-51.5 + parent: 2 + - uid: 9680 + components: + - type: Transform + pos: 111.5,-50.5 + parent: 2 + - uid: 9681 + components: + - type: Transform + pos: 111.5,-51.5 + parent: 2 + - uid: 9682 + components: + - type: Transform + pos: 112.5,-50.5 + parent: 2 + - uid: 9683 + components: + - type: Transform + pos: 112.5,-51.5 + parent: 2 + - uid: 9684 + components: + - type: Transform + pos: 113.5,-50.5 + parent: 2 + - uid: 9685 + components: + - type: Transform + pos: 102.5,-50.5 + parent: 2 + - uid: 9686 + components: + - type: Transform + pos: 102.5,-51.5 + parent: 2 + - uid: 9687 + components: + - type: Transform + pos: 103.5,-50.5 + parent: 2 + - uid: 9688 + components: + - type: Transform + pos: 103.5,-51.5 + parent: 2 + - uid: 9689 + components: + - type: Transform + pos: 104.5,-50.5 + parent: 2 + - uid: 9690 + components: + - type: Transform + pos: 104.5,-51.5 + parent: 2 + - uid: 9691 + components: + - type: Transform + pos: 105.5,-50.5 + parent: 2 + - uid: 9692 + components: + - type: Transform + pos: 105.5,-51.5 + parent: 2 + - uid: 9693 + components: + - type: Transform + pos: 106.5,-50.5 + parent: 2 + - uid: 9694 + components: + - type: Transform + pos: 106.5,-51.5 + parent: 2 + - uid: 9695 + components: + - type: Transform + pos: 107.5,-50.5 + parent: 2 + - uid: 9696 + components: + - type: Transform + pos: 116.5,-51.5 + parent: 2 + - uid: 9697 + components: + - type: Transform + pos: 113.5,-44.5 + parent: 2 + - uid: 9698 + components: + - type: Transform + pos: 113.5,-43.5 + parent: 2 + - uid: 9699 + components: + - type: Transform + pos: 113.5,-42.5 + parent: 2 + - uid: 9700 + components: + - type: Transform + pos: 113.5,-41.5 + parent: 2 + - uid: 9701 + components: + - type: Transform + pos: 115.5,-49.5 + parent: 2 + - uid: 9702 + components: + - type: Transform + pos: 115.5,-48.5 + parent: 2 + - uid: 9703 + components: + - type: Transform + pos: 115.5,-47.5 + parent: 2 + - uid: 9704 + components: + - type: Transform + pos: 115.5,-46.5 + parent: 2 + - uid: 9705 + components: + - type: Transform + pos: 115.5,-45.5 + parent: 2 + - uid: 9706 + components: + - type: Transform + pos: 115.5,-44.5 + parent: 2 + - uid: 9707 + components: + - type: Transform + pos: 115.5,-43.5 + parent: 2 + - uid: 9708 + components: + - type: Transform + pos: 115.5,-42.5 + parent: 2 + - uid: 9709 + components: + - type: Transform + pos: 115.5,-41.5 + parent: 2 + - uid: 9710 + components: + - type: Transform + pos: 114.5,-49.5 + parent: 2 + - uid: 9711 + components: + - type: Transform + pos: 114.5,-48.5 + parent: 2 + - uid: 9712 + components: + - type: Transform + pos: 114.5,-47.5 + parent: 2 + - uid: 9713 + components: + - type: Transform + pos: 114.5,-46.5 + parent: 2 + - uid: 9714 + components: + - type: Transform + pos: 114.5,-45.5 + parent: 2 + - uid: 9715 + components: + - type: Transform + pos: 114.5,-44.5 + parent: 2 + - uid: 9716 + components: + - type: Transform + pos: 114.5,-43.5 + parent: 2 + - uid: 9717 + components: + - type: Transform + pos: 114.5,-42.5 + parent: 2 + - uid: 9718 + components: + - type: Transform + pos: 114.5,-41.5 + parent: 2 + - uid: 9719 + components: + - type: Transform + pos: 113.5,-49.5 + parent: 2 + - uid: 9720 + components: + - type: Transform + pos: 113.5,-48.5 + parent: 2 + - uid: 9721 + components: + - type: Transform + pos: 113.5,-47.5 + parent: 2 + - uid: 9722 + components: + - type: Transform + pos: 113.5,-46.5 + parent: 2 + - uid: 9723 + components: + - type: Transform + pos: 113.5,-45.5 + parent: 2 + - uid: 9724 + components: + - type: Transform + pos: 88.5,-38.5 + parent: 2 + - uid: 9725 + components: + - type: Transform + pos: 116.5,-40.5 + parent: 2 + - uid: 9726 + components: + - type: Transform + pos: 115.5,-40.5 + parent: 2 + - uid: 9727 + components: + - type: Transform + pos: 114.5,-40.5 + parent: 2 + - uid: 9728 + components: + - type: Transform + pos: 113.5,-40.5 + parent: 2 + - uid: 9729 + components: + - type: Transform + pos: 112.5,-40.5 + parent: 2 + - uid: 9730 + components: + - type: Transform + pos: 111.5,-40.5 + parent: 2 + - uid: 9731 + components: + - type: Transform + pos: 110.5,-40.5 + parent: 2 + - uid: 9732 + components: + - type: Transform + pos: 109.5,-40.5 + parent: 2 + - uid: 9733 + components: + - type: Transform + pos: 108.5,-40.5 + parent: 2 + - uid: 9734 + components: + - type: Transform + pos: 107.5,-40.5 + parent: 2 + - uid: 9735 + components: + - type: Transform + pos: 106.5,-40.5 + parent: 2 + - uid: 9736 + components: + - type: Transform + pos: 105.5,-40.5 + parent: 2 + - uid: 9737 + components: + - type: Transform + pos: 104.5,-40.5 + parent: 2 + - uid: 9738 + components: + - type: Transform + pos: 103.5,-40.5 + parent: 2 + - uid: 9739 + components: + - type: Transform + pos: 102.5,-40.5 + parent: 2 + - uid: 9740 + components: + - type: Transform + pos: 112.5,-41.5 + parent: 2 + - uid: 9741 + components: + - type: Transform + pos: 111.5,-41.5 + parent: 2 + - uid: 9742 + components: + - type: Transform + pos: 110.5,-41.5 + parent: 2 + - uid: 9743 + components: + - type: Transform + pos: 109.5,-41.5 + parent: 2 + - uid: 9744 + components: + - type: Transform + pos: 108.5,-41.5 + parent: 2 + - uid: 9745 + components: + - type: Transform + pos: 107.5,-41.5 + parent: 2 + - uid: 9746 + components: + - type: Transform + pos: 106.5,-41.5 + parent: 2 + - uid: 9747 + components: + - type: Transform + pos: 105.5,-41.5 + parent: 2 + - uid: 9748 + components: + - type: Transform + pos: 104.5,-41.5 + parent: 2 + - uid: 9749 + components: + - type: Transform + pos: 103.5,-41.5 + parent: 2 + - uid: 9750 + components: + - type: Transform + pos: 102.5,-41.5 + parent: 2 + - uid: 9751 + components: + - type: Transform + pos: 105.5,-45.5 + parent: 2 + - uid: 9752 + components: + - type: Transform + pos: 105.5,-46.5 + parent: 2 + - uid: 9753 + components: + - type: Transform + pos: 104.5,-48.5 + parent: 2 + - uid: 9754 + components: + - type: Transform + pos: 104.5,-47.5 + parent: 2 + - uid: 9755 + components: + - type: Transform + pos: 104.5,-46.5 + parent: 2 + - uid: 9756 + components: + - type: Transform + pos: 104.5,-45.5 + parent: 2 + - uid: 9757 + components: + - type: Transform + pos: 104.5,-44.5 + parent: 2 + - uid: 9758 + components: + - type: Transform + pos: 104.5,-43.5 + parent: 2 + - uid: 9759 + components: + - type: Transform + pos: 104.5,-42.5 + parent: 2 + - uid: 9760 + components: + - type: Transform + pos: 102.5,-42.5 + parent: 2 + - uid: 9761 + components: + - type: Transform + pos: 101.5,-42.5 + parent: 2 + - uid: 9762 + components: + - type: Transform + pos: 100.5,-42.5 + parent: 2 + - uid: 9763 + components: + - type: Transform + pos: 100.5,-40.5 + parent: 2 + - uid: 9764 + components: + - type: Transform + pos: 99.5,-40.5 + parent: 2 + - uid: 9767 + components: + - type: Transform + pos: 96.5,-40.5 + parent: 2 + - uid: 9768 + components: + - type: Transform + pos: 95.5,-40.5 + parent: 2 + - uid: 9769 + components: + - type: Transform + pos: 94.5,-40.5 + parent: 2 + - uid: 9770 + components: + - type: Transform + pos: 94.5,-39.5 + parent: 2 + - uid: 9771 + components: + - type: Transform + pos: 93.5,-39.5 + parent: 2 + - uid: 9772 + components: + - type: Transform + pos: 92.5,-39.5 + parent: 2 + - uid: 9773 + components: + - type: Transform + pos: 91.5,-39.5 + parent: 2 + - uid: 9774 + components: + - type: Transform + pos: 90.5,-39.5 + parent: 2 + - uid: 9775 + components: + - type: Transform + pos: 89.5,-39.5 + parent: 2 + - uid: 9776 + components: + - type: Transform + pos: 88.5,-39.5 + parent: 2 + - uid: 9777 + components: + - type: Transform + pos: 88.5,-37.5 + parent: 2 + - uid: 9778 + components: + - type: Transform + pos: 88.5,-36.5 + parent: 2 + - uid: 9779 + components: + - type: Transform + pos: 88.5,-35.5 + parent: 2 + - uid: 9780 + components: + - type: Transform + pos: 88.5,-34.5 + parent: 2 + - uid: 9781 + components: + - type: Transform + pos: 88.5,-33.5 + parent: 2 + - uid: 9782 + components: + - type: Transform + pos: 88.5,-32.5 + parent: 2 + - uid: 9783 + components: + - type: Transform + pos: 89.5,-32.5 + parent: 2 + - uid: 9784 + components: + - type: Transform + pos: 90.5,-32.5 + parent: 2 + - uid: 9785 + components: + - type: Transform + pos: 91.5,-32.5 + parent: 2 + - uid: 9786 + components: + - type: Transform + pos: 92.5,-32.5 + parent: 2 + - uid: 9787 + components: + - type: Transform + pos: 92.5,-31.5 + parent: 2 + - uid: 9788 + components: + - type: Transform + pos: 92.5,-30.5 + parent: 2 + - uid: 9789 + components: + - type: Transform + pos: 102.5,-21.5 + parent: 2 + - uid: 9790 + components: + - type: Transform + pos: 93.5,-30.5 + parent: 2 + - uid: 9791 + components: + - type: Transform + pos: 94.5,-30.5 + parent: 2 + - uid: 9792 + components: + - type: Transform + pos: 94.5,-31.5 + parent: 2 + - uid: 9793 + components: + - type: Transform + pos: 94.5,-32.5 + parent: 2 + - uid: 9794 + components: + - type: Transform + pos: 95.5,-32.5 + parent: 2 + - uid: 9795 + components: + - type: Transform + pos: 96.5,-32.5 + parent: 2 + - uid: 9796 + components: + - type: Transform + pos: 96.5,-31.5 + parent: 2 + - uid: 9797 + components: + - type: Transform + pos: 96.5,-30.5 + parent: 2 + - uid: 9798 + components: + - type: Transform + pos: 96.5,-29.5 + parent: 2 + - uid: 9799 + components: + - type: Transform + pos: 96.5,-28.5 + parent: 2 + - uid: 9800 + components: + - type: Transform + pos: 96.5,-27.5 + parent: 2 + - uid: 9801 + components: + - type: Transform + pos: 96.5,-26.5 + parent: 2 + - uid: 9802 + components: + - type: Transform + pos: 96.5,-25.5 + parent: 2 + - uid: 9803 + components: + - type: Transform + pos: 96.5,-24.5 + parent: 2 + - uid: 9804 + components: + - type: Transform + pos: 96.5,-23.5 + parent: 2 + - uid: 9805 + components: + - type: Transform + pos: 96.5,-22.5 + parent: 2 + - uid: 9806 + components: + - type: Transform + pos: 96.5,-21.5 + parent: 2 + - uid: 9807 + components: + - type: Transform + pos: 94.5,-21.5 + parent: 2 + - uid: 9808 + components: + - type: Transform + pos: 94.5,-20.5 + parent: 2 + - uid: 9809 + components: + - type: Transform + pos: 95.5,-20.5 + parent: 2 + - uid: 9810 + components: + - type: Transform + pos: 96.5,-20.5 + parent: 2 + - uid: 9811 + components: + - type: Transform + pos: 94.5,-22.5 + parent: 2 + - uid: 9812 + components: + - type: Transform + pos: 93.5,-22.5 + parent: 2 + - uid: 9813 + components: + - type: Transform + pos: 92.5,-22.5 + parent: 2 + - uid: 9814 + components: + - type: Transform + pos: 92.5,-21.5 + parent: 2 + - uid: 9815 + components: + - type: Transform + pos: 92.5,-20.5 + parent: 2 + - uid: 9816 + components: + - type: Transform + pos: 88.5,-20.5 + parent: 2 + - uid: 9817 + components: + - type: Transform + pos: 103.5,-20.5 + parent: 2 + - uid: 9818 + components: + - type: Transform + pos: 103.5,-21.5 + parent: 2 + - uid: 9819 + components: + - type: Transform + pos: 104.5,-20.5 + parent: 2 + - uid: 9820 + components: + - type: Transform + pos: 104.5,-21.5 + parent: 2 + - uid: 9821 + components: + - type: Transform + pos: 105.5,-20.5 + parent: 2 + - uid: 9822 + components: + - type: Transform + pos: 105.5,-21.5 + parent: 2 + - uid: 9823 + components: + - type: Transform + pos: 106.5,-20.5 + parent: 2 + - uid: 9824 + components: + - type: Transform + pos: 106.5,-21.5 + parent: 2 + - uid: 9825 + components: + - type: Transform + pos: 107.5,-20.5 + parent: 2 + - uid: 9826 + components: + - type: Transform + pos: 107.5,-21.5 + parent: 2 + - uid: 9827 + components: + - type: Transform + pos: 97.5,-20.5 + parent: 2 + - uid: 9828 + components: + - type: Transform + pos: 97.5,-21.5 + parent: 2 + - uid: 9829 + components: + - type: Transform + pos: 98.5,-20.5 + parent: 2 + - uid: 9830 + components: + - type: Transform + pos: 98.5,-21.5 + parent: 2 + - uid: 9831 + components: + - type: Transform + pos: 99.5,-20.5 + parent: 2 + - uid: 9832 + components: + - type: Transform + pos: 99.5,-21.5 + parent: 2 + - uid: 9833 + components: + - type: Transform + pos: 100.5,-20.5 + parent: 2 + - uid: 9834 + components: + - type: Transform + pos: 100.5,-21.5 + parent: 2 + - uid: 9835 + components: + - type: Transform + pos: 101.5,-20.5 + parent: 2 + - uid: 9836 + components: + - type: Transform + pos: 101.5,-21.5 + parent: 2 + - uid: 9837 + components: + - type: Transform + pos: 102.5,-20.5 + parent: 2 + - uid: 9838 + components: + - type: Transform + pos: 108.5,-20.5 + parent: 2 + - uid: 9839 + components: + - type: Transform + pos: 105.5,-26.5 + parent: 2 + - uid: 9840 + components: + - type: Transform + pos: 105.5,-27.5 + parent: 2 + - uid: 9841 + components: + - type: Transform + pos: 105.5,-28.5 + parent: 2 + - uid: 9842 + components: + - type: Transform + pos: 105.5,-29.5 + parent: 2 + - uid: 9843 + components: + - type: Transform + pos: 105.5,-30.5 + parent: 2 + - uid: 9844 + components: + - type: Transform + pos: 106.5,-23.5 + parent: 2 + - uid: 9845 + components: + - type: Transform + pos: 106.5,-24.5 + parent: 2 + - uid: 9846 + components: + - type: Transform + pos: 106.5,-25.5 + parent: 2 + - uid: 9847 + components: + - type: Transform + pos: 106.5,-26.5 + parent: 2 + - uid: 9848 + components: + - type: Transform + pos: 106.5,-27.5 + parent: 2 + - uid: 9849 + components: + - type: Transform + pos: 106.5,-28.5 + parent: 2 + - uid: 9850 + components: + - type: Transform + pos: 106.5,-29.5 + parent: 2 + - uid: 9851 + components: + - type: Transform + pos: 106.5,-30.5 + parent: 2 + - uid: 9852 + components: + - type: Transform + pos: 105.5,-22.5 + parent: 2 + - uid: 9853 + components: + - type: Transform + pos: 105.5,-23.5 + parent: 2 + - uid: 9854 + components: + - type: Transform + pos: 105.5,-24.5 + parent: 2 + - uid: 9855 + components: + - type: Transform + pos: 105.5,-25.5 + parent: 2 + - uid: 9856 + components: + - type: Transform + pos: 107.5,-22.5 + parent: 2 + - uid: 9857 + components: + - type: Transform + pos: 107.5,-23.5 + parent: 2 + - uid: 9858 + components: + - type: Transform + pos: 107.5,-24.5 + parent: 2 + - uid: 9859 + components: + - type: Transform + pos: 107.5,-25.5 + parent: 2 + - uid: 9860 + components: + - type: Transform + pos: 107.5,-26.5 + parent: 2 + - uid: 9861 + components: + - type: Transform + pos: 107.5,-27.5 + parent: 2 + - uid: 9862 + components: + - type: Transform + pos: 107.5,-28.5 + parent: 2 + - uid: 9863 + components: + - type: Transform + pos: 107.5,-29.5 + parent: 2 + - uid: 9864 + components: + - type: Transform + pos: 107.5,-30.5 + parent: 2 + - uid: 9866 + components: + - type: Transform + pos: 102.5,-31.5 + parent: 2 + - uid: 9867 + components: + - type: Transform + pos: 102.5,-32.5 + parent: 2 + - uid: 9868 + components: + - type: Transform + pos: 101.5,-31.5 + parent: 2 + - uid: 9869 + components: + - type: Transform + pos: 101.5,-32.5 + parent: 2 + - uid: 9870 + components: + - type: Transform + pos: 100.5,-31.5 + parent: 2 + - uid: 9871 + components: + - type: Transform + pos: 100.5,-32.5 + parent: 2 + - uid: 9872 + components: + - type: Transform + pos: 99.5,-31.5 + parent: 2 + - uid: 9873 + components: + - type: Transform + pos: 99.5,-32.5 + parent: 2 + - uid: 9874 + components: + - type: Transform + pos: 98.5,-31.5 + parent: 2 + - uid: 9875 + components: + - type: Transform + pos: 98.5,-32.5 + parent: 2 + - uid: 9876 + components: + - type: Transform + pos: 97.5,-31.5 + parent: 2 + - uid: 9877 + components: + - type: Transform + pos: 97.5,-32.5 + parent: 2 + - uid: 9878 + components: + - type: Transform + pos: 107.5,-31.5 + parent: 2 + - uid: 9879 + components: + - type: Transform + pos: 107.5,-32.5 + parent: 2 + - uid: 9880 + components: + - type: Transform + pos: 106.5,-31.5 + parent: 2 + - uid: 9881 + components: + - type: Transform + pos: 106.5,-32.5 + parent: 2 + - uid: 9882 + components: + - type: Transform + pos: 105.5,-31.5 + parent: 2 + - uid: 9883 + components: + - type: Transform + pos: 105.5,-32.5 + parent: 2 + - uid: 9884 + components: + - type: Transform + pos: 104.5,-31.5 + parent: 2 + - uid: 9885 + components: + - type: Transform + pos: 104.5,-32.5 + parent: 2 + - uid: 9886 + components: + - type: Transform + pos: 103.5,-31.5 + parent: 2 + - uid: 9887 + components: + - type: Transform + pos: 103.5,-32.5 + parent: 2 + - uid: 9888 + components: + - type: Transform + pos: 108.5,-32.5 + parent: 2 + - uid: 9889 + components: + - type: Transform + pos: 106.5,22.5 + parent: 2 + - uid: 9890 + components: + - type: Transform + pos: 88.5,-18.5 + parent: 2 + - uid: 9891 + components: + - type: Transform + pos: 88.5,-17.5 + parent: 2 + - uid: 9892 + components: + - type: Transform + pos: 88.5,-16.5 + parent: 2 + - uid: 9893 + components: + - type: Transform + pos: 88.5,-15.5 + parent: 2 + - uid: 9894 + components: + - type: Transform + pos: 88.5,-14.5 + parent: 2 + - uid: 9895 + components: + - type: Transform + pos: 88.5,-13.5 + parent: 2 + - uid: 9896 + components: + - type: Transform + pos: 88.5,-12.5 + parent: 2 + - uid: 9897 + components: + - type: Transform + pos: 89.5,-12.5 + parent: 2 + - uid: 9898 + components: + - type: Transform + pos: 90.5,-12.5 + parent: 2 + - uid: 9899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,-9.5 + parent: 2 + - uid: 9900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,-8.5 + parent: 2 + - uid: 9901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,-10.5 + parent: 2 + - uid: 9902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,-6.5 + parent: 2 + - uid: 9903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,-49.5 + parent: 2 + - uid: 9904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,-48.5 + parent: 2 + - uid: 9905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,-48.5 + parent: 2 + - uid: 9906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 100.5,-48.5 + parent: 2 + - uid: 9907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,-12.5 + parent: 2 + - uid: 9908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,-12.5 + parent: 2 + - uid: 9909 + components: + - type: Transform + pos: 95.5,-5.5 + parent: 2 + - uid: 9910 + components: + - type: Transform + pos: 96.5,-5.5 + parent: 2 + - uid: 9911 + components: + - type: Transform + pos: 97.5,-5.5 + parent: 2 + - uid: 9912 + components: + - type: Transform + pos: 98.5,-5.5 + parent: 2 + - uid: 9913 + components: + - type: Transform + pos: 95.5,6.5 + parent: 2 + - uid: 9914 + components: + - type: Transform + pos: 95.5,7.5 + parent: 2 + - uid: 9915 + components: + - type: Transform + pos: 95.5,-4.5 + parent: 2 + - uid: 9916 + components: + - type: Transform + pos: 95.5,-3.5 + parent: 2 + - uid: 9917 + components: + - type: Transform + pos: 95.5,-2.5 + parent: 2 + - uid: 9918 + components: + - type: Transform + pos: 95.5,-1.5 + parent: 2 + - uid: 9919 + components: + - type: Transform + pos: 95.5,-0.5 + parent: 2 + - uid: 9920 + components: + - type: Transform + pos: 95.5,0.5 + parent: 2 + - uid: 9921 + components: + - type: Transform + pos: 95.5,1.5 + parent: 2 + - uid: 9922 + components: + - type: Transform + pos: 95.5,2.5 + parent: 2 + - uid: 9923 + components: + - type: Transform + pos: 95.5,3.5 + parent: 2 + - uid: 9924 + components: + - type: Transform + pos: 95.5,4.5 + parent: 2 + - uid: 9925 + components: + - type: Transform + pos: 95.5,5.5 + parent: 2 + - uid: 9926 + components: + - type: Transform + pos: 96.5,7.5 + parent: 2 + - uid: 9927 + components: + - type: Transform + pos: 97.5,7.5 + parent: 2 + - uid: 9928 + components: + - type: Transform + pos: 98.5,7.5 + parent: 2 + - uid: 9929 + components: + - type: Transform + pos: 95.5,8.5 + parent: 2 + - uid: 9930 + components: + - type: Transform + pos: 95.5,9.5 + parent: 2 + - uid: 9931 + components: + - type: Transform + pos: 95.5,10.5 + parent: 2 + - uid: 9932 + components: + - type: Transform + pos: 95.5,11.5 + parent: 2 + - uid: 9933 + components: + - type: Transform + pos: 94.5,11.5 + parent: 2 + - uid: 9934 + components: + - type: Transform + pos: 93.5,11.5 + parent: 2 + - uid: 9935 + components: + - type: Transform + pos: 92.5,11.5 + parent: 2 + - uid: 9936 + components: + - type: Transform + pos: 91.5,11.5 + parent: 2 + - uid: 9937 + components: + - type: Transform + pos: 90.5,11.5 + parent: 2 + - uid: 9938 + components: + - type: Transform + pos: 90.5,12.5 + parent: 2 + - uid: 9939 + components: + - type: Transform + pos: 90.5,13.5 + parent: 2 + - uid: 9940 + components: + - type: Transform + pos: 90.5,14.5 + parent: 2 + - uid: 9941 + components: + - type: Transform + pos: 94.5,14.5 + parent: 2 + - uid: 9942 + components: + - type: Transform + pos: 94.5,13.5 + parent: 2 + - uid: 9943 + components: + - type: Transform + pos: 94.5,12.5 + parent: 2 + - uid: 9944 + components: + - type: Transform + pos: 96.5,11.5 + parent: 2 + - uid: 9945 + components: + - type: Transform + pos: 97.5,11.5 + parent: 2 + - uid: 9946 + components: + - type: Transform + pos: 98.5,11.5 + parent: 2 + - uid: 9947 + components: + - type: Transform + pos: 97.5,12.5 + parent: 2 + - uid: 9948 + components: + - type: Transform + pos: 96.5,12.5 + parent: 2 + - uid: 9950 + components: + - type: Transform + pos: 96.5,13.5 + parent: 2 + - uid: 9951 + components: + - type: Transform + pos: 95.5,13.5 + parent: 2 + - uid: 9952 + components: + - type: Transform + pos: 89.5,14.5 + parent: 2 + - uid: 9953 + components: + - type: Transform + pos: 88.5,14.5 + parent: 2 + - uid: 9954 + components: + - type: Transform + pos: 88.5,15.5 + parent: 2 + - uid: 9955 + components: + - type: Transform + pos: 88.5,16.5 + parent: 2 + - uid: 9956 + components: + - type: Transform + pos: 88.5,20.5 + parent: 2 + - uid: 9957 + components: + - type: Transform + pos: 88.5,21.5 + parent: 2 + - uid: 9958 + components: + - type: Transform + pos: 88.5,22.5 + parent: 2 + - uid: 9959 + components: + - type: Transform + pos: 87.5,38.5 + parent: 2 + - uid: 9960 + components: + - type: Transform + pos: 83.5,38.5 + parent: 2 + - uid: 9961 + components: + - type: Transform + pos: 92.5,22.5 + parent: 2 + - uid: 9962 + components: + - type: Transform + pos: 91.5,22.5 + parent: 2 + - uid: 9963 + components: + - type: Transform + pos: 92.5,23.5 + parent: 2 + - uid: 9964 + components: + - type: Transform + pos: 92.5,24.5 + parent: 2 + - uid: 9965 + components: + - type: Transform + pos: 93.5,24.5 + parent: 2 + - uid: 9966 + components: + - type: Transform + pos: 94.5,24.5 + parent: 2 + - uid: 9967 + components: + - type: Transform + pos: 94.5,23.5 + parent: 2 + - uid: 9968 + components: + - type: Transform + pos: 94.5,22.5 + parent: 2 + - uid: 9969 + components: + - type: Transform + pos: 107.5,22.5 + parent: 2 + - uid: 9970 + components: + - type: Transform + pos: 108.5,22.5 + parent: 2 + - uid: 9971 + components: + - type: Transform + pos: 95.5,22.5 + parent: 2 + - uid: 9972 + components: + - type: Transform + pos: 96.5,22.5 + parent: 2 + - uid: 9973 + components: + - type: Transform + pos: 97.5,22.5 + parent: 2 + - uid: 9974 + components: + - type: Transform + pos: 98.5,22.5 + parent: 2 + - uid: 9975 + components: + - type: Transform + pos: 99.5,22.5 + parent: 2 + - uid: 9976 + components: + - type: Transform + pos: 100.5,22.5 + parent: 2 + - uid: 9977 + components: + - type: Transform + pos: 101.5,22.5 + parent: 2 + - uid: 9978 + components: + - type: Transform + pos: 102.5,22.5 + parent: 2 + - uid: 9979 + components: + - type: Transform + pos: 103.5,22.5 + parent: 2 + - uid: 9980 + components: + - type: Transform + pos: 104.5,22.5 + parent: 2 + - uid: 9981 + components: + - type: Transform + pos: 105.5,22.5 + parent: 2 + - uid: 9982 + components: + - type: Transform + pos: 97.5,23.5 + parent: 2 + - uid: 9983 + components: + - type: Transform + pos: 107.5,23.5 + parent: 2 + - uid: 9984 + components: + - type: Transform + pos: 106.5,23.5 + parent: 2 + - uid: 9985 + components: + - type: Transform + pos: 105.5,23.5 + parent: 2 + - uid: 9986 + components: + - type: Transform + pos: 104.5,23.5 + parent: 2 + - uid: 9987 + components: + - type: Transform + pos: 103.5,23.5 + parent: 2 + - uid: 9988 + components: + - type: Transform + pos: 102.5,23.5 + parent: 2 + - uid: 9989 + components: + - type: Transform + pos: 101.5,23.5 + parent: 2 + - uid: 9990 + components: + - type: Transform + pos: 100.5,23.5 + parent: 2 + - uid: 9991 + components: + - type: Transform + pos: 99.5,23.5 + parent: 2 + - uid: 9992 + components: + - type: Transform + pos: 98.5,23.5 + parent: 2 + - uid: 9993 + components: + - type: Transform + pos: 96.5,23.5 + parent: 2 + - uid: 9994 + components: + - type: Transform + pos: 96.5,24.5 + parent: 2 + - uid: 9995 + components: + - type: Transform + pos: 96.5,25.5 + parent: 2 + - uid: 9996 + components: + - type: Transform + pos: 96.5,26.5 + parent: 2 + - uid: 9997 + components: + - type: Transform + pos: 96.5,27.5 + parent: 2 + - uid: 9998 + components: + - type: Transform + pos: 96.5,28.5 + parent: 2 + - uid: 9999 + components: + - type: Transform + pos: 96.5,29.5 + parent: 2 + - uid: 10000 + components: + - type: Transform + pos: 96.5,30.5 + parent: 2 + - uid: 10001 + components: + - type: Transform + pos: 96.5,31.5 + parent: 2 + - uid: 10002 + components: + - type: Transform + pos: 96.5,32.5 + parent: 2 + - uid: 10003 + components: + - type: Transform + pos: 96.5,33.5 + parent: 2 + - uid: 10004 + components: + - type: Transform + pos: 96.5,34.5 + parent: 2 + - uid: 10005 + components: + - type: Transform + pos: 95.5,34.5 + parent: 2 + - uid: 10006 + components: + - type: Transform + pos: 94.5,34.5 + parent: 2 + - uid: 10007 + components: + - type: Transform + pos: 94.5,33.5 + parent: 2 + - uid: 10008 + components: + - type: Transform + pos: 102.5,33.5 + parent: 2 + - uid: 10009 + components: + - type: Transform + pos: 103.5,34.5 + parent: 2 + - uid: 10010 + components: + - type: Transform + pos: 103.5,33.5 + parent: 2 + - uid: 10011 + components: + - type: Transform + pos: 104.5,34.5 + parent: 2 + - uid: 10012 + components: + - type: Transform + pos: 104.5,33.5 + parent: 2 + - uid: 10013 + components: + - type: Transform + pos: 105.5,34.5 + parent: 2 + - uid: 10014 + components: + - type: Transform + pos: 105.5,33.5 + parent: 2 + - uid: 10015 + components: + - type: Transform + pos: 106.5,34.5 + parent: 2 + - uid: 10016 + components: + - type: Transform + pos: 106.5,33.5 + parent: 2 + - uid: 10017 + components: + - type: Transform + pos: 107.5,34.5 + parent: 2 + - uid: 10018 + components: + - type: Transform + pos: 107.5,33.5 + parent: 2 + - uid: 10019 + components: + - type: Transform + pos: 97.5,34.5 + parent: 2 + - uid: 10020 + components: + - type: Transform + pos: 97.5,33.5 + parent: 2 + - uid: 10021 + components: + - type: Transform + pos: 98.5,34.5 + parent: 2 + - uid: 10022 + components: + - type: Transform + pos: 98.5,33.5 + parent: 2 + - uid: 10023 + components: + - type: Transform + pos: 99.5,34.5 + parent: 2 + - uid: 10024 + components: + - type: Transform + pos: 99.5,33.5 + parent: 2 + - uid: 10025 + components: + - type: Transform + pos: 100.5,34.5 + parent: 2 + - uid: 10026 + components: + - type: Transform + pos: 100.5,33.5 + parent: 2 + - uid: 10027 + components: + - type: Transform + pos: 101.5,34.5 + parent: 2 + - uid: 10028 + components: + - type: Transform + pos: 101.5,33.5 + parent: 2 + - uid: 10029 + components: + - type: Transform + pos: 102.5,34.5 + parent: 2 + - uid: 10030 + components: + - type: Transform + pos: 108.5,34.5 + parent: 2 + - uid: 10031 + components: + - type: Transform + pos: 107.5,27.5 + parent: 2 + - uid: 10032 + components: + - type: Transform + pos: 107.5,26.5 + parent: 2 + - uid: 10033 + components: + - type: Transform + pos: 107.5,25.5 + parent: 2 + - uid: 10034 + components: + - type: Transform + pos: 107.5,24.5 + parent: 2 + - uid: 10035 + components: + - type: Transform + pos: 105.5,32.5 + parent: 2 + - uid: 10036 + components: + - type: Transform + pos: 105.5,31.5 + parent: 2 + - uid: 10037 + components: + - type: Transform + pos: 105.5,30.5 + parent: 2 + - uid: 10038 + components: + - type: Transform + pos: 105.5,29.5 + parent: 2 + - uid: 10039 + components: + - type: Transform + pos: 105.5,28.5 + parent: 2 + - uid: 10040 + components: + - type: Transform + pos: 105.5,27.5 + parent: 2 + - uid: 10041 + components: + - type: Transform + pos: 105.5,26.5 + parent: 2 + - uid: 10042 + components: + - type: Transform + pos: 105.5,25.5 + parent: 2 + - uid: 10043 + components: + - type: Transform + pos: 105.5,24.5 + parent: 2 + - uid: 10044 + components: + - type: Transform + pos: 106.5,32.5 + parent: 2 + - uid: 10045 + components: + - type: Transform + pos: 106.5,31.5 + parent: 2 + - uid: 10046 + components: + - type: Transform + pos: 106.5,30.5 + parent: 2 + - uid: 10047 + components: + - type: Transform + pos: 106.5,29.5 + parent: 2 + - uid: 10048 + components: + - type: Transform + pos: 106.5,28.5 + parent: 2 + - uid: 10049 + components: + - type: Transform + pos: 106.5,26.5 + parent: 2 + - uid: 10050 + components: + - type: Transform + pos: 106.5,25.5 + parent: 2 + - uid: 10051 + components: + - type: Transform + pos: 106.5,24.5 + parent: 2 + - uid: 10052 + components: + - type: Transform + pos: 107.5,32.5 + parent: 2 + - uid: 10053 + components: + - type: Transform + pos: 107.5,31.5 + parent: 2 + - uid: 10054 + components: + - type: Transform + pos: 107.5,30.5 + parent: 2 + - uid: 10055 + components: + - type: Transform + pos: 107.5,29.5 + parent: 2 + - uid: 10056 + components: + - type: Transform + pos: 107.5,28.5 + parent: 2 + - uid: 10057 + components: + - type: Transform + pos: 108.5,43.5 + parent: 2 + - uid: 10058 + components: + - type: Transform + pos: 94.5,32.5 + parent: 2 + - uid: 10059 + components: + - type: Transform + pos: 93.5,32.5 + parent: 2 + - uid: 10060 + components: + - type: Transform + pos: 92.5,32.5 + parent: 2 + - uid: 10061 + components: + - type: Transform + pos: 92.5,33.5 + parent: 2 + - uid: 10062 + components: + - type: Transform + pos: 92.5,34.5 + parent: 2 + - uid: 10063 + components: + - type: Transform + pos: 91.5,34.5 + parent: 2 + - uid: 10064 + components: + - type: Transform + pos: 88.5,34.5 + parent: 2 + - uid: 10065 + components: + - type: Transform + pos: 88.5,35.5 + parent: 2 + - uid: 10066 + components: + - type: Transform + pos: 88.5,36.5 + parent: 2 + - uid: 10067 + components: + - type: Transform + pos: 88.5,37.5 + parent: 2 + - uid: 10068 + components: + - type: Transform + pos: 88.5,38.5 + parent: 2 + - uid: 10069 + components: + - type: Transform + pos: 88.5,39.5 + parent: 2 + - uid: 10070 + components: + - type: Transform + pos: 88.5,41.5 + parent: 2 + - uid: 10071 + components: + - type: Transform + pos: 89.5,41.5 + parent: 2 + - uid: 10072 + components: + - type: Transform + pos: 90.5,41.5 + parent: 2 + - uid: 10073 + components: + - type: Transform + pos: 87.5,51.5 + parent: 2 + - uid: 10074 + components: + - type: Transform + pos: 93.5,41.5 + parent: 2 + - uid: 10075 + components: + - type: Transform + pos: 94.5,41.5 + parent: 2 + - uid: 10076 + components: + - type: Transform + pos: 94.5,42.5 + parent: 2 + - uid: 10077 + components: + - type: Transform + pos: 95.5,42.5 + parent: 2 + - uid: 10078 + components: + - type: Transform + pos: 96.5,42.5 + parent: 2 + - uid: 10079 + components: + - type: Transform + pos: 97.5,42.5 + parent: 2 + - uid: 10080 + components: + - type: Transform + pos: 98.5,42.5 + parent: 2 + - uid: 10081 + components: + - type: Transform + pos: 99.5,42.5 + parent: 2 + - uid: 10082 + components: + - type: Transform + pos: 100.5,42.5 + parent: 2 + - uid: 10083 + components: + - type: Transform + pos: 100.5,43.5 + parent: 2 + - uid: 10084 + components: + - type: Transform + pos: 100.5,44.5 + parent: 2 + - uid: 10085 + components: + - type: Transform + pos: 101.5,44.5 + parent: 2 + - uid: 10086 + components: + - type: Transform + pos: 102.5,44.5 + parent: 2 + - uid: 10087 + components: + - type: Transform + pos: 102.5,43.5 + parent: 2 + - uid: 10088 + components: + - type: Transform + pos: 102.5,42.5 + parent: 2 + - uid: 10089 + components: + - type: Transform + pos: 109.5,42.5 + parent: 2 + - uid: 10090 + components: + - type: Transform + pos: 109.5,43.5 + parent: 2 + - uid: 10091 + components: + - type: Transform + pos: 110.5,42.5 + parent: 2 + - uid: 10092 + components: + - type: Transform + pos: 110.5,43.5 + parent: 2 + - uid: 10093 + components: + - type: Transform + pos: 111.5,42.5 + parent: 2 + - uid: 10094 + components: + - type: Transform + pos: 111.5,43.5 + parent: 2 + - uid: 10095 + components: + - type: Transform + pos: 112.5,42.5 + parent: 2 + - uid: 10096 + components: + - type: Transform + pos: 112.5,43.5 + parent: 2 + - uid: 10097 + components: + - type: Transform + pos: 113.5,42.5 + parent: 2 + - uid: 10098 + components: + - type: Transform + pos: 113.5,43.5 + parent: 2 + - uid: 10099 + components: + - type: Transform + pos: 114.5,42.5 + parent: 2 + - uid: 10100 + components: + - type: Transform + pos: 104.5,44.5 + parent: 2 + - uid: 10101 + components: + - type: Transform + pos: 104.5,42.5 + parent: 2 + - uid: 10102 + components: + - type: Transform + pos: 104.5,43.5 + parent: 2 + - uid: 10103 + components: + - type: Transform + pos: 105.5,42.5 + parent: 2 + - uid: 10104 + components: + - type: Transform + pos: 105.5,43.5 + parent: 2 + - uid: 10105 + components: + - type: Transform + pos: 106.5,42.5 + parent: 2 + - uid: 10106 + components: + - type: Transform + pos: 106.5,43.5 + parent: 2 + - uid: 10107 + components: + - type: Transform + pos: 107.5,42.5 + parent: 2 + - uid: 10108 + components: + - type: Transform + pos: 107.5,43.5 + parent: 2 + - uid: 10109 + components: + - type: Transform + pos: 108.5,42.5 + parent: 2 + - uid: 10110 + components: + - type: Transform + pos: 114.5,43.5 + parent: 2 + - uid: 10111 + components: + - type: Transform + pos: 115.5,42.5 + parent: 2 + - uid: 10112 + components: + - type: Transform + pos: 115.5,43.5 + parent: 2 + - uid: 10113 + components: + - type: Transform + pos: 116.5,42.5 + parent: 2 + - uid: 10114 + components: + - type: Transform + pos: 107.5,52.5 + parent: 2 + - uid: 10115 + components: + - type: Transform + pos: 113.5,46.5 + parent: 2 + - uid: 10116 + components: + - type: Transform + pos: 113.5,47.5 + parent: 2 + - uid: 10117 + components: + - type: Transform + pos: 113.5,48.5 + parent: 2 + - uid: 10118 + components: + - type: Transform + pos: 113.5,49.5 + parent: 2 + - uid: 10119 + components: + - type: Transform + pos: 113.5,50.5 + parent: 2 + - uid: 10120 + components: + - type: Transform + pos: 113.5,51.5 + parent: 2 + - uid: 10121 + components: + - type: Transform + pos: 113.5,52.5 + parent: 2 + - uid: 10122 + components: + - type: Transform + pos: 113.5,53.5 + parent: 2 + - uid: 10123 + components: + - type: Transform + pos: 115.5,44.5 + parent: 2 + - uid: 10124 + components: + - type: Transform + pos: 115.5,45.5 + parent: 2 + - uid: 10125 + components: + - type: Transform + pos: 115.5,46.5 + parent: 2 + - uid: 10126 + components: + - type: Transform + pos: 115.5,47.5 + parent: 2 + - uid: 10127 + components: + - type: Transform + pos: 115.5,48.5 + parent: 2 + - uid: 10128 + components: + - type: Transform + pos: 115.5,49.5 + parent: 2 + - uid: 10129 + components: + - type: Transform + pos: 115.5,50.5 + parent: 2 + - uid: 10130 + components: + - type: Transform + pos: 115.5,51.5 + parent: 2 + - uid: 10131 + components: + - type: Transform + pos: 115.5,52.5 + parent: 2 + - uid: 10132 + components: + - type: Transform + pos: 115.5,53.5 + parent: 2 + - uid: 10133 + components: + - type: Transform + pos: 114.5,44.5 + parent: 2 + - uid: 10134 + components: + - type: Transform + pos: 114.5,45.5 + parent: 2 + - uid: 10135 + components: + - type: Transform + pos: 114.5,46.5 + parent: 2 + - uid: 10136 + components: + - type: Transform + pos: 114.5,47.5 + parent: 2 + - uid: 10137 + components: + - type: Transform + pos: 114.5,48.5 + parent: 2 + - uid: 10138 + components: + - type: Transform + pos: 114.5,49.5 + parent: 2 + - uid: 10139 + components: + - type: Transform + pos: 114.5,50.5 + parent: 2 + - uid: 10140 + components: + - type: Transform + pos: 114.5,51.5 + parent: 2 + - uid: 10141 + components: + - type: Transform + pos: 114.5,52.5 + parent: 2 + - uid: 10142 + components: + - type: Transform + pos: 114.5,53.5 + parent: 2 + - uid: 10143 + components: + - type: Transform + pos: 113.5,44.5 + parent: 2 + - uid: 10144 + components: + - type: Transform + pos: 113.5,45.5 + parent: 2 + - uid: 10145 + components: + - type: Transform + pos: 116.5,53.5 + parent: 2 + - uid: 10146 + components: + - type: Transform + pos: 106.5,53.5 + parent: 2 + - uid: 10147 + components: + - type: Transform + pos: 106.5,52.5 + parent: 2 + - uid: 10148 + components: + - type: Transform + pos: 105.5,53.5 + parent: 2 + - uid: 10149 + components: + - type: Transform + pos: 105.5,52.5 + parent: 2 + - uid: 10150 + components: + - type: Transform + pos: 104.5,53.5 + parent: 2 + - uid: 10151 + components: + - type: Transform + pos: 104.5,52.5 + parent: 2 + - uid: 10152 + components: + - type: Transform + pos: 112.5,53.5 + parent: 2 + - uid: 10153 + components: + - type: Transform + pos: 112.5,52.5 + parent: 2 + - uid: 10154 + components: + - type: Transform + pos: 111.5,53.5 + parent: 2 + - uid: 10155 + components: + - type: Transform + pos: 111.5,52.5 + parent: 2 + - uid: 10156 + components: + - type: Transform + pos: 110.5,53.5 + parent: 2 + - uid: 10157 + components: + - type: Transform + pos: 110.5,52.5 + parent: 2 + - uid: 10158 + components: + - type: Transform + pos: 109.5,53.5 + parent: 2 + - uid: 10159 + components: + - type: Transform + pos: 109.5,52.5 + parent: 2 + - uid: 10160 + components: + - type: Transform + pos: 108.5,53.5 + parent: 2 + - uid: 10161 + components: + - type: Transform + pos: 108.5,52.5 + parent: 2 + - uid: 10162 + components: + - type: Transform + pos: 107.5,53.5 + parent: 2 + - uid: 10163 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - uid: 10164 + components: + - type: Transform + pos: 103.5,53.5 + parent: 2 + - uid: 10165 + components: + - type: Transform + pos: 102.5,53.5 + parent: 2 + - uid: 10166 + components: + - type: Transform + pos: 102.5,52.5 + parent: 2 + - uid: 10167 + components: + - type: Transform + pos: 104.5,45.5 + parent: 2 + - uid: 10168 + components: + - type: Transform + pos: 104.5,46.5 + parent: 2 + - uid: 10169 + components: + - type: Transform + pos: 104.5,47.5 + parent: 2 + - uid: 10170 + components: + - type: Transform + pos: 105.5,47.5 + parent: 2 + - uid: 10171 + components: + - type: Transform + pos: 105.5,48.5 + parent: 2 + - uid: 10172 + components: + - type: Transform + pos: 104.5,48.5 + parent: 2 + - uid: 10173 + components: + - type: Transform + pos: 104.5,49.5 + parent: 2 + - uid: 10174 + components: + - type: Transform + pos: 104.5,50.5 + parent: 2 + - uid: 10175 + components: + - type: Transform + pos: 104.5,51.5 + parent: 2 + - uid: 10179 + components: + - type: Transform + pos: 100.5,52.5 + parent: 2 + - uid: 10180 + components: + - type: Transform + pos: 100.5,53.5 + parent: 2 + - uid: 10181 + components: + - type: Transform + pos: 99.5,53.5 + parent: 2 + - uid: 10182 + components: + - type: Transform + pos: 98.5,53.5 + parent: 2 + - uid: 10183 + components: + - type: Transform + pos: 97.5,53.5 + parent: 2 + - uid: 10184 + components: + - type: Transform + pos: 96.5,53.5 + parent: 2 + - uid: 10185 + components: + - type: Transform + pos: 95.5,53.5 + parent: 2 + - uid: 10186 + components: + - type: Transform + pos: 95.5,52.5 + parent: 2 + - uid: 10187 + components: + - type: Transform + pos: 94.5,52.5 + parent: 2 + - uid: 10188 + components: + - type: Transform + pos: 93.5,52.5 + parent: 2 + - uid: 10189 + components: + - type: Transform + pos: 92.5,52.5 + parent: 2 + - uid: 10190 + components: + - type: Transform + pos: 91.5,52.5 + parent: 2 + - uid: 10191 + components: + - type: Transform + pos: 90.5,52.5 + parent: 2 + - uid: 10192 + components: + - type: Transform + pos: 90.5,51.5 + parent: 2 + - uid: 10193 + components: + - type: Transform + pos: 89.5,51.5 + parent: 2 + - uid: 10194 + components: + - type: Transform + pos: 88.5,51.5 + parent: 2 + - uid: 10195 + components: + - type: Transform + pos: 85.5,51.5 + parent: 2 + - uid: 10196 + components: + - type: Transform + pos: 85.5,50.5 + parent: 2 + - uid: 10197 + components: + - type: Transform + pos: 84.5,50.5 + parent: 2 + - uid: 10198 + components: + - type: Transform + pos: 80.5,50.5 + parent: 2 + - uid: 10199 + components: + - type: Transform + pos: 79.5,50.5 + parent: 2 + - uid: 10200 + components: + - type: Transform + pos: 78.5,50.5 + parent: 2 + - uid: 10201 + components: + - type: Transform + pos: 77.5,50.5 + parent: 2 + - uid: 10202 + components: + - type: Transform + pos: 77.5,49.5 + parent: 2 + - uid: 10203 + components: + - type: Transform + pos: 76.5,49.5 + parent: 2 + - uid: 10204 + components: + - type: Transform + pos: 75.5,49.5 + parent: 2 + - uid: 10205 + components: + - type: Transform + pos: 74.5,49.5 + parent: 2 + - uid: 10206 + components: + - type: Transform + pos: 73.5,49.5 + parent: 2 + - uid: 10207 + components: + - type: Transform + pos: 68.5,48.5 + parent: 2 + - uid: 10208 + components: + - type: Transform + pos: 67.5,48.5 + parent: 2 + - uid: 10209 + components: + - type: Transform + pos: 66.5,48.5 + parent: 2 + - uid: 10211 + components: + - type: Transform + pos: 62.5,48.5 + parent: 2 + - uid: 10212 + components: + - type: Transform + pos: 51.5,47.5 + parent: 2 + - uid: 10213 + components: + - type: Transform + pos: 50.5,47.5 + parent: 2 + - uid: 10214 + components: + - type: Transform + pos: 62.5,47.5 + parent: 2 + - uid: 10215 + components: + - type: Transform + pos: 61.5,47.5 + parent: 2 + - uid: 10216 + components: + - type: Transform + pos: 60.5,47.5 + parent: 2 + - uid: 10217 + components: + - type: Transform + pos: 59.5,47.5 + parent: 2 + - uid: 10218 + components: + - type: Transform + pos: 58.5,47.5 + parent: 2 + - uid: 10219 + components: + - type: Transform + pos: 57.5,47.5 + parent: 2 + - uid: 10220 + components: + - type: Transform + pos: 56.5,47.5 + parent: 2 + - uid: 10221 + components: + - type: Transform + pos: 55.5,47.5 + parent: 2 + - uid: 10222 + components: + - type: Transform + pos: 54.5,47.5 + parent: 2 + - uid: 10223 + components: + - type: Transform + pos: 53.5,47.5 + parent: 2 + - uid: 10224 + components: + - type: Transform + pos: 52.5,47.5 + parent: 2 + - uid: 10225 + components: + - type: Transform + pos: 51.5,46.5 + parent: 2 + - uid: 10226 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 10227 + components: + - type: Transform + pos: 50.5,40.5 + parent: 2 + - uid: 10228 + components: + - type: Transform + pos: 51.5,40.5 + parent: 2 + - uid: 10229 + components: + - type: Transform + pos: 52.5,40.5 + parent: 2 + - uid: 10230 + components: + - type: Transform + pos: 53.5,40.5 + parent: 2 + - uid: 10231 + components: + - type: Transform + pos: 52.5,46.5 + parent: 2 + - uid: 10232 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 10233 + components: + - type: Transform + pos: 53.5,42.5 + parent: 2 + - uid: 10234 + components: + - type: Transform + pos: 53.5,43.5 + parent: 2 + - uid: 10235 + components: + - type: Transform + pos: 53.5,44.5 + parent: 2 + - uid: 10236 + components: + - type: Transform + pos: 53.5,45.5 + parent: 2 + - uid: 10237 + components: + - type: Transform + pos: 53.5,46.5 + parent: 2 + - uid: 10238 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 10239 + components: + - type: Transform + pos: 52.5,42.5 + parent: 2 + - uid: 10240 + components: + - type: Transform + pos: 52.5,43.5 + parent: 2 + - uid: 10241 + components: + - type: Transform + pos: 52.5,44.5 + parent: 2 + - uid: 10242 + components: + - type: Transform + pos: 52.5,45.5 + parent: 2 + - uid: 10243 + components: + - type: Transform + pos: 54.5,46.5 + parent: 2 + - uid: 10244 + components: + - type: Transform + pos: 55.5,46.5 + parent: 2 + - uid: 10245 + components: + - type: Transform + pos: 56.5,46.5 + parent: 2 + - uid: 10246 + components: + - type: Transform + pos: 57.5,46.5 + parent: 2 + - uid: 10247 + components: + - type: Transform + pos: 58.5,46.5 + parent: 2 + - uid: 10248 + components: + - type: Transform + pos: 59.5,46.5 + parent: 2 + - uid: 10249 + components: + - type: Transform + pos: 59.5,45.5 + parent: 2 + - uid: 10250 + components: + - type: Transform + pos: 59.5,44.5 + parent: 2 + - uid: 10251 + components: + - type: Transform + pos: 59.5,43.5 + parent: 2 + - uid: 10252 + components: + - type: Transform + pos: 59.5,42.5 + parent: 2 + - uid: 10253 + components: + - type: Transform + pos: 59.5,41.5 + parent: 2 + - uid: 10254 + components: + - type: Transform + pos: 59.5,40.5 + parent: 2 + - uid: 10255 + components: + - type: Transform + pos: 58.5,41.5 + parent: 2 + - uid: 10256 + components: + - type: Transform + pos: 58.5,40.5 + parent: 2 + - uid: 10257 + components: + - type: Transform + pos: 57.5,41.5 + parent: 2 + - uid: 10258 + components: + - type: Transform + pos: 57.5,40.5 + parent: 2 + - uid: 10259 + components: + - type: Transform + pos: 56.5,41.5 + parent: 2 + - uid: 10260 + components: + - type: Transform + pos: 56.5,40.5 + parent: 2 + - uid: 10261 + components: + - type: Transform + pos: 55.5,41.5 + parent: 2 + - uid: 10262 + components: + - type: Transform + pos: 55.5,40.5 + parent: 2 + - uid: 10263 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10264 + components: + - type: Transform + pos: 54.5,40.5 + parent: 2 + - uid: 10265 + components: + - type: Transform + pos: 60.5,40.5 + parent: 2 + - uid: 10266 + components: + - type: Transform + pos: 61.5,40.5 + parent: 2 + - uid: 10267 + components: + - type: Transform + pos: 62.5,40.5 + parent: 2 + - uid: 10268 + components: + - type: Transform + pos: 63.5,40.5 + parent: 2 + - uid: 10269 + components: + - type: Transform + pos: 64.5,40.5 + parent: 2 + - uid: 10270 + components: + - type: Transform + pos: 65.5,40.5 + parent: 2 + - uid: 10271 + components: + - type: Transform + pos: 66.5,40.5 + parent: 2 + - uid: 10272 + components: + - type: Transform + pos: 76.5,41.5 + parent: 2 + - uid: 10273 + components: + - type: Transform + pos: 66.5,41.5 + parent: 2 + - uid: 10274 + components: + - type: Transform + pos: 67.5,41.5 + parent: 2 + - uid: 10275 + components: + - type: Transform + pos: 68.5,41.5 + parent: 2 + - uid: 10276 + components: + - type: Transform + pos: 69.5,41.5 + parent: 2 + - uid: 10277 + components: + - type: Transform + pos: 70.5,41.5 + parent: 2 + - uid: 10278 + components: + - type: Transform + pos: 71.5,41.5 + parent: 2 + - uid: 10279 + components: + - type: Transform + pos: 72.5,41.5 + parent: 2 + - uid: 10280 + components: + - type: Transform + pos: 73.5,41.5 + parent: 2 + - uid: 10281 + components: + - type: Transform + pos: 74.5,41.5 + parent: 2 + - uid: 10282 + components: + - type: Transform + pos: 75.5,41.5 + parent: 2 + - uid: 10283 + components: + - type: Transform + pos: 76.5,39.5 + parent: 2 + - uid: 10284 + components: + - type: Transform + pos: 76.5,38.5 + parent: 2 + - uid: 10285 + components: + - type: Transform + pos: 75.5,38.5 + parent: 2 + - uid: 10286 + components: + - type: Transform + pos: 74.5,38.5 + parent: 2 + - uid: 10287 + components: + - type: Transform + pos: 61.5,34.5 + parent: 2 + - uid: 10288 + components: + - type: Transform + pos: 71.5,37.5 + parent: 2 + - uid: 10289 + components: + - type: Transform + pos: 70.5,37.5 + parent: 2 + - uid: 10290 + components: + - type: Transform + pos: 69.5,37.5 + parent: 2 + - uid: 10291 + components: + - type: Transform + pos: 69.5,36.5 + parent: 2 + - uid: 10292 + components: + - type: Transform + pos: 68.5,36.5 + parent: 2 + - uid: 10293 + components: + - type: Transform + pos: 67.5,36.5 + parent: 2 + - uid: 10294 + components: + - type: Transform + pos: 66.5,36.5 + parent: 2 + - uid: 10295 + components: + - type: Transform + pos: 65.5,36.5 + parent: 2 + - uid: 10296 + components: + - type: Transform + pos: 65.5,35.5 + parent: 2 + - uid: 10297 + components: + - type: Transform + pos: 64.5,35.5 + parent: 2 + - uid: 10298 + components: + - type: Transform + pos: 62.5,35.5 + parent: 2 + - uid: 10299 + components: + - type: Transform + pos: 51.5,34.5 + parent: 2 + - uid: 10300 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 10301 + components: + - type: Transform + pos: 49.5,34.5 + parent: 2 + - uid: 10302 + components: + - type: Transform + pos: 48.5,34.5 + parent: 2 + - uid: 10303 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 + - uid: 10306 + components: + - type: Transform + pos: 44.5,34.5 + parent: 2 + - uid: 10307 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - uid: 10308 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - uid: 10309 + components: + - type: Transform + pos: 60.5,34.5 + parent: 2 + - uid: 10310 + components: + - type: Transform + pos: 59.5,34.5 + parent: 2 + - uid: 10311 + components: + - type: Transform + pos: 58.5,34.5 + parent: 2 + - uid: 10312 + components: + - type: Transform + pos: 57.5,34.5 + parent: 2 + - uid: 10313 + components: + - type: Transform + pos: 56.5,34.5 + parent: 2 + - uid: 10314 + components: + - type: Transform + pos: 55.5,34.5 + parent: 2 + - uid: 10315 + components: + - type: Transform + pos: 54.5,34.5 + parent: 2 + - uid: 10316 + components: + - type: Transform + pos: 53.5,34.5 + parent: 2 + - uid: 10317 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 + - uid: 10318 + components: + - type: Transform + pos: 42.5,33.5 + parent: 2 + - uid: 10321 + components: + - type: Transform + pos: 39.5,33.5 + parent: 2 + - uid: 10322 + components: + - type: Transform + pos: 38.5,33.5 + parent: 2 + - uid: 10325 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - uid: 10326 + components: + - type: Transform + pos: 34.5,33.5 + parent: 2 + - uid: 10327 + components: + - type: Transform + pos: 33.5,32.5 + parent: 2 + - uid: 10330 + components: + - type: Transform + pos: 30.5,32.5 + parent: 2 + - uid: 10331 + components: + - type: Transform + pos: 29.5,32.5 + parent: 2 + - uid: 10332 + components: + - type: Transform + pos: 28.5,32.5 + parent: 2 + - uid: 10333 + components: + - type: Transform + pos: 27.5,32.5 + parent: 2 + - uid: 10334 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - uid: 10335 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 10336 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - uid: 10337 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 10338 + components: + - type: Transform + pos: 23.5,31.5 + parent: 2 + - uid: 10339 + components: + - type: Transform + pos: 22.5,31.5 + parent: 2 + - uid: 10340 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 + - uid: 10342 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - uid: 10343 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 10344 + components: + - type: Transform + pos: 18.5,30.5 + parent: 2 + - uid: 10345 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 + - uid: 10346 + components: + - type: Transform + pos: 16.5,30.5 + parent: 2 + - uid: 10347 + components: + - type: Transform + pos: 15.5,30.5 + parent: 2 + - uid: 10348 + components: + - type: Transform + pos: 14.5,30.5 + parent: 2 + - uid: 10349 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 10350 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 10351 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 + - uid: 10352 + components: + - type: Transform + pos: 11.5,29.5 + parent: 2 + - uid: 10353 + components: + - type: Transform + pos: 10.5,29.5 + parent: 2 + - uid: 10354 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 + - uid: 10355 + components: + - type: Transform + pos: 8.5,29.5 + parent: 2 + - uid: 10356 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 + - uid: 10357 + components: + - type: Transform + pos: 6.5,29.5 + parent: 2 + - uid: 10358 + components: + - type: Transform + pos: 5.5,29.5 + parent: 2 + - uid: 10359 + components: + - type: Transform + pos: 4.5,29.5 + parent: 2 + - uid: 10360 + components: + - type: Transform + pos: 1.5,28.5 + parent: 2 + - uid: 10361 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 10362 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 10363 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 10364 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 10365 + components: + - type: Transform + pos: 4.5,27.5 + parent: 2 + - uid: 10366 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - uid: 10367 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - uid: 10368 + components: + - type: Transform + pos: 5.5,24.5 + parent: 2 + - uid: 10369 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 10370 + components: + - type: Transform + pos: 5.5,26.5 + parent: 2 + - uid: 10371 + components: + - type: Transform + pos: 5.5,27.5 + parent: 2 + - uid: 10372 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 + - uid: 10373 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 + - uid: 10374 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - uid: 10375 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 + - uid: 10376 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - uid: 10377 + components: + - type: Transform + pos: 3.5,28.5 + parent: 2 + - uid: 10378 + components: + - type: Transform + pos: 3.5,27.5 + parent: 2 + - uid: 10379 + components: + - type: Transform + pos: 2.5,28.5 + parent: 2 + - uid: 10380 + components: + - type: Transform + pos: 2.5,27.5 + parent: 2 + - uid: 10381 + components: + - type: Transform + pos: 6.5,28.5 + parent: 2 + - uid: 10382 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 10383 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 10384 + components: + - type: Transform + pos: 9.5,28.5 + parent: 2 + - uid: 10385 + components: + - type: Transform + pos: 9.5,27.5 + parent: 2 + - uid: 10386 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 + - uid: 10387 + components: + - type: Transform + pos: 11.5,27.5 + parent: 2 + - uid: 10388 + components: + - type: Transform + pos: 12.5,27.5 + parent: 2 + - uid: 10389 + components: + - type: Transform + pos: 12.5,26.5 + parent: 2 + - uid: 10390 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 + - uid: 10391 + components: + - type: Transform + pos: 12.5,24.5 + parent: 2 + - uid: 10392 + components: + - type: Transform + pos: 12.5,23.5 + parent: 2 + - uid: 10393 + components: + - type: Transform + pos: 11.5,23.5 + parent: 2 + - uid: 10394 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 + - uid: 10395 + components: + - type: Transform + pos: 9.5,23.5 + parent: 2 + - uid: 10396 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - uid: 10397 + components: + - type: Transform + pos: 8.5,22.5 + parent: 2 + - uid: 10398 + components: + - type: Transform + pos: 7.5,22.5 + parent: 2 + - uid: 10399 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - uid: 10400 + components: + - type: Transform + pos: 67.5,-13.5 + parent: 2 + - uid: 10401 + components: + - type: Transform + pos: 68.5,-13.5 + parent: 2 + - uid: 10402 + components: + - type: Transform + pos: 68.5,-12.5 + parent: 2 + - uid: 10403 + components: + - type: Transform + pos: 68.5,-11.5 + parent: 2 + - uid: 10404 + components: + - type: Transform + pos: 68.5,-10.5 + parent: 2 + - uid: 10405 + components: + - type: Transform + pos: 68.5,-9.5 + parent: 2 + - uid: 10406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,8.5 + parent: 2 + - uid: 10407 + components: + - type: Transform + pos: 45.5,-6.5 + parent: 2 + - uid: 10408 + components: + - type: Transform + pos: 51.5,-3.5 + parent: 2 + - uid: 10409 + components: + - type: Transform + pos: 51.5,-2.5 + parent: 2 + - uid: 10410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,4.5 + parent: 2 + - uid: 10411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-1.5 + parent: 2 + - uid: 10412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,6.5 + parent: 2 + - uid: 10413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-1.5 + parent: 2 + - uid: 10414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-1.5 + parent: 2 + - uid: 10415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,8.5 + parent: 2 + - uid: 10416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-1.5 + parent: 2 + - uid: 10417 + components: + - type: Transform + pos: 63.5,30.5 + parent: 2 + - uid: 10418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-2.5 + parent: 2 + - uid: 10419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-3.5 + parent: 2 + - uid: 10420 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - uid: 10421 + components: + - type: Transform + pos: 61.5,30.5 + parent: 2 + - uid: 10422 + components: + - type: Transform + pos: 62.5,30.5 + parent: 2 + - uid: 10423 + components: + - type: Transform + pos: 64.5,30.5 + parent: 2 + - uid: 10424 + components: + - type: Transform + pos: 64.5,-5.5 + parent: 2 + - uid: 10425 + components: + - type: Transform + pos: 66.5,-5.5 + parent: 2 + - uid: 10426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 2 + - uid: 10427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-25.5 + parent: 2 + - uid: 10428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-27.5 + parent: 2 + - uid: 10429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-28.5 + parent: 2 + - uid: 10430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-28.5 + parent: 2 + - uid: 10431 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - uid: 10432 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - uid: 10433 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 2 + - uid: 10434 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 10435 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 + - uid: 10436 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 + - uid: 10437 + components: + - type: Transform + pos: 52.5,-27.5 + parent: 2 + - uid: 10438 + components: + - type: Transform + pos: 52.5,-28.5 + parent: 2 + - uid: 10439 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - uid: 10440 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 2 + - uid: 10441 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 + - uid: 10442 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 2 + - uid: 10443 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 10444 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - uid: 10445 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 10446 + components: + - type: Transform + pos: 53.5,7.5 + parent: 2 + - uid: 10447 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 + - uid: 10448 + components: + - type: Transform + pos: 53.5,10.5 + parent: 2 + - uid: 10449 + components: + - type: Transform + pos: 53.5,15.5 + parent: 2 + - uid: 10450 + components: + - type: Transform + pos: 49.5,10.5 + parent: 2 + - uid: 10451 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 + - uid: 10452 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 + - uid: 10453 + components: + - type: Transform + pos: 51.5,15.5 + parent: 2 + - uid: 10454 + components: + - type: Transform + pos: 50.5,15.5 + parent: 2 + - uid: 10455 + components: + - type: Transform + pos: 49.5,15.5 + parent: 2 + - uid: 10456 + components: + - type: Transform + pos: 48.5,15.5 + parent: 2 + - uid: 10457 + components: + - type: Transform + pos: 47.5,15.5 + parent: 2 + - uid: 10458 + components: + - type: Transform + pos: 46.5,15.5 + parent: 2 + - uid: 10459 + components: + - type: Transform + pos: 45.5,15.5 + parent: 2 + - uid: 10460 + components: + - type: Transform + pos: 45.5,14.5 + parent: 2 + - uid: 10461 + components: + - type: Transform + pos: 68.5,8.5 + parent: 2 + - uid: 10462 + components: + - type: Transform + pos: 66.5,7.5 + parent: 2 + - uid: 10463 + components: + - type: Transform + pos: 65.5,7.5 + parent: 2 + - uid: 10464 + components: + - type: Transform + pos: 64.5,7.5 + parent: 2 + - uid: 10465 + components: + - type: Transform + pos: 68.5,7.5 + parent: 2 + - uid: 10466 + components: + - type: Transform + pos: 68.5,9.5 + parent: 2 + - uid: 10467 + components: + - type: Transform + pos: 67.5,9.5 + parent: 2 + - uid: 10468 + components: + - type: Transform + pos: 66.5,9.5 + parent: 2 + - uid: 10469 + components: + - type: Transform + pos: 65.5,9.5 + parent: 2 + - uid: 10470 + components: + - type: Transform + pos: 69.5,3.5 + parent: 2 + - uid: 10471 + components: + - type: Transform + pos: 70.5,3.5 + parent: 2 + - uid: 10472 + components: + - type: Transform + pos: 70.5,4.5 + parent: 2 + - uid: 10473 + components: + - type: Transform + pos: 70.5,5.5 + parent: 2 + - uid: 10474 + components: + - type: Transform + pos: 70.5,6.5 + parent: 2 + - uid: 10475 + components: + - type: Transform + pos: 70.5,7.5 + parent: 2 + - uid: 10476 + components: + - type: Transform + pos: 69.5,7.5 + parent: 2 + - uid: 10477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,14.5 + parent: 2 + - uid: 10478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,14.5 + parent: 2 + - uid: 10479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,15.5 + parent: 2 + - uid: 10480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,16.5 + parent: 2 + - uid: 10481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,17.5 + parent: 2 + - uid: 10482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,14.5 + parent: 2 + - uid: 10483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,15.5 + parent: 2 + - uid: 10484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,16.5 + parent: 2 + - uid: 10485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,17.5 + parent: 2 + - uid: 10486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,18.5 + parent: 2 + - uid: 10487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,18.5 + parent: 2 + - uid: 10488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,19.5 + parent: 2 + - uid: 10489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,20.5 + parent: 2 + - uid: 10490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,21.5 + parent: 2 + - uid: 10491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,22.5 + parent: 2 + - uid: 10492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,22.5 + parent: 2 + - uid: 10493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,22.5 + parent: 2 + - uid: 10494 + components: + - type: Transform + pos: 66.5,23.5 + parent: 2 + - uid: 10495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,22.5 + parent: 2 + - uid: 10496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,20.5 + parent: 2 + - uid: 10497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,19.5 + parent: 2 + - uid: 10498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,21.5 + parent: 2 + - uid: 10499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,22.5 + parent: 2 + - uid: 10500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,22.5 + parent: 2 + - uid: 10501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,16.5 + parent: 2 + - uid: 10502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,17.5 + parent: 2 + - uid: 10503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,18.5 + parent: 2 + - uid: 10504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,19.5 + parent: 2 + - uid: 10505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,20.5 + parent: 2 + - uid: 10506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,21.5 + parent: 2 + - uid: 10507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,21.5 + parent: 2 + - uid: 10508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,21.5 + parent: 2 + - uid: 10509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,21.5 + parent: 2 + - uid: 10510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,21.5 + parent: 2 + - uid: 10511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,21.5 + parent: 2 + - uid: 10512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,14.5 + parent: 2 + - uid: 10513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,14.5 + parent: 2 + - uid: 10514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,14.5 + parent: 2 + - uid: 10515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,14.5 + parent: 2 + - uid: 10516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,18.5 + parent: 2 + - uid: 10517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,18.5 + parent: 2 + - uid: 10518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,18.5 + parent: 2 + - uid: 10519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,22.5 + parent: 2 + - uid: 10520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,22.5 + parent: 2 + - uid: 10521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,22.5 + parent: 2 + - uid: 10522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,22.5 + parent: 2 + - uid: 10523 + components: + - type: Transform + pos: 71.5,3.5 + parent: 2 + - uid: 10524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,4.5 + parent: 2 + - uid: 10525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,11.5 + parent: 2 + - uid: 10526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,12.5 + parent: 2 + - uid: 10527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,13.5 + parent: 2 + - uid: 10528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,14.5 + parent: 2 + - uid: 10529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,14.5 + parent: 2 + - uid: 10530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,14.5 + parent: 2 + - uid: 10531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,14.5 + parent: 2 + - uid: 10532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,14.5 + parent: 2 + - uid: 10533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,15.5 + parent: 2 + - uid: 10534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,16.5 + parent: 2 + - uid: 10535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,17.5 + parent: 2 + - uid: 10536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,18.5 + parent: 2 + - uid: 10537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,18.5 + parent: 2 + - uid: 10538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,18.5 + parent: 2 + - uid: 10539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,18.5 + parent: 2 + - uid: 10540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,19.5 + parent: 2 + - uid: 10541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,20.5 + parent: 2 + - uid: 10542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,21.5 + parent: 2 + - uid: 10543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,22.5 + parent: 2 + - uid: 10544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,22.5 + parent: 2 + - uid: 10545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,22.5 + parent: 2 + - uid: 10546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,22.5 + parent: 2 + - uid: 10547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,22.5 + parent: 2 + - uid: 10548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,18.5 + parent: 2 + - uid: 10549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,18.5 + parent: 2 + - uid: 10550 + components: + - type: Transform + pos: 72.5,3.5 + parent: 2 + - uid: 10551 + components: + - type: Transform + pos: 73.5,3.5 + parent: 2 + - uid: 10552 + components: + - type: Transform + pos: 74.5,3.5 + parent: 2 + - uid: 10553 + components: + - type: Transform + pos: 77.5,12.5 + parent: 2 + - uid: 10554 + components: + - type: Transform + pos: 77.5,13.5 + parent: 2 + - uid: 10555 + components: + - type: Transform + pos: 75.5,3.5 + parent: 2 + - uid: 10556 + components: + - type: Transform + pos: 77.5,11.5 + parent: 2 + - uid: 10557 + components: + - type: Transform + pos: 75.5,4.5 + parent: 2 + - uid: 10558 + components: + - type: Transform + pos: 75.5,5.5 + parent: 2 + - uid: 10559 + components: + - type: Transform + pos: 75.5,6.5 + parent: 2 + - uid: 10560 + components: + - type: Transform + pos: 75.5,7.5 + parent: 2 + - uid: 10561 + components: + - type: Transform + pos: 75.5,8.5 + parent: 2 + - uid: 10562 + components: + - type: Transform + pos: 76.5,8.5 + parent: 2 + - uid: 10563 + components: + - type: Transform + pos: 77.5,8.5 + parent: 2 + - uid: 10564 + components: + - type: Transform + pos: 77.5,9.5 + parent: 2 + - uid: 10565 + components: + - type: Transform + pos: 77.5,10.5 + parent: 2 + - uid: 10566 + components: + - type: Transform + pos: -60.5,5.5 + parent: 2 + - uid: 10567 + components: + - type: Transform + pos: -61.5,5.5 + parent: 2 + - uid: 10568 + components: + - type: Transform + pos: -62.5,5.5 + parent: 2 + - uid: 10569 + components: + - type: Transform + pos: -63.5,5.5 + parent: 2 + - uid: 10570 + components: + - type: Transform + pos: -64.5,5.5 + parent: 2 + - uid: 10571 + components: + - type: Transform + pos: -65.5,5.5 + parent: 2 + - uid: 10572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,7.5 + parent: 2 + - uid: 10573 + components: + - type: Transform + pos: 66.5,24.5 + parent: 2 + - uid: 10574 + components: + - type: Transform + pos: 66.5,25.5 + parent: 2 + - uid: 10575 + components: + - type: Transform + pos: 66.5,26.5 + parent: 2 + - uid: 10576 + components: + - type: Transform + pos: 65.5,26.5 + parent: 2 + - uid: 10577 + components: + - type: Transform + pos: 64.5,26.5 + parent: 2 + - uid: 10578 + components: + - type: Transform + pos: 63.5,26.5 + parent: 2 + - uid: 10579 + components: + - type: Transform + pos: 62.5,26.5 + parent: 2 + - uid: 10580 + components: + - type: Transform + pos: 61.5,26.5 + parent: 2 + - uid: 10581 + components: + - type: Transform + pos: 60.5,26.5 + parent: 2 + - uid: 10582 + components: + - type: Transform + pos: 60.5,25.5 + parent: 2 + - uid: 10583 + components: + - type: Transform + pos: 60.5,24.5 + parent: 2 + - uid: 10584 + components: + - type: Transform + pos: 60.5,23.5 + parent: 2 + - uid: 10585 + components: + - type: Transform + pos: -64.5,4.5 + parent: 2 + - uid: 10586 + components: + - type: Transform + pos: 71.5,22.5 + parent: 2 + - uid: 10587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,4.5 + parent: 2 + - uid: 10588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,4.5 + parent: 2 + - uid: 10589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,4.5 + parent: 2 + - uid: 10590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,4.5 + parent: 2 + - uid: 10591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,33.5 + parent: 2 + - uid: 10592 + components: + - type: Transform + pos: 66.5,30.5 + parent: 2 + - uid: 10593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,14.5 + parent: 2 + - uid: 10595 + components: + - type: Transform + pos: 75.5,-13.5 + parent: 2 + - uid: 10596 + components: + - type: Transform + pos: 74.5,-13.5 + parent: 2 + - uid: 10597 + components: + - type: Transform + pos: 73.5,-13.5 + parent: 2 + - uid: 10598 + components: + - type: Transform + pos: 72.5,-13.5 + parent: 2 + - uid: 10599 + components: + - type: Transform + pos: 71.5,-13.5 + parent: 2 + - uid: 10600 + components: + - type: Transform + pos: 70.5,-13.5 + parent: 2 + - uid: 10603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,14.5 + parent: 2 + - uid: 10604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,14.5 + parent: 2 + - uid: 10605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 2 + - uid: 10606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,14.5 + parent: 2 + - uid: 10607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,14.5 + parent: 2 + - uid: 10608 + components: + - type: Transform + pos: 82.5,-13.5 + parent: 2 + - uid: 10609 + components: + - type: Transform + pos: 82.5,11.5 + parent: 2 + - uid: 10611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,4.5 + parent: 2 + - uid: 10612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,6.5 + parent: 2 + - uid: 10613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,5.5 + parent: 2 + - uid: 10614 + components: + - type: Transform + pos: 72.5,22.5 + parent: 2 + - uid: 10615 + components: + - type: Transform + pos: 66.5,27.5 + parent: 2 + - uid: 10616 + components: + - type: Transform + pos: 66.5,29.5 + parent: 2 + - uid: 10617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,9.5 + parent: 2 + - uid: 10618 + components: + - type: Transform + pos: 68.5,32.5 + parent: 2 + - uid: 10619 + components: + - type: Transform + pos: 69.5,32.5 + parent: 2 + - uid: 10620 + components: + - type: Transform + pos: 69.5,30.5 + parent: 2 + - uid: 10621 + components: + - type: Transform + pos: 66.5,35.5 + parent: 2 + - uid: 10622 + components: + - type: Transform + pos: 68.5,30.5 + parent: 2 + - uid: 10623 + components: + - type: Transform + pos: 77.5,-13.5 + parent: 2 + - uid: 10624 + components: + - type: Transform + pos: 68.5,28.5 + parent: 2 + - uid: 10625 + components: + - type: Transform + pos: 76.5,-13.5 + parent: 2 + - uid: 10626 + components: + - type: Transform + pos: 68.5,26.5 + parent: 2 + - uid: 10627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,8.5 + parent: 2 + - uid: 10628 + components: + - type: Transform + pos: 68.5,24.5 + parent: 2 + - uid: 10629 + components: + - type: Transform + pos: 69.5,28.5 + parent: 2 + - uid: 10630 + components: + - type: Transform + pos: 69.5,26.5 + parent: 2 + - uid: 10631 + components: + - type: Transform + pos: 69.5,24.5 + parent: 2 + - uid: 10632 + components: + - type: Transform + pos: 68.5,25.5 + parent: 2 + - uid: 10633 + components: + - type: Transform + pos: 68.5,27.5 + parent: 2 + - uid: 10634 + components: + - type: Transform + pos: 68.5,29.5 + parent: 2 + - uid: 10635 + components: + - type: Transform + pos: 70.5,30.5 + parent: 2 + - uid: 10636 + components: + - type: Transform + pos: 70.5,24.5 + parent: 2 + - uid: 10637 + components: + - type: Transform + pos: 68.5,31.5 + parent: 2 + - uid: 10638 + components: + - type: Transform + pos: 70.5,26.5 + parent: 2 + - uid: 10639 + components: + - type: Transform + pos: 70.5,28.5 + parent: 2 + - uid: 10640 + components: + - type: Transform + pos: 70.5,32.5 + parent: 2 + - uid: 10641 + components: + - type: Transform + pos: 72.5,26.5 + parent: 2 + - uid: 10642 + components: + - type: Transform + pos: 71.5,24.5 + parent: 2 + - uid: 10643 + components: + - type: Transform + pos: 71.5,26.5 + parent: 2 + - uid: 10644 + components: + - type: Transform + pos: 72.5,28.5 + parent: 2 + - uid: 10645 + components: + - type: Transform + pos: 71.5,28.5 + parent: 2 + - uid: 10646 + components: + - type: Transform + pos: 72.5,30.5 + parent: 2 + - uid: 10647 + components: + - type: Transform + pos: 71.5,30.5 + parent: 2 + - uid: 10648 + components: + - type: Transform + pos: 72.5,32.5 + parent: 2 + - uid: 10649 + components: + - type: Transform + pos: 71.5,32.5 + parent: 2 + - uid: 10650 + components: + - type: Transform + pos: 77.5,-14.5 + parent: 2 + - uid: 10651 + components: + - type: Transform + pos: 77.5,-15.5 + parent: 2 + - uid: 10652 + components: + - type: Transform + pos: 77.5,-16.5 + parent: 2 + - uid: 10653 + components: + - type: Transform + pos: 77.5,-17.5 + parent: 2 + - uid: 10654 + components: + - type: Transform + pos: 77.5,-18.5 + parent: 2 + - uid: 10655 + components: + - type: Transform + pos: 80.5,37.5 + parent: 2 + - uid: 10656 + components: + - type: Transform + pos: 82.5,-15.5 + parent: 2 + - uid: 10657 + components: + - type: Transform + pos: 82.5,-17.5 + parent: 2 + - uid: 10658 + components: + - type: Transform + pos: 82.5,-18.5 + parent: 2 + - uid: 10659 + components: + - type: Transform + pos: 80.5,36.5 + parent: 2 + - uid: 10660 + components: + - type: Transform + pos: 70.5,-18.5 + parent: 2 + - uid: 10661 + components: + - type: Transform + pos: 70.5,-14.5 + parent: 2 + - uid: 10662 + components: + - type: Transform + pos: 70.5,-15.5 + parent: 2 + - uid: 10663 + components: + - type: Transform + pos: 70.5,-16.5 + parent: 2 + - uid: 10664 + components: + - type: Transform + pos: 70.5,-17.5 + parent: 2 + - uid: 10665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,22.5 + parent: 2 + - uid: 10666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,22.5 + parent: 2 + - uid: 10667 + components: + - type: Transform + pos: 83.5,-13.5 + parent: 2 + - uid: 10668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,23.5 + parent: 2 + - uid: 10669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,24.5 + parent: 2 + - uid: 10670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,25.5 + parent: 2 + - uid: 10671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,26.5 + parent: 2 + - uid: 10672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,27.5 + parent: 2 + - uid: 10673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,28.5 + parent: 2 + - uid: 10674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,33.5 + parent: 2 + - uid: 10675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,34.5 + parent: 2 + - uid: 10676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,35.5 + parent: 2 + - uid: 10677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,36.5 + parent: 2 + - uid: 10678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,37.5 + parent: 2 + - uid: 10679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,38.5 + parent: 2 + - uid: 10680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,38.5 + parent: 2 + - uid: 10681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,38.5 + parent: 2 + - uid: 10682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,38.5 + parent: 2 + - uid: 10683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,38.5 + parent: 2 + - uid: 10684 + components: + - type: Transform + pos: 84.5,-13.5 + parent: 2 + - uid: 10685 + components: + - type: Transform + pos: 85.5,-13.5 + parent: 2 + - uid: 10686 + components: + - type: Transform + pos: 86.5,-13.5 + parent: 2 + - uid: 10687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,34.5 + parent: 2 + - uid: 10688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,34.5 + parent: 2 + - uid: 10689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,34.5 + parent: 2 + - uid: 10690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,34.5 + parent: 2 + - uid: 10691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,34.5 + parent: 2 + - uid: 10692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,33.5 + parent: 2 + - uid: 10693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,33.5 + parent: 2 + - uid: 10694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,32.5 + parent: 2 + - uid: 10695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,31.5 + parent: 2 + - uid: 10696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,34.5 + parent: 2 + - uid: 10697 + components: + - type: Transform + pos: 62.5,34.5 + parent: 2 + - uid: 10698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,33.5 + parent: 2 + - uid: 10699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,41.5 + parent: 2 + - uid: 10701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,4.5 + parent: 2 + - uid: 10702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,4.5 + parent: 2 + - uid: 10703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,4.5 + parent: 2 + - uid: 10704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,4.5 + parent: 2 + - uid: 10705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,1.5 + parent: 2 + - uid: 10706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,4.5 + parent: 2 + - uid: 10707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,4.5 + parent: 2 + - uid: 10708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,11.5 + parent: 2 + - uid: 10709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,11.5 + parent: 2 + - uid: 10710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,11.5 + parent: 2 + - uid: 10711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,9.5 + parent: 2 + - uid: 10712 + components: + - type: Transform + pos: 77.5,-28.5 + parent: 2 + - uid: 10713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,3.5 + parent: 2 + - uid: 10714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,2.5 + parent: 2 + - uid: 10715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,0.5 + parent: 2 + - uid: 10716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,-0.5 + parent: 2 + - uid: 10717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,-0.5 + parent: 2 + - uid: 10718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,0.5 + parent: 2 + - uid: 10719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,1.5 + parent: 2 + - uid: 10720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,2.5 + parent: 2 + - uid: 10721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,3.5 + parent: 2 + - uid: 10722 + components: + - type: Transform + pos: 86.5,-1.5 + parent: 2 + - uid: 10723 + components: + - type: Transform + pos: 87.5,-1.5 + parent: 2 + - uid: 10724 + components: + - type: Transform + pos: 88.5,-1.5 + parent: 2 + - uid: 10725 + components: + - type: Transform + pos: 90.5,-1.5 + parent: 2 + - uid: 10726 + components: + - type: Transform + pos: 91.5,-1.5 + parent: 2 + - uid: 10727 + components: + - type: Transform + pos: 92.5,-1.5 + parent: 2 + - uid: 10728 + components: + - type: Transform + pos: 85.5,38.5 + parent: 2 + - uid: 10729 + components: + - type: Transform + pos: 70.5,-19.5 + parent: 2 + - uid: 10730 + components: + - type: Transform + pos: 70.5,-20.5 + parent: 2 + - uid: 10731 + components: + - type: Transform + pos: 70.5,-21.5 + parent: 2 + - uid: 10732 + components: + - type: Transform + pos: 70.5,-22.5 + parent: 2 + - uid: 10733 + components: + - type: Transform + pos: 86.5,-5.5 + parent: 2 + - uid: 10734 + components: + - type: Transform + pos: 86.5,-2.5 + parent: 2 + - uid: 10735 + components: + - type: Transform + pos: 86.5,-3.5 + parent: 2 + - uid: 10736 + components: + - type: Transform + pos: 92.5,-2.5 + parent: 2 + - uid: 10737 + components: + - type: Transform + pos: 92.5,-3.5 + parent: 2 + - uid: 10738 + components: + - type: Transform + pos: 92.5,-5.5 + parent: 2 + - uid: 10739 + components: + - type: Transform + pos: 93.5,-5.5 + parent: 2 + - uid: 10740 + components: + - type: Transform + pos: 94.5,-5.5 + parent: 2 + - uid: 10741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-22.5 + parent: 2 + - uid: 10742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-22.5 + parent: 2 + - uid: 10743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-22.5 + parent: 2 + - uid: 10744 + components: + - type: Transform + pos: 70.5,-23.5 + parent: 2 + - uid: 10745 + components: + - type: Transform + pos: 70.5,-24.5 + parent: 2 + - uid: 10746 + components: + - type: Transform + pos: 70.5,-25.5 + parent: 2 + - uid: 10747 + components: + - type: Transform + pos: 70.5,-26.5 + parent: 2 + - uid: 10748 + components: + - type: Transform + pos: 70.5,-27.5 + parent: 2 + - uid: 10749 + components: + - type: Transform + pos: 75.5,-28.5 + parent: 2 + - uid: 10750 + components: + - type: Transform + pos: 74.5,-28.5 + parent: 2 + - uid: 10751 + components: + - type: Transform + pos: 70.5,-28.5 + parent: 2 + - uid: 10752 + components: + - type: Transform + pos: 73.5,-28.5 + parent: 2 + - uid: 10753 + components: + - type: Transform + pos: 71.5,-28.5 + parent: 2 + - uid: 10754 + components: + - type: Transform + pos: 72.5,-28.5 + parent: 2 + - uid: 10755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-27.5 + parent: 2 + - uid: 10756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-26.5 + parent: 2 + - uid: 10757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-24.5 + parent: 2 + - uid: 10758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-23.5 + parent: 2 + - uid: 10759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,-5.5 + parent: 2 + - uid: 10760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,-5.5 + parent: 2 + - uid: 10761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-6.5 + parent: 2 + - uid: 10762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,-6.5 + parent: 2 + - uid: 10763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,-6.5 + parent: 2 + - uid: 10764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,-6.5 + parent: 2 + - uid: 10765 + components: + - type: Transform + pos: 78.5,-28.5 + parent: 2 + - uid: 10766 + components: + - type: Transform + pos: 79.5,-28.5 + parent: 2 + - uid: 10767 + components: + - type: Transform + pos: 80.5,-28.5 + parent: 2 + - uid: 10768 + components: + - type: Transform + pos: 54.5,28.5 + parent: 2 + - uid: 10769 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 10770 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 + - uid: 10771 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 + - uid: 10772 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 10774 + components: + - type: Transform + pos: 76.5,46.5 + parent: 2 + - uid: 10777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-22.5 + parent: 2 + - uid: 10778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-23.5 + parent: 2 + - uid: 10779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-24.5 + parent: 2 + - uid: 10780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-25.5 + parent: 2 + - uid: 10781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-27.5 + parent: 2 + - uid: 10782 + components: + - type: Transform + pos: 86.5,-28.5 + parent: 2 + - uid: 10783 + components: + - type: Transform + pos: 85.5,-28.5 + parent: 2 + - uid: 10784 + components: + - type: Transform + pos: 84.5,-28.5 + parent: 2 + - uid: 10785 + components: + - type: Transform + pos: 83.5,-28.5 + parent: 2 + - uid: 10786 + components: + - type: Transform + pos: 82.5,-28.5 + parent: 2 + - uid: 10787 + components: + - type: Transform + pos: 81.5,-28.5 + parent: 2 + - uid: 10788 + components: + - type: Transform + pos: 87.5,-28.5 + parent: 2 + - uid: 10789 + components: + - type: Transform + pos: 88.5,-28.5 + parent: 2 + - uid: 10790 + components: + - type: Transform + pos: 89.5,-28.5 + parent: 2 + - uid: 10791 + components: + - type: Transform + pos: 90.5,-28.5 + parent: 2 + - uid: 10792 + components: + - type: Transform + pos: 90.5,-27.5 + parent: 2 + - uid: 10793 + components: + - type: Transform + pos: 90.5,-26.5 + parent: 2 + - uid: 10794 + components: + - type: Transform + pos: 90.5,-25.5 + parent: 2 + - uid: 10795 + components: + - type: Transform + pos: 90.5,-24.5 + parent: 2 + - uid: 10796 + components: + - type: Transform + pos: 89.5,-24.5 + parent: 2 + - uid: 10797 + components: + - type: Transform + pos: 88.5,-24.5 + parent: 2 + - uid: 10798 + components: + - type: Transform + pos: 87.5,-24.5 + parent: 2 + - uid: 10799 + components: + - type: Transform + pos: 49.5,28.5 + parent: 2 + - uid: 10800 + components: + - type: Transform + pos: 73.5,45.5 + parent: 2 + - uid: 10801 + components: + - type: Transform + pos: 73.5,44.5 + parent: 2 + - uid: 10802 + components: + - type: Transform + pos: 73.5,42.5 + parent: 2 + - uid: 10803 + components: + - type: Transform + pos: 75.5,46.5 + parent: 2 + - uid: 10804 + components: + - type: Transform + pos: 74.5,46.5 + parent: 2 + - uid: 10805 + components: + - type: Transform + pos: 73.5,46.5 + parent: 2 + - uid: 10806 + components: + - type: Transform + pos: 51.5,28.5 + parent: 2 + - uid: 10807 + components: + - type: Transform + pos: 49.5,26.5 + parent: 2 + - uid: 10808 + components: + - type: Transform + pos: 83.5,35.5 + parent: 2 + - uid: 10809 + components: + - type: Transform + pos: 87.5,35.5 + parent: 2 + - uid: 10810 + components: + - type: Transform + pos: 87.5,50.5 + parent: 2 + - uid: 10811 + components: + - type: Transform + pos: 92.5,-23.5 + parent: 2 + - uid: 10812 + components: + - type: Transform + pos: 92.5,-24.5 + parent: 2 + - uid: 10813 + components: + - type: Transform + pos: 91.5,-24.5 + parent: 2 + - uid: 10814 + components: + - type: Transform + pos: 53.5,28.5 + parent: 2 + - uid: 10815 + components: + - type: Transform + pos: 89.5,-16.5 + parent: 2 + - uid: 10816 + components: + - type: Transform + pos: 93.5,-16.5 + parent: 2 + - uid: 10817 + components: + - type: Transform + pos: 97.5,-16.5 + parent: 2 + - uid: 10818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 102.5,-16.5 + parent: 2 + - uid: 10819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 104.5,-16.5 + parent: 2 + - uid: 10820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 104.5,-17.5 + parent: 2 + - uid: 10821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 104.5,-18.5 + parent: 2 + - uid: 10822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 104.5,-19.5 + parent: 2 + - uid: 10823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 100.5,-16.5 + parent: 2 + - uid: 10824 + components: + - type: Transform + pos: 87.5,52.5 + parent: 2 + - uid: 10825 + components: + - type: Transform + pos: 87.5,53.5 + parent: 2 + - uid: 10826 + components: + - type: Transform + pos: 85.5,52.5 + parent: 2 + - uid: 10827 + components: + - type: Transform + pos: 85.5,53.5 + parent: 2 + - uid: 10828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-46.5 + parent: 2 + - uid: 10829 + components: + - type: Transform + pos: 76.5,-43.5 + parent: 2 + - uid: 10830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-44.5 + parent: 2 + - uid: 10831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-43.5 + parent: 2 + - uid: 10832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-43.5 + parent: 2 + - uid: 10833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-43.5 + parent: 2 + - uid: 10834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,-43.5 + parent: 2 + - uid: 10835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,-43.5 + parent: 2 + - uid: 10836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-43.5 + parent: 2 + - uid: 10837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,-43.5 + parent: 2 + - uid: 10838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,-44.5 + parent: 2 + - uid: 10839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,-45.5 + parent: 2 + - uid: 10840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,-46.5 + parent: 2 + - uid: 10841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,-47.5 + parent: 2 + - uid: 10842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,-48.5 + parent: 2 + - uid: 10843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-48.5 + parent: 2 + - uid: 10844 + components: + - type: Transform + pos: 75.5,-43.5 + parent: 2 + - uid: 10845 + components: + - type: Transform + pos: 74.5,-43.5 + parent: 2 + - uid: 10846 + components: + - type: Transform + pos: 73.5,-43.5 + parent: 2 + - uid: 10847 + components: + - type: Transform + pos: 72.5,-43.5 + parent: 2 + - uid: 10848 + components: + - type: Transform + pos: 72.5,-44.5 + parent: 2 + - uid: 10849 + components: + - type: Transform + pos: 72.5,-45.5 + parent: 2 + - uid: 10850 + components: + - type: Transform + pos: 72.5,-46.5 + parent: 2 + - uid: 10851 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 10852 + components: + - type: Transform + pos: 60.5,30.5 + parent: 2 + - uid: 10853 + components: + - type: Transform + pos: 56.5,25.5 + parent: 2 + - uid: 10854 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 10855 + components: + - type: Transform + pos: 49.5,21.5 + parent: 2 + - uid: 10856 + components: + - type: Transform + pos: 49.5,22.5 + parent: 2 + - uid: 10857 + components: + - type: Transform + pos: 49.5,23.5 + parent: 2 + - uid: 10858 + components: + - type: Transform + pos: 49.5,24.5 + parent: 2 + - uid: 10859 + components: + - type: Transform + pos: 49.5,25.5 + parent: 2 + - uid: 10860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,34.5 + parent: 2 + - uid: 10861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,28.5 + parent: 2 + - uid: 10862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,33.5 + parent: 2 + - uid: 10863 + components: + - type: Transform + pos: 82.5,1.5 + parent: 2 + - uid: 10864 + components: + - type: Transform + pos: 82.5,0.5 + parent: 2 + - uid: 10865 + components: + - type: Transform + pos: 82.5,3.5 + parent: 2 + - uid: 10866 + components: + - type: Transform + pos: 82.5,2.5 + parent: 2 + - uid: 10867 + components: + - type: Transform + pos: 82.5,-1.5 + parent: 2 + - uid: 10868 + components: + - type: Transform + pos: 82.5,-0.5 + parent: 2 + - uid: 10869 + components: + - type: Transform + pos: 82.5,-3.5 + parent: 2 + - uid: 10870 + components: + - type: Transform + pos: 82.5,-2.5 + parent: 2 + - uid: 10871 + components: + - type: Transform + pos: 55.5,28.5 + parent: 2 + - uid: 10872 + components: + - type: Transform + pos: 56.5,28.5 + parent: 2 + - uid: 10873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,35.5 + parent: 2 + - uid: 10874 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 10875 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - uid: 10876 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 2 + - uid: 10877 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - uid: 10878 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - uid: 10879 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 10880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,29.5 + parent: 2 + - uid: 10881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,29.5 + parent: 2 + - uid: 10882 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - uid: 10883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,29.5 + parent: 2 + - uid: 10884 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - uid: 10885 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 2 + - uid: 10886 + components: + - type: Transform + pos: 69.5,-23.5 + parent: 2 + - uid: 10887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,28.5 + parent: 2 + - uid: 10888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,28.5 + parent: 2 + - uid: 10889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,28.5 + parent: 2 + - uid: 10890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,29.5 + parent: 2 + - uid: 10891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,30.5 + parent: 2 + - uid: 10892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,31.5 + parent: 2 + - uid: 10893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,32.5 + parent: 2 + - uid: 10894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,33.5 + parent: 2 + - uid: 10895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,34.5 + parent: 2 + - uid: 10896 + components: + - type: Transform + pos: 83.5,0.5 + parent: 2 + - uid: 10897 + components: + - type: Transform + pos: 85.5,0.5 + parent: 2 + - uid: 10898 + components: + - type: Transform + pos: 85.5,-3.5 + parent: 2 + - uid: 10899 + components: + - type: Transform + pos: 83.5,-3.5 + parent: 2 + - uid: 10900 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 2 + - uid: 10901 + components: + - type: Transform + pos: 67.5,-23.5 + parent: 2 + - uid: 10902 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 2 + - uid: 10903 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 10904 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - uid: 10905 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 10906 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 2 + - uid: 10907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-31.5 + parent: 2 + - uid: 10908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-31.5 + parent: 2 + - uid: 10909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-31.5 + parent: 2 + - uid: 10910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-30.5 + parent: 2 + - uid: 10911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-29.5 + parent: 2 + - uid: 10912 + components: + - type: Transform + pos: 92.5,-11.5 + parent: 2 + - uid: 10913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,30.5 + parent: 2 + - uid: 10914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,29.5 + parent: 2 + - uid: 10915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,30.5 + parent: 2 + - uid: 10916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,31.5 + parent: 2 + - uid: 10917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,31.5 + parent: 2 + - uid: 10918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,31.5 + parent: 2 + - uid: 10919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,18.5 + parent: 2 + - uid: 10920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,18.5 + parent: 2 + - uid: 10921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,18.5 + parent: 2 + - uid: 10922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,17.5 + parent: 2 + - uid: 10923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-30.5 + parent: 2 + - uid: 10924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-29.5 + parent: 2 + - uid: 10925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-31.5 + parent: 2 + - uid: 12168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,46.5 + parent: 2 + - uid: 12215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,7.5 + parent: 2 + - uid: 12216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,6.5 + parent: 2 + - uid: 12217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,5.5 + parent: 2 + - uid: 12218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,9.5 + parent: 2 + - uid: 13063 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 13182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 2 + - uid: 13438 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 2 + - uid: 13439 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 2 + - uid: 13914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-46.5 + parent: 2 + - uid: 14700 + components: + - type: Transform + pos: 45.5,26.5 + parent: 2 + - uid: 14701 + components: + - type: Transform + pos: 44.5,26.5 + parent: 2 + - uid: 14702 + components: + - type: Transform + pos: 43.5,26.5 + parent: 2 + - uid: 14703 + components: + - type: Transform + pos: 42.5,26.5 + parent: 2 + - uid: 14704 + components: + - type: Transform + pos: 41.5,26.5 + parent: 2 + - uid: 14705 + components: + - type: Transform + pos: 40.5,26.5 + parent: 2 + - uid: 14706 + components: + - type: Transform + pos: 39.5,26.5 + parent: 2 + - uid: 14707 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - uid: 14708 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - uid: 14709 + components: + - type: Transform + pos: 39.5,23.5 + parent: 2 + - uid: 14710 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 + - uid: 14711 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 14712 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 987 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - uid: 1722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-28.5 + parent: 2 + - uid: 1885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-28.5 + parent: 2 + - uid: 1886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-28.5 + parent: 2 + - uid: 1889 + components: + - type: Transform + pos: 48.5,28.5 + parent: 2 + - uid: 2027 + components: + - type: Transform + pos: 41.5,16.5 + parent: 2 + - uid: 2049 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 2050 + components: + - type: Transform + pos: 46.5,30.5 + parent: 2 + - uid: 2051 + components: + - type: Transform + pos: 48.5,30.5 + parent: 2 + - uid: 2052 + components: + - type: Transform + pos: 44.5,30.5 + parent: 2 + - uid: 2053 + components: + - type: Transform + pos: 47.5,30.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: 49.5,31.5 + parent: 2 + - uid: 2055 + components: + - type: Transform + pos: 49.5,32.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + pos: 67.5,-30.5 + parent: 2 + - uid: 2386 + components: + - type: Transform + pos: 42.5,16.5 + parent: 2 + - uid: 2601 + components: + - type: Transform + pos: 86.5,-30.5 + parent: 2 + - uid: 3314 + components: + - type: Transform + pos: 34.5,29.5 + parent: 2 + - uid: 9652 + components: + - type: Transform + pos: 47.5,-11.5 + parent: 2 + - uid: 9653 + components: + - type: Transform + pos: 47.5,-10.5 + parent: 2 + - uid: 9765 + components: + - type: Transform + pos: 47.5,-9.5 + parent: 2 + - uid: 10776 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - uid: 10927 + components: + - type: Transform + pos: -55.5,8.5 + parent: 2 + - uid: 10928 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 10930 + components: + - type: Transform + pos: -54.5,-5.5 + parent: 2 + - uid: 10931 + components: + - type: Transform + pos: -55.5,-6.5 + parent: 2 + - uid: 10932 + components: + - type: Transform + pos: 59.5,-1.5 + parent: 2 + - uid: 10933 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 2 + - uid: 10934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-6.5 + parent: 2 + - uid: 10935 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 2 + - uid: 10936 + components: + - type: Transform + pos: 39.5,-1.5 + parent: 2 + - uid: 10937 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 2 + - uid: 10938 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 2 + - uid: 10939 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - uid: 10940 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 2 + - uid: 10941 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 10942 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 10943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 2 + - uid: 10944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 2 + - uid: 10945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-7.5 + parent: 2 + - uid: 10946 + components: + - type: Transform + pos: 78.5,-32.5 + parent: 2 + - uid: 10947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-1.5 + parent: 2 + - uid: 10948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-1.5 + parent: 2 + - uid: 10949 + components: + - type: Transform + pos: -38.5,8.5 + parent: 2 + - uid: 10950 + components: + - type: Transform + pos: -57.5,-5.5 + parent: 2 + - uid: 10951 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 2 + - uid: 10952 + components: + - type: Transform + pos: -53.5,-5.5 + parent: 2 + - uid: 10953 + components: + - type: Transform + pos: -55.5,-5.5 + parent: 2 + - uid: 10954 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 10955 + components: + - type: Transform + pos: 32.5,3.5 + parent: 2 + - uid: 10956 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 10957 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 10958 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - uid: 10959 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 10960 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 10961 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 10962 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 10963 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 10964 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 + - uid: 10965 + components: + - type: Transform + pos: 24.5,3.5 + parent: 2 + - uid: 10966 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 10967 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 10968 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - uid: 10969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,5.5 + parent: 2 + - uid: 10970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,4.5 + parent: 2 + - uid: 10971 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 10972 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 10973 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 10974 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 10975 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 10976 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 10977 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 10978 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 10979 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 10980 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 10981 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 10982 + components: + - type: Transform + pos: 44.5,3.5 + parent: 2 + - uid: 10983 + components: + - type: Transform + pos: 42.5,12.5 + parent: 2 + - uid: 10985 + components: + - type: Transform + pos: -54.5,5.5 + parent: 2 + - uid: 10986 + components: + - type: Transform + pos: -55.5,9.5 + parent: 2 + - uid: 10987 + components: + - type: Transform + pos: -54.5,7.5 + parent: 2 + - uid: 10990 + components: + - type: Transform + pos: -54.5,8.5 + parent: 2 + - uid: 10991 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 2 + - uid: 10992 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 2 + - uid: 10993 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - uid: 10994 + components: + - type: Transform + pos: -58.5,-5.5 + parent: 2 + - uid: 10995 + components: + - type: Transform + pos: -59.5,-2.5 + parent: 2 + - uid: 10996 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 + - uid: 10997 + components: + - type: Transform + pos: -38.5,5.5 + parent: 2 + - uid: 10998 + components: + - type: Transform + pos: -38.5,7.5 + parent: 2 + - uid: 10999 + components: + - type: Transform + pos: -38.5,4.5 + parent: 2 + - uid: 11000 + components: + - type: Transform + pos: -26.5,4.5 + parent: 2 + - uid: 11001 + components: + - type: Transform + pos: -26.5,2.5 + parent: 2 + - uid: 11002 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 2 + - uid: 11003 + components: + - type: Transform + pos: -26.5,3.5 + parent: 2 + - uid: 11004 + components: + - type: Transform + pos: -19.5,1.5 + parent: 2 + - uid: 11005 + components: + - type: Transform + pos: -19.5,2.5 + parent: 2 + - uid: 11006 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 11007 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 2 + - uid: 11008 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 + - uid: 11009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 2 + - uid: 11010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,8.5 + parent: 2 + - uid: 11011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-6.5 + parent: 2 + - uid: 11012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-7.5 + parent: 2 + - uid: 11013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-8.5 + parent: 2 + - uid: 11014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-9.5 + parent: 2 + - uid: 11015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-6.5 + parent: 2 + - uid: 11016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-6.5 + parent: 2 + - uid: 11017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-6.5 + parent: 2 + - uid: 11018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-6.5 + parent: 2 + - uid: 11019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-5.5 + parent: 2 + - uid: 11020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-4.5 + parent: 2 + - uid: 11021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 2 + - uid: 11022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-2.5 + parent: 2 + - uid: 11023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-2.5 + parent: 2 + - uid: 11024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-3.5 + parent: 2 + - uid: 11025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-4.5 + parent: 2 + - uid: 11026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-5.5 + parent: 2 + - uid: 11027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 2 + - uid: 11028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-6.5 + parent: 2 + - uid: 11029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-6.5 + parent: 2 + - uid: 11030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-6.5 + parent: 2 + - uid: 11031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-10.5 + parent: 2 + - uid: 11032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 2 + - uid: 11033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-10.5 + parent: 2 + - uid: 11034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-10.5 + parent: 2 + - uid: 11035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 2 + - uid: 11036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-10.5 + parent: 2 + - uid: 11037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 2 + - uid: 11038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 2 + - uid: 11039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 2 + - uid: 11040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 2 + - uid: 11041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-4.5 + parent: 2 + - uid: 11042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,7.5 + parent: 2 + - uid: 11043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 2 + - uid: 11044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 2 + - uid: 11045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,11.5 + parent: 2 + - uid: 11046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,11.5 + parent: 2 + - uid: 11047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,11.5 + parent: 2 + - uid: 11048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 2 + - uid: 11049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,11.5 + parent: 2 + - uid: 11050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,11.5 + parent: 2 + - uid: 11051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,11.5 + parent: 2 + - uid: 11052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 2 + - uid: 11053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,11.5 + parent: 2 + - uid: 11054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,11.5 + parent: 2 + - uid: 11055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,11.5 + parent: 2 + - uid: 11056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,10.5 + parent: 2 + - uid: 11057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,9.5 + parent: 2 + - uid: 11058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,7.5 + parent: 2 + - uid: 11059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,7.5 + parent: 2 + - uid: 11060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,7.5 + parent: 2 + - uid: 11061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,7.5 + parent: 2 + - uid: 11062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,7.5 + parent: 2 + - uid: 11063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,7.5 + parent: 2 + - uid: 11064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,9.5 + parent: 2 + - uid: 11065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,8.5 + parent: 2 + - uid: 11066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,10.5 + parent: 2 + - uid: 11067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,11.5 + parent: 2 + - uid: 11068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,11.5 + parent: 2 + - uid: 11069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,11.5 + parent: 2 + - uid: 11070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,11.5 + parent: 2 + - uid: 11071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,10.5 + parent: 2 + - uid: 11072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,9.5 + parent: 2 + - uid: 11073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,8.5 + parent: 2 + - uid: 11074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,7.5 + parent: 2 + - uid: 11075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,6.5 + parent: 2 + - uid: 11076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,5.5 + parent: 2 + - uid: 11077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,4.5 + parent: 2 + - uid: 11078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,6.5 + parent: 2 + - uid: 11079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,7.5 + parent: 2 + - uid: 11080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,8.5 + parent: 2 + - uid: 11082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,10.5 + parent: 2 + - uid: 11083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,8.5 + parent: 2 + - uid: 11084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,12.5 + parent: 2 + - uid: 11085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,13.5 + parent: 2 + - uid: 11086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,12.5 + parent: 2 + - uid: 11087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,8.5 + parent: 2 + - uid: 11088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,8.5 + parent: 2 + - uid: 11089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,8.5 + parent: 2 + - uid: 11090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,8.5 + parent: 2 + - uid: 11091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,8.5 + parent: 2 + - uid: 11092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,9.5 + parent: 2 + - uid: 11093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,10.5 + parent: 2 + - uid: 11094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,11.5 + parent: 2 + - uid: 11095 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 11096 + components: + - type: Transform + pos: 39.5,15.5 + parent: 2 + - uid: 11097 + components: + - type: Transform + pos: 39.5,12.5 + parent: 2 + - uid: 11098 + components: + - type: Transform + pos: 41.5,12.5 + parent: 2 + - uid: 11099 + components: + - type: Transform + pos: 43.5,12.5 + parent: 2 + - uid: 11100 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - uid: 11101 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 11102 + components: + - type: Transform + pos: 42.5,8.5 + parent: 2 + - uid: 11103 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - uid: 11104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 2 + - uid: 11105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 2 + - uid: 11106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-9.5 + parent: 2 + - uid: 11107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-9.5 + parent: 2 + - uid: 11108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-9.5 + parent: 2 + - uid: 11109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-6.5 + parent: 2 + - uid: 11110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-6.5 + parent: 2 + - uid: 11111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 2 + - uid: 11112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-9.5 + parent: 2 + - uid: 11113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-9.5 + parent: 2 + - uid: 11114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-10.5 + parent: 2 + - uid: 11115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,11.5 + parent: 2 + - uid: 11116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-20.5 + parent: 2 + - uid: 11117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-14.5 + parent: 2 + - uid: 11118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-16.5 + parent: 2 + - uid: 11119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-15.5 + parent: 2 + - uid: 11120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-18.5 + parent: 2 + - uid: 11121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-19.5 + parent: 2 + - uid: 11122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-5.5 + parent: 2 + - uid: 11123 + components: + - type: Transform + pos: 52.5,-5.5 + parent: 2 + - uid: 11124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-17.5 + parent: 2 + - uid: 11125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-17.5 + parent: 2 + - uid: 11126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-17.5 + parent: 2 + - uid: 11127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-17.5 + parent: 2 + - uid: 11128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-11.5 + parent: 2 + - uid: 11129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-5.5 + parent: 2 + - uid: 11130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,1.5 + parent: 2 + - uid: 11131 + components: + - type: Transform + pos: 53.5,11.5 + parent: 2 + - uid: 11132 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 11133 + components: + - type: Transform + pos: 53.5,14.5 + parent: 2 + - uid: 11134 + components: + - type: Transform + pos: 63.5,18.5 + parent: 2 + - uid: 11135 + components: + - type: Transform + pos: 62.5,18.5 + parent: 2 + - uid: 11136 + components: + - type: Transform + pos: -5.5,8.5 + parent: 2 + - uid: 11137 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 + - uid: 11138 + components: + - type: Transform + pos: -5.5,6.5 + parent: 2 + - uid: 11139 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 11140 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 + - uid: 11141 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 + - uid: 11142 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 11143 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 11144 + components: + - type: Transform + pos: -1.5,11.5 + parent: 2 + - uid: 11145 + components: + - type: Transform + pos: -2.5,11.5 + parent: 2 + - uid: 11146 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - uid: 11147 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 11148 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 11149 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - uid: 11150 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 11151 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 11152 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - uid: 11153 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 + - uid: 11154 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 11155 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 11156 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 + - uid: 11157 + components: + - type: Transform + pos: -6.5,6.5 + parent: 2 + - uid: 11158 + components: + - type: Transform + pos: -7.5,6.5 + parent: 2 + - uid: 11159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 2 + - uid: 11160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 2 + - uid: 11161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 2 + - uid: 11162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 2 + - uid: 11163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 2 + - uid: 11164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 2 + - uid: 11165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 2 + - uid: 11166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 + - uid: 11167 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 + - uid: 11168 + components: + - type: Transform + pos: 61.5,20.5 + parent: 2 + - uid: 11169 + components: + - type: Transform + pos: 60.5,4.5 + parent: 2 + - uid: 11170 + components: + - type: Transform + pos: 60.5,5.5 + parent: 2 + - uid: 11171 + components: + - type: Transform + pos: 60.5,6.5 + parent: 2 + - uid: 11172 + components: + - type: Transform + pos: 60.5,7.5 + parent: 2 + - uid: 11173 + components: + - type: Transform + pos: 54.5,10.5 + parent: 2 + - uid: 11174 + components: + - type: Transform + pos: 55.5,10.5 + parent: 2 + - uid: 11175 + components: + - type: Transform + pos: 57.5,10.5 + parent: 2 + - uid: 11176 + components: + - type: Transform + pos: 58.5,10.5 + parent: 2 + - uid: 11177 + components: + - type: Transform + pos: 59.5,10.5 + parent: 2 + - uid: 11178 + components: + - type: Transform + pos: 60.5,10.5 + parent: 2 + - uid: 11179 + components: + - type: Transform + pos: 60.5,9.5 + parent: 2 + - uid: 11180 + components: + - type: Transform + pos: 65.5,18.5 + parent: 2 + - uid: 11181 + components: + - type: Transform + pos: 69.5,9.5 + parent: 2 + - uid: 11182 + components: + - type: Transform + pos: 70.5,11.5 + parent: 2 + - uid: 11183 + components: + - type: Transform + pos: 69.5,11.5 + parent: 2 + - uid: 11184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,8.5 + parent: 2 + - uid: 11185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,10.5 + parent: 2 + - uid: 11186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,15.5 + parent: 2 + - uid: 11187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,15.5 + parent: 2 + - uid: 11188 + components: + - type: Transform + pos: 71.5,-1.5 + parent: 2 + - uid: 11189 + components: + - type: Transform + pos: 72.5,-1.5 + parent: 2 + - uid: 11190 + components: + - type: Transform + pos: 73.5,-1.5 + parent: 2 + - uid: 11191 + components: + - type: Transform + pos: 74.5,-1.5 + parent: 2 + - uid: 11192 + components: + - type: Transform + pos: 75.5,-1.5 + parent: 2 + - uid: 11193 + components: + - type: Transform + pos: 7.5,12.5 + parent: 2 + - uid: 11194 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 11195 + components: + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 11196 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 11197 + components: + - type: Transform + pos: 76.5,-1.5 + parent: 2 + - uid: 11198 + components: + - type: Transform + pos: 77.5,-1.5 + parent: 2 + - uid: 11199 + components: + - type: Transform + pos: 77.5,-2.5 + parent: 2 + - uid: 11200 + components: + - type: Transform + pos: 77.5,-3.5 + parent: 2 + - uid: 11201 + components: + - type: Transform + pos: 77.5,-4.5 + parent: 2 + - uid: 11202 + components: + - type: Transform + pos: 77.5,-5.5 + parent: 2 + - uid: 11203 + components: + - type: Transform + pos: 77.5,-9.5 + parent: 2 + - uid: 11204 + components: + - type: Transform + pos: 77.5,-10.5 + parent: 2 + - uid: 11205 + components: + - type: Transform + pos: 77.5,-11.5 + parent: 2 + - uid: 11206 + components: + - type: Transform + pos: 77.5,-12.5 + parent: 2 + - uid: 11207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-8.5 + parent: 2 + - uid: 11208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-10.5 + parent: 2 + - uid: 11209 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 11210 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - uid: 11211 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 + - uid: 11212 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 11213 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 11214 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 2 + - uid: 11215 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 11216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-18.5 + parent: 2 + - uid: 11217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-18.5 + parent: 2 + - uid: 11218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-18.5 + parent: 2 + - uid: 11219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-18.5 + parent: 2 + - uid: 11220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-18.5 + parent: 2 + - uid: 11221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,-18.5 + parent: 2 + - uid: 11222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-18.5 + parent: 2 + - uid: 11223 + components: + - type: Transform + pos: 87.5,-18.5 + parent: 2 + - uid: 11224 + components: + - type: Transform + pos: 86.5,-18.5 + parent: 2 + - uid: 11225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-8.5 + parent: 2 + - uid: 11227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-5.5 + parent: 2 + - uid: 11229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-22.5 + parent: 2 + - uid: 11230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-22.5 + parent: 2 + - uid: 11231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-22.5 + parent: 2 + - uid: 11232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-20.5 + parent: 2 + - uid: 11233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-22.5 + parent: 2 + - uid: 11234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,15.5 + parent: 2 + - uid: 11235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,15.5 + parent: 2 + - uid: 11236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,15.5 + parent: 2 + - uid: 11237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,15.5 + parent: 2 + - uid: 11238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,19.5 + parent: 2 + - uid: 11239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,20.5 + parent: 2 + - uid: 11240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,21.5 + parent: 2 + - uid: 11241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,22.5 + parent: 2 + - uid: 11242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,18.5 + parent: 2 + - uid: 11243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,16.5 + parent: 2 + - uid: 11244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,22.5 + parent: 2 + - uid: 11245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,22.5 + parent: 2 + - uid: 11246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,22.5 + parent: 2 + - uid: 11247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-5.5 + parent: 2 + - uid: 11248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-9.5 + parent: 2 + - uid: 11249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-5.5 + parent: 2 + - uid: 11250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-3.5 + parent: 2 + - uid: 11251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-5.5 + parent: 2 + - uid: 11252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-5.5 + parent: 2 + - uid: 11253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-3.5 + parent: 2 + - uid: 11254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-2.5 + parent: 2 + - uid: 11255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-4.5 + parent: 2 + - uid: 11256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-3.5 + parent: 2 + - uid: 11262 + components: + - type: Transform + pos: 88.5,23.5 + parent: 2 + - uid: 11263 + components: + - type: Transform + pos: 88.5,24.5 + parent: 2 + - uid: 11264 + components: + - type: Transform + pos: 88.5,25.5 + parent: 2 + - uid: 11265 + components: + - type: Transform + pos: 88.5,26.5 + parent: 2 + - uid: 11266 + components: + - type: Transform + pos: 88.5,28.5 + parent: 2 + - uid: 11267 + components: + - type: Transform + pos: 88.5,32.5 + parent: 2 + - uid: 11268 + components: + - type: Transform + pos: 88.5,33.5 + parent: 2 + - uid: 11269 + components: + - type: Transform + pos: 67.5,47.5 + parent: 2 + - uid: 11270 + components: + - type: Transform + pos: 67.5,46.5 + parent: 2 + - uid: 11271 + components: + - type: Transform + pos: 67.5,45.5 + parent: 2 + - uid: 11272 + components: + - type: Transform + pos: 67.5,44.5 + parent: 2 + - uid: 11273 + components: + - type: Transform + pos: 67.5,42.5 + parent: 2 + - uid: 11274 + components: + - type: Transform + pos: 62.5,46.5 + parent: 2 + - uid: 11275 + components: + - type: Transform + pos: 60.5,44.5 + parent: 2 + - uid: 11276 + components: + - type: Transform + pos: 61.5,44.5 + parent: 2 + - uid: 11277 + components: + - type: Transform + pos: 62.5,44.5 + parent: 2 + - uid: 11278 + components: + - type: Transform + pos: 62.5,42.5 + parent: 2 + - uid: 11279 + components: + - type: Transform + pos: 62.5,41.5 + parent: 2 + - uid: 11280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-5.5 + parent: 2 + - uid: 11281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-11.5 + parent: 2 + - uid: 11282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-9.5 + parent: 2 + - uid: 11283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-9.5 + parent: 2 + - uid: 11284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-9.5 + parent: 2 + - uid: 11285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-9.5 + parent: 2 + - uid: 11286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-9.5 + parent: 2 + - uid: 11287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-10.5 + parent: 2 + - uid: 11288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-11.5 + parent: 2 + - uid: 11289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-12.5 + parent: 2 + - uid: 11290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-11.5 + parent: 2 + - uid: 11291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-11.5 + parent: 2 + - uid: 11292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-12.5 + parent: 2 + - uid: 11293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,29.5 + parent: 2 + - uid: 11294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,30.5 + parent: 2 + - uid: 11295 + components: + - type: Transform + pos: 83.5,-5.5 + parent: 2 + - uid: 11296 + components: + - type: Transform + pos: 83.5,-8.5 + parent: 2 + - uid: 11297 + components: + - type: Transform + pos: 84.5,-8.5 + parent: 2 + - uid: 11298 + components: + - type: Transform + pos: 85.5,-8.5 + parent: 2 + - uid: 11299 + components: + - type: Transform + pos: 88.5,-9.5 + parent: 2 + - uid: 11300 + components: + - type: Transform + pos: 76.5,-35.5 + parent: 2 + - uid: 11301 + components: + - type: Transform + pos: 77.5,-39.5 + parent: 2 + - uid: 11302 + components: + - type: Transform + pos: 78.5,-39.5 + parent: 2 + - uid: 11303 + components: + - type: Transform + pos: 78.5,-40.5 + parent: 2 + - uid: 11304 + components: + - type: Transform + pos: 77.5,-35.5 + parent: 2 + - uid: 11305 + components: + - type: Transform + pos: 78.5,-35.5 + parent: 2 + - uid: 11306 + components: + - type: Transform + pos: 79.5,-32.5 + parent: 2 + - uid: 11307 + components: + - type: Transform + pos: 80.5,-32.5 + parent: 2 + - uid: 11308 + components: + - type: Transform + pos: 81.5,-32.5 + parent: 2 + - uid: 11309 + components: + - type: Transform + pos: 82.5,-32.5 + parent: 2 + - uid: 11310 + components: + - type: Transform + pos: 81.5,-35.5 + parent: 2 + - uid: 11311 + components: + - type: Transform + pos: 82.5,-35.5 + parent: 2 + - uid: 11312 + components: + - type: Transform + pos: 78.5,-29.5 + parent: 2 + - uid: 11313 + components: + - type: Transform + pos: 78.5,-30.5 + parent: 2 + - uid: 11314 + components: + - type: Transform + pos: 82.5,-36.5 + parent: 2 + - uid: 11315 + components: + - type: Transform + pos: 82.5,-37.5 + parent: 2 + - uid: 11316 + components: + - type: Transform + pos: 82.5,-38.5 + parent: 2 + - uid: 11317 + components: + - type: Transform + pos: 82.5,-39.5 + parent: 2 + - uid: 11318 + components: + - type: Transform + pos: 82.5,-40.5 + parent: 2 + - uid: 11319 + components: + - type: Transform + pos: 86.5,-42.5 + parent: 2 + - uid: 11320 + components: + - type: Transform + pos: 86.5,-41.5 + parent: 2 + - uid: 11321 + components: + - type: Transform + pos: 86.5,-40.5 + parent: 2 + - uid: 11322 + components: + - type: Transform + pos: 85.5,-40.5 + parent: 2 + - uid: 11323 + components: + - type: Transform + pos: 84.5,-40.5 + parent: 2 + - uid: 11324 + components: + - type: Transform + pos: 75.5,-42.5 + parent: 2 + - uid: 11325 + components: + - type: Transform + pos: 75.5,-41.5 + parent: 2 + - uid: 11326 + components: + - type: Transform + pos: 74.5,-35.5 + parent: 2 + - uid: 11327 + components: + - type: Transform + pos: 74.5,-34.5 + parent: 2 + - uid: 11328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-38.5 + parent: 2 + - uid: 11329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-37.5 + parent: 2 + - uid: 11330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-36.5 + parent: 2 + - uid: 11331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-35.5 + parent: 2 + - uid: 11332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-34.5 + parent: 2 + - uid: 11333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-33.5 + parent: 2 + - uid: 11334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-32.5 + parent: 2 + - uid: 11335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-32.5 + parent: 2 + - uid: 11336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-32.5 + parent: 2 + - uid: 11337 + components: + - type: Transform + pos: 88.5,-8.5 + parent: 2 + - uid: 11338 + components: + - type: Transform + pos: 88.5,-10.5 + parent: 2 + - uid: 11339 + components: + - type: Transform + pos: 84.5,-5.5 + parent: 2 + - uid: 11340 + components: + - type: Transform + pos: 88.5,-7.5 + parent: 2 + - uid: 12094 + components: + - type: Transform + pos: 84.5,-7.5 + parent: 2 + - uid: 12220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,9.5 + parent: 2 + - uid: 12232 + components: + - type: Transform + pos: 84.5,-6.5 + parent: 2 + - uid: 12251 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 12252 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 12445 + components: + - type: Transform + pos: 60.5,31.5 + parent: 2 + - uid: 12446 + components: + - type: Transform + pos: 54.5,33.5 + parent: 2 + - uid: 12468 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - uid: 12469 + components: + - type: Transform + pos: 42.5,14.5 + parent: 2 + - uid: 12524 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 12533 + components: + - type: Transform + pos: 42.5,30.5 + parent: 2 + - uid: 12541 + components: + - type: Transform + pos: 49.5,33.5 + parent: 2 + - uid: 12542 + components: + - type: Transform + pos: 49.5,30.5 + parent: 2 + - uid: 13121 + components: + - type: Transform + pos: 43.5,-13.5 + parent: 2 + - uid: 13169 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 2 + - uid: 13170 + components: + - type: Transform + pos: 39.5,-12.5 + parent: 2 + - uid: 13172 + components: + - type: Transform + pos: 47.5,-20.5 + parent: 2 + - uid: 13175 + components: + - type: Transform + pos: 46.5,-16.5 + parent: 2 + - uid: 13200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-43.5 + parent: 2 + - uid: 13208 + components: + - type: Transform + pos: 39.5,-25.5 + parent: 2 + - uid: 13213 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 2 + - uid: 13214 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 2 + - uid: 13215 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 2 + - uid: 13216 + components: + - type: Transform + pos: 38.5,-25.5 + parent: 2 + - uid: 13220 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 2 + - uid: 13227 + components: + - type: Transform + pos: 34.5,-24.5 + parent: 2 + - uid: 13228 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 2 + - uid: 13229 + components: + - type: Transform + pos: 34.5,-22.5 + parent: 2 + - uid: 13231 + components: + - type: Transform + pos: 40.5,-22.5 + parent: 2 + - uid: 13232 + components: + - type: Transform + pos: 40.5,-21.5 + parent: 2 + - uid: 13233 + components: + - type: Transform + pos: 40.5,-24.5 + parent: 2 + - uid: 13234 + components: + - type: Transform + pos: 40.5,-25.5 + parent: 2 + - uid: 13361 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 2 + - uid: 13368 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 2 + - uid: 13369 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 2 + - uid: 13370 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 13371 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 13372 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 + - uid: 13428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-28.5 + parent: 2 + - uid: 13429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-27.5 + parent: 2 + - uid: 13430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-26.5 + parent: 2 + - uid: 13431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-26.5 + parent: 2 + - uid: 13432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-26.5 + parent: 2 + - uid: 13433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-26.5 + parent: 2 + - uid: 13435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-28.5 + parent: 2 + - uid: 13450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-27.5 + parent: 2 + - uid: 13453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-27.5 + parent: 2 + - uid: 13454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-28.5 + parent: 2 + - uid: 13455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-29.5 + parent: 2 + - uid: 13456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-27.5 + parent: 2 + - uid: 13457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-26.5 + parent: 2 + - uid: 13462 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 2 + - uid: 13463 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 2 + - uid: 13464 + components: + - type: Transform + pos: 31.5,-24.5 + parent: 2 + - uid: 13465 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 2 + - uid: 13466 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 2 + - uid: 13467 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 2 + - uid: 13468 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 2 + - uid: 13469 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 2 + - uid: 13470 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 2 + - uid: 13473 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 2 + - uid: 13474 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - uid: 13475 + components: + - type: Transform + pos: 30.5,-27.5 + parent: 2 + - uid: 13529 + components: + - type: Transform + pos: 42.5,-29.5 + parent: 2 + - uid: 13530 + components: + - type: Transform + pos: 42.5,-28.5 + parent: 2 + - uid: 13531 + components: + - type: Transform + pos: 42.5,-27.5 + parent: 2 + - uid: 13532 + components: + - type: Transform + pos: 43.5,-27.5 + parent: 2 + - uid: 13533 + components: + - type: Transform + pos: 44.5,-27.5 + parent: 2 + - uid: 13534 + components: + - type: Transform + pos: 45.5,-27.5 + parent: 2 + - uid: 13535 + components: + - type: Transform + pos: 46.5,-27.5 + parent: 2 + - uid: 13536 + components: + - type: Transform + pos: 47.5,-27.5 + parent: 2 + - uid: 13537 + components: + - type: Transform + pos: 48.5,-27.5 + parent: 2 + - uid: 13538 + components: + - type: Transform + pos: 48.5,-28.5 + parent: 2 + - uid: 13539 + components: + - type: Transform + pos: 48.5,-29.5 + parent: 2 + - uid: 13540 + components: + - type: Transform + pos: 48.5,-30.5 + parent: 2 + - uid: 13541 + components: + - type: Transform + pos: 48.5,-31.5 + parent: 2 + - uid: 13572 + components: + - type: Transform + pos: 41.5,-29.5 + parent: 2 + - uid: 13573 + components: + - type: Transform + pos: 38.5,-30.5 + parent: 2 + - uid: 13574 + components: + - type: Transform + pos: 38.5,-29.5 + parent: 2 + - uid: 13575 + components: + - type: Transform + pos: 38.5,-28.5 + parent: 2 + - uid: 13586 + components: + - type: Transform + pos: 42.5,-26.5 + parent: 2 + - uid: 13587 + components: + - type: Transform + pos: 42.5,-25.5 + parent: 2 + - uid: 13597 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 13598 + components: + - type: Transform + pos: 49.5,-23.5 + parent: 2 + - uid: 13599 + components: + - type: Transform + pos: 49.5,-27.5 + parent: 2 + - uid: 13600 + components: + - type: Transform + pos: 49.5,-24.5 + parent: 2 + - uid: 13601 + components: + - type: Transform + pos: 49.5,-25.5 + parent: 2 + - uid: 13616 + components: + - type: Transform + pos: 45.5,-21.5 + parent: 2 + - uid: 13703 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 13986 + components: + - type: Transform + pos: 67.5,-31.5 + parent: 2 + - uid: 13987 + components: + - type: Transform + pos: 67.5,-32.5 + parent: 2 + - uid: 13988 + components: + - type: Transform + pos: 68.5,-32.5 + parent: 2 + - uid: 13989 + components: + - type: Transform + pos: 69.5,-32.5 + parent: 2 + - uid: 13990 + components: + - type: Transform + pos: 70.5,-32.5 + parent: 2 + - uid: 13991 + components: + - type: Transform + pos: 71.5,-32.5 + parent: 2 + - uid: 14255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,-44.5 + parent: 2 + - uid: 14256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,-43.5 + parent: 2 + - uid: 14257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,-42.5 + parent: 2 + - uid: 14258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,-41.5 + parent: 2 + - uid: 14259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,-46.5 + parent: 2 + - uid: 14260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,-47.5 + parent: 2 + - uid: 14264 + components: + - type: Transform + pos: 101.5,-48.5 + parent: 2 + - uid: 14265 + components: + - type: Transform + pos: 101.5,-47.5 + parent: 2 + - uid: 14272 + components: + - type: Transform + pos: 101.5,-45.5 + parent: 2 + - uid: 14279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 103.5,-49.5 + parent: 2 + - uid: 14280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 103.5,-42.5 + parent: 2 + - uid: 14281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 100.5,-45.5 + parent: 2 + - uid: 14282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 100.5,-44.5 + parent: 2 + - uid: 14283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 100.5,-43.5 + parent: 2 + - uid: 14312 + components: + - type: Transform + pos: 102.5,-47.5 + parent: 2 + - uid: 14327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 93.5,-46.5 + parent: 2 + - uid: 14329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,-46.5 + parent: 2 + - uid: 14330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,-46.5 + parent: 2 + - uid: 14334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,-46.5 + parent: 2 + - uid: 14335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,-46.5 + parent: 2 + - uid: 14349 + components: + - type: Transform + pos: 88.5,-40.5 + parent: 2 + - uid: 14351 + components: + - type: Transform + pos: 93.5,-43.5 + parent: 2 + - uid: 14352 + components: + - type: Transform + pos: 92.5,-43.5 + parent: 2 + - uid: 14353 + components: + - type: Transform + pos: 91.5,-43.5 + parent: 2 + - uid: 14354 + components: + - type: Transform + pos: 90.5,-43.5 + parent: 2 + - uid: 14355 + components: + - type: Transform + pos: 89.5,-43.5 + parent: 2 + - uid: 14356 + components: + - type: Transform + pos: 89.5,-42.5 + parent: 2 + - uid: 14357 + components: + - type: Transform + pos: 89.5,-41.5 + parent: 2 + - uid: 14358 + components: + - type: Transform + pos: 88.5,-41.5 + parent: 2 + - uid: 14400 + components: + - type: Transform + pos: 86.5,-31.5 + parent: 2 + - uid: 14496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,-24.5 + parent: 2 + - uid: 14497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,-24.5 + parent: 2 + - uid: 14498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,-29.5 + parent: 2 + - uid: 14499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,-28.5 + parent: 2 + - uid: 14500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,-27.5 + parent: 2 + - uid: 14571 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - uid: 14583 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 + - uid: 14597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,23.5 + parent: 2 + - uid: 14598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,24.5 + parent: 2 + - uid: 14599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,25.5 + parent: 2 + - uid: 14600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,30.5 + parent: 2 + - uid: 14601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,29.5 + parent: 2 + - uid: 14602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,28.5 + parent: 2 + - uid: 14603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,27.5 + parent: 2 + - uid: 14605 + components: + - type: Transform + pos: 35.5,26.5 + parent: 2 + - uid: 14699 + components: + - type: Transform + pos: 47.5,22.5 + parent: 2 + - uid: 14791 + components: + - type: Transform + pos: 39.5,27.5 + parent: 2 + - uid: 14792 + components: + - type: Transform + pos: 39.5,28.5 + parent: 2 + - uid: 14793 + components: + - type: Transform + pos: 39.5,30.5 + parent: 2 + - uid: 14794 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - uid: 14795 + components: + - type: Transform + pos: 39.5,32.5 + parent: 2 + - uid: 14888 + components: + - type: Transform + pos: 38.5,26.5 + parent: 2 + - uid: 14889 + components: + - type: Transform + pos: 37.5,26.5 + parent: 2 + - uid: 14890 + components: + - type: Transform + pos: 36.5,26.5 + parent: 2 + - uid: 14891 + components: + - type: Transform + pos: 36.5,24.5 + parent: 2 + - uid: 14892 + components: + - type: Transform + pos: 36.5,23.5 + parent: 2 + - uid: 14986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,26.5 + parent: 2 + - uid: 14987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,25.5 + parent: 2 + - uid: 14988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,25.5 + parent: 2 + - uid: 15011 + components: + - type: Transform + pos: 34.5,28.5 + parent: 2 + - uid: 15013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,23.5 + parent: 2 + - uid: 15014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,24.5 + parent: 2 + - uid: 15015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,26.5 + parent: 2 + - uid: 15016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,27.5 + parent: 2 + - uid: 15017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,27.5 + parent: 2 + - uid: 15018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,27.5 + parent: 2 + - uid: 15019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,27.5 + parent: 2 + - uid: 15020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,27.5 + parent: 2 + - uid: 15021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,27.5 + parent: 2 + - uid: 15022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,27.5 + parent: 2 + - uid: 15062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,31.5 + parent: 2 + - uid: 15063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,30.5 + parent: 2 + - uid: 15095 + components: + - type: Transform + pos: 29.5,28.5 + parent: 2 + - uid: 15096 + components: + - type: Transform + pos: 29.5,29.5 + parent: 2 + - uid: 15097 + components: + - type: Transform + pos: 29.5,31.5 + parent: 2 +- proto: WallSolidDiagonal + entities: + - uid: 11341 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 13900 + components: + - type: Transform + pos: 71.5,-43.5 + parent: 2 + - uid: 13901 + components: + - type: Transform + pos: 65.5,-43.5 + parent: 2 + - uid: 13902 + components: + - type: Transform + pos: 59.5,-43.5 + parent: 2 +- proto: WallWood + entities: + - uid: 11342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-9.5 + parent: 2 + - uid: 11343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 2 + - uid: 11344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 2 + - uid: 11345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 2 + - uid: 11346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 2 + - uid: 11347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-9.5 + parent: 2 + - uid: 11348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-9.5 + parent: 2 + - uid: 11349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-9.5 + parent: 2 + - uid: 11350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-9.5 + parent: 2 + - uid: 11351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 2 + - uid: 11352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 2 + - uid: 11353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 2 + - uid: 11354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 2 + - uid: 11355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 2 + - uid: 11356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2 + - uid: 11357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - uid: 11358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 11359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 + - uid: 11360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 2 + - uid: 11361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 2 + - uid: 11362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 2 + - uid: 11363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 2 + - uid: 11364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 2 + - uid: 11365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 2 + - uid: 11366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 2 + - uid: 13517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-44.5 + parent: 2 + - uid: 13518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-43.5 + parent: 2 + - uid: 13553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-41.5 + parent: 2 + - uid: 13563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-41.5 + parent: 2 + - uid: 14565 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 14566 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 14570 + components: + - type: Transform + pos: 22.5,28.5 + parent: 2 + - uid: 14610 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 14614 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 14615 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - uid: 14616 + components: + - type: Transform + pos: 23.5,28.5 + parent: 2 + - uid: 14617 + components: + - type: Transform + pos: 20.5,25.5 + parent: 2 + - uid: 14672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,27.5 + parent: 2 + - uid: 14674 + components: + - type: Transform + pos: 20.5,27.5 + parent: 2 + - uid: 14685 + components: + - type: Transform + pos: 19.5,27.5 + parent: 2 + - uid: 14718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,26.5 + parent: 2 + - uid: 14719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,25.5 + parent: 2 + - uid: 14720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,24.5 + parent: 2 + - uid: 14721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,24.5 + parent: 2 +- proto: WardrobeCargoFilled + entities: + - uid: 11367 + components: + - type: Transform + pos: 76.5,-21.5 + parent: 2 + - uid: 11368 + components: + - type: Transform + pos: 77.5,-21.5 + parent: 2 +- proto: WardrobeChapelFilled + entities: + - uid: 12928 + components: + - type: Transform + pos: 36.5,9.5 + parent: 2 +- proto: WardrobePrisonFilled + entities: + - uid: 11370 + components: + - type: Transform + pos: -37.5,-2.5 + parent: 2 + - uid: 11371 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 2 + - uid: 11372 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 +- proto: WarningCO2 + entities: + - uid: 11373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,30.5 + parent: 2 +- proto: WarningN2 + entities: + - uid: 11374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,26.5 + parent: 2 +- proto: WarningO2 + entities: + - uid: 11375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,28.5 + parent: 2 +- proto: WarningPlasma + entities: + - uid: 11376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,34.5 + parent: 2 +- proto: WarningWaste + entities: + - uid: 11377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,32.5 + parent: 2 +- proto: WarpPoint + entities: + - uid: 12237 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - type: WarpPoint + location: NT N7 "Нормандия" +- proto: WashingMachineFilledClothes + entities: + - uid: 12106 + components: + - type: Transform + pos: 83.5,-6.5 + parent: 2 + - uid: 12234 + components: + - type: Transform + pos: 82.5,-6.5 + parent: 2 + - uid: 13500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-23.5 + parent: 2 +- proto: WaterCooler + entities: + - uid: 11378 + components: + - type: Transform + pos: 58.5,-27.5 + parent: 2 + - uid: 11379 + components: + - type: Transform + pos: 56.5,15.5 + parent: 2 + - uid: 12502 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - uid: 13596 + components: + - type: Transform + pos: 39.5,-28.5 + parent: 2 + - uid: 14426 + components: + - type: Transform + pos: 90.5,-46.5 + parent: 2 +- proto: WaterTankFull + entities: + - uid: 11380 + components: + - type: Transform + pos: 77.5,-37.5 + parent: 2 + - uid: 11381 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - uid: 12242 + components: + - type: Transform + pos: 75.5,-35.5 + parent: 2 + - uid: 12248 + components: + - type: Transform + pos: 89.5,-8.5 + parent: 2 + - uid: 12254 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 12261 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 13205 + components: + - type: Transform + pos: 36.5,-12.5 + parent: 2 + - uid: 13488 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 + - uid: 13577 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 2 + - uid: 13670 + components: + - type: Transform + pos: 45.5,-16.5 + parent: 2 + - uid: 13907 + components: + - type: Transform + pos: 55.5,-29.5 + parent: 2 + - uid: 13971 + components: + - type: Transform + pos: 67.5,-25.5 + parent: 2 + - uid: 14361 + components: + - type: Transform + pos: 94.5,-41.5 + parent: 2 + - uid: 14491 + components: + - type: Transform + pos: 82.5,-29.5 + parent: 2 + - uid: 14555 + components: + - type: Transform + pos: 93.5,-27.5 + parent: 2 + - uid: 14686 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 14902 + components: + - type: Transform + pos: 18.5,29.5 + parent: 2 + - uid: 14903 + components: + - type: Transform + pos: 35.5,23.5 + parent: 2 +- proto: WaterVaporCanister + entities: + - uid: 11382 + components: + - type: Transform + pos: 71.5,31.5 + parent: 2 + - uid: 12391 + components: + - type: Transform + anchored: True + pos: 65.5,41.5 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + bodyType: Static + - uid: 14609 + components: + - type: Transform + pos: 22.5,30.5 + parent: 2 + - uid: 14717 + components: + - type: Transform + pos: 42.5,23.5 + parent: 2 + - uid: 14723 + components: + - type: Transform + pos: 42.5,24.5 + parent: 2 +- proto: WeaponCapacitorRecharger + entities: + - uid: 11383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,0.5 + parent: 2 + - uid: 11384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,0.5 + parent: 2 + - uid: 11385 + components: + - type: Transform + pos: 50.5,23.5 + parent: 2 + - uid: 11528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,-5.5 + parent: 2 +- proto: WeaponCapacitorRechargerCircuitboard + entities: + - uid: 236 + components: + - type: Transform + parent: 210 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: WeaponCrusherDagger + entities: + - uid: 10323 + components: + - type: Transform + pos: 82.43692,-47.21904 + parent: 2 +- proto: WeaponDisablerPractice + entities: + - uid: 13891 + components: + - type: Transform + pos: 71.43723,-46.757233 + parent: 2 + - uid: 13892 + components: + - type: Transform + pos: 71.32473,-46.53223 + parent: 2 + - uid: 13893 + components: + - type: Transform + pos: 71.90598,-46.45723 + parent: 2 + - uid: 13894 + components: + - type: Transform + pos: 71.94348,-46.81348 + parent: 2 +- proto: WeaponEnergyGun + entities: + - uid: 11386 + components: + - type: Transform + pos: -48.53404,-1.3551469 + parent: 2 + - uid: 11387 + components: + - type: Transform + pos: -48.53404,-1.2379594 + parent: 2 + - uid: 11388 + components: + - type: Transform + pos: -48.53404,-1.5113969 + parent: 2 +- proto: WeaponPistolViper + entities: + - uid: 15435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 106.67654,27.267149 + parent: 2 +- proto: WeaponRevolverMateba + entities: + - uid: 11391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.545437,6.486442 + parent: 2 +- proto: WeaponRifleAk + entities: + - uid: 11392 + components: + - type: Transform + pos: -22.604795,6.5255046 + parent: 2 +- proto: WeaponRifleBB + entities: + - uid: 13526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.555824,-45.44848 + parent: 2 + - uid: 13527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.34958,-45.298477 + parent: 2 + - uid: 13651 + components: + - type: Transform + pos: 71.354706,-45.457134 + parent: 2 + - uid: 13652 + components: + - type: Transform + pos: 71.46721,-45.288383 + parent: 2 +- proto: WeaponShotgunHandmade + entities: + - uid: 15489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.39983,-54.379887 + parent: 2 +- proto: WeaponShotgunSawnEmpty + entities: + - uid: 14926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.3883,23.401417 + parent: 2 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 10305 + components: + - type: Transform + pos: 85.5,3.5 + parent: 2 + - uid: 10601 + components: + - type: Transform + pos: 83.5,3.5 + parent: 2 + - uid: 10602 + components: + - type: Transform + pos: 85.5,-0.5 + parent: 2 + - uid: 11393 + components: + - type: Transform + pos: 83.5,-54.5 + parent: 2 + - uid: 12085 + components: + - type: Transform + pos: 83.5,-0.5 + parent: 2 +- proto: WebBed + entities: + - uid: 11394 + components: + - type: Transform + pos: 73.5,-14.5 + parent: 2 +- proto: WelderIndustrial + entities: + - uid: 15488 + components: + - type: Transform + pos: 78.34775,-53.455406 + parent: 2 +- proto: WeldingFuelTankFull + entities: + - uid: 2025 + components: + - type: Transform + pos: 40.5,16.5 + parent: 2 + - uid: 2096 + components: + - type: Transform + pos: -37.5,11.5 + parent: 2 + - uid: 8609 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 11395 + components: + - type: Transform + pos: 77.5,-36.5 + parent: 2 + - uid: 12243 + components: + - type: Transform + pos: 73.5,-35.5 + parent: 2 + - uid: 12249 + components: + - type: Transform + pos: 87.5,-6.5 + parent: 2 + - uid: 12253 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - uid: 12260 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 12448 + components: + - type: Transform + pos: 65.5,34.5 + parent: 2 + - uid: 13487 + components: + - type: Transform + pos: 30.5,-29.5 + parent: 2 + - uid: 13576 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 2 + - uid: 13669 + components: + - type: Transform + pos: 44.5,-16.5 + parent: 2 + - uid: 13906 + components: + - type: Transform + pos: 55.5,-30.5 + parent: 2 + - uid: 13970 + components: + - type: Transform + pos: 67.5,-24.5 + parent: 2 + - uid: 14360 + components: + - type: Transform + pos: 95.5,-41.5 + parent: 2 + - uid: 14492 + components: + - type: Transform + pos: 83.5,-29.5 + parent: 2 + - uid: 14554 + components: + - type: Transform + pos: 93.5,-28.5 + parent: 2 + - uid: 14691 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 14871 + components: + - type: Transform + pos: 45.5,27.5 + parent: 2 + - uid: 14918 + components: + - type: Transform + pos: 35.5,24.5 + parent: 2 + - uid: 15109 + components: + - type: Transform + pos: 28.5,31.5 + parent: 2 +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 12386 + components: + - type: Transform + pos: 87.5,13.5 + parent: 2 +- proto: Windoor + entities: + - uid: 11397 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 11398 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 11399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-15.5 + parent: 2 + - uid: 11400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-14.5 + parent: 2 + - uid: 13385 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 +- proto: WindoorHydroponicsLocked + entities: + - uid: 12151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,3.5 + parent: 2 + - uid: 12152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,3.5 + parent: 2 +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 12137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,6.5 + parent: 2 + - uid: 12138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 2 +- proto: WindoorSecure + entities: + - uid: 11401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-1.5 + parent: 2 + - uid: 11402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-1.5 + parent: 2 + - uid: 11403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-18.5 + parent: 2 + - uid: 11404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 2 + - uid: 11405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 2 + - uid: 13664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-44.5 + parent: 2 + - uid: 13665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-45.5 + parent: 2 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 11406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,0.5 + parent: 2 + - uid: 11407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,2.5 + parent: 2 + - uid: 11409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-3.5 + parent: 2 + - uid: 11410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-2.5 + parent: 2 + - uid: 11411 + components: + - type: Transform + pos: -46.5,-3.5 + parent: 2 + - uid: 11412 + components: + - type: Transform + pos: -45.5,-3.5 + parent: 2 + - uid: 11413 + components: + - type: Transform + pos: -43.5,-3.5 + parent: 2 + - uid: 11414 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - uid: 11415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-2.5 + parent: 2 +- proto: WindoorSecureBarLocked + entities: + - uid: 11416 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 11417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 2 +- proto: WindoorSecureCargoLocked + entities: + - uid: 11418 + components: + - type: Transform + pos: 78.5,-18.5 + parent: 2 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 11421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-6.5 + parent: 2 + - uid: 11422 + components: + - type: Transform + pos: 49.5,-1.5 + parent: 2 + - uid: 11423 + components: + - type: Transform + pos: 46.5,-1.5 + parent: 2 + - uid: 11424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-6.5 + parent: 2 +- proto: WindoorSecureCommandLocked + entities: + - uid: 11425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,1.5 + parent: 2 + - uid: 11426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,24.5 + parent: 2 + - uid: 11427 + components: + - type: Transform + pos: 95.5,32.5 + parent: 2 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 11428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,12.5 + parent: 2 + - uid: 15433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,12.5 + parent: 2 + - uid: 15434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,13.5 + parent: 2 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 11429 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 +- proto: WindoorSecureKitchenLocked + entities: + - uid: 12140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 2 + - uid: 12141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 2 + - uid: 12142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 +- proto: WindoorSecureMailLocked + entities: + - uid: 12087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-16.5 + parent: 2 + - uid: 12109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,-14.5 + parent: 2 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 11430 + components: + - type: Transform + pos: 46.5,-6.5 + parent: 2 + - uid: 11431 + components: + - type: Transform + pos: 47.5,-6.5 + parent: 2 + - uid: 11432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-4.5 + parent: 2 + - uid: 11433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-3.5 + parent: 2 + - uid: 11434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-2.5 + parent: 2 + - uid: 11435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-17.5 + parent: 2 + - uid: 11436 + components: + - type: Transform + pos: 57.5,-16.5 + parent: 2 + - uid: 11437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-18.5 + parent: 2 +- proto: WindoorSecurePlasma + entities: + - uid: 11438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,6.5 + parent: 2 + - type: AccessReader + access: + - - Command + - - HeadOfSecurity + - uid: 11439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,6.5 + parent: 2 + - type: AccessReader + access: + - - Command + - - HeadOfSecurity +- proto: WindoorSecureSalvageLocked + entities: + - uid: 11440 + components: + - type: Transform + pos: 79.5,-47.5 + parent: 2 + - uid: 11441 + components: + - type: Transform + pos: 80.5,-47.5 + parent: 2 +- proto: WindoorSecureSecurityLawyerLocked + entities: + - uid: 11442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 2 + - uid: 11443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 2 + - uid: 11444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 2 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 11445 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 +- proto: WindoorSecureServiceLocked + entities: + - uid: 13381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-6.5 + parent: 2 + - uid: 13383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-7.5 + parent: 2 +- proto: WindoorServiceLocked + entities: + - uid: 13382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-7.5 + parent: 2 +- proto: Window + entities: + - uid: 9766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-32.5 + parent: 2 + - uid: 11446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-1.5 + parent: 2 + - uid: 11447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-1.5 + parent: 2 + - uid: 11448 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 11449 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - uid: 11450 + components: + - type: Transform + pos: 20.5,3.5 + parent: 2 + - uid: 11451 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - uid: 11452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-22.5 + parent: 2 + - uid: 11453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-19.5 + parent: 2 + - uid: 11454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-22.5 + parent: 2 + - uid: 11455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-22.5 + parent: 2 + - uid: 11456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-22.5 + parent: 2 + - uid: 11457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-9.5 + parent: 2 + - uid: 11458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-10.5 + parent: 2 + - uid: 11459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-11.5 + parent: 2 + - uid: 11460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,3.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 5067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-53.5 + parent: 2 + - uid: 11461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 2 + - uid: 11462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 2 + - uid: 11463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 2 + - uid: 11464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 2 + - uid: 11465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 2 + - uid: 11466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-1.5 + parent: 2 + - uid: 11467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-1.5 + parent: 2 + - uid: 11468 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 11469 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 11470 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 11471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-21.5 + parent: 2 + - uid: 11472 + components: + - type: Transform + pos: 69.5,-21.5 + parent: 2 + - uid: 11473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-21.5 + parent: 2 + - uid: 11474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-21.5 + parent: 2 + - uid: 15480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-54.5 + parent: 2 + - uid: 15481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-53.5 + parent: 2 + - uid: 15484 + components: + - type: Transform + pos: 78.5,-54.5 + parent: 2 + - uid: 15530 + components: + - type: Transform + pos: 82.5,-58.5 + parent: 2 + - uid: 15531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-58.5 + parent: 2 + - uid: 15532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-57.5 + parent: 2 + - uid: 15533 + components: + - type: Transform + pos: 83.5,-58.5 + parent: 2 + - uid: 15534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,-54.5 + parent: 2 + - uid: 15535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-54.5 + parent: 2 + - uid: 15536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-54.5 + parent: 2 + - uid: 15537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-55.5 + parent: 2 +- proto: WindowFrostedDirectional + entities: + - uid: 11475 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 7900 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 + - uid: 7901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,3.5 + parent: 2 + - uid: 8300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-1.5 + parent: 2 + - uid: 9095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-1.5 + parent: 2 + - uid: 9096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,3.5 + parent: 2 + - uid: 10929 + components: + - type: Transform + pos: -15.5,3.5 + parent: 2 + - uid: 11476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-19.5 + parent: 2 + - uid: 11477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-20.5 + parent: 2 + - uid: 11479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-18.5 + parent: 2 + - uid: 11480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,7.5 + parent: 2 + - uid: 11481 + components: + - type: Transform + pos: -48.5,-1.5 + parent: 2 + - uid: 11482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-4.5 + parent: 2 + - uid: 11483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-4.5 + parent: 2 + - uid: 11484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-4.5 + parent: 2 + - uid: 11485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-4.5 + parent: 2 + - uid: 11486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-4.5 + parent: 2 + - uid: 11487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-1.5 + parent: 2 + - uid: 11488 + components: + - type: Transform + pos: -48.5,0.5 + parent: 2 + - uid: 11489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,3.5 + parent: 2 + - uid: 11490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,3.5 + parent: 2 + - uid: 11491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-15.5 + parent: 2 + - uid: 11492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-14.5 + parent: 2 + - uid: 11493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-16.5 + parent: 2 + - uid: 11494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-18.5 + parent: 2 + - uid: 11495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-19.5 + parent: 2 + - uid: 11496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-20.5 + parent: 2 + - uid: 11497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-16.5 + parent: 2 + - uid: 11498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-15.5 + parent: 2 + - uid: 11499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-14.5 + parent: 2 + - uid: 11500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-14.5 + parent: 2 + - uid: 11501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-15.5 + parent: 2 + - uid: 11502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-16.5 + parent: 2 + - uid: 11503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-18.5 + parent: 2 + - uid: 11504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-19.5 + parent: 2 + - uid: 11505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-20.5 + parent: 2 + - uid: 11506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-18.5 + parent: 2 + - uid: 11507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-18.5 + parent: 2 + - uid: 11508 + components: + - type: Transform + pos: 56.5,-16.5 + parent: 2 + - uid: 11509 + components: + - type: Transform + pos: 58.5,-16.5 + parent: 2 + - uid: 11510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-7.5 + parent: 2 + - uid: 11512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 2 + - uid: 11513 + components: + - type: Transform + pos: -65.5,2.5 + parent: 2 + - uid: 11514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,0.5 + parent: 2 + - uid: 11515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,2.5 + parent: 2 + - uid: 11516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,4.5 + parent: 2 + - uid: 11517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,2.5 + parent: 2 + - uid: 11518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,4.5 + parent: 2 + - uid: 11519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,4.5 + parent: 2 + - uid: 11520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,4.5 + parent: 2 + - uid: 11521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,4.5 + parent: 2 + - uid: 11522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,3.5 + parent: 2 + - uid: 11523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,2.5 + parent: 2 + - uid: 11524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,1.5 + parent: 2 + - uid: 11525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,0.5 + parent: 2 + - uid: 11526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-0.5 + parent: 2 + - uid: 11530 + components: + - type: Transform + pos: -72.5,-0.5 + parent: 2 + - uid: 11531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,-0.5 + parent: 2 + - uid: 11532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,-0.5 + parent: 2 + - uid: 11533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,0.5 + parent: 2 + - uid: 11534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,1.5 + parent: 2 + - uid: 11535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,3.5 + parent: 2 + - uid: 11536 + components: + - type: Transform + pos: -71.5,4.5 + parent: 2 + - uid: 11543 + components: + - type: Transform + pos: 89.5,-27.5 + parent: 2 + - uid: 11544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,-27.5 + parent: 2 + - uid: 11545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,-27.5 + parent: 2 + - uid: 11546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,-27.5 + parent: 2 + - uid: 11547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,-23.5 + parent: 2 + - uid: 11548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,-23.5 + parent: 2 + - uid: 11549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-44.5 + parent: 2 + - uid: 11550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-44.5 + parent: 2 + - uid: 11551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,13.5 + parent: 2 + - uid: 11552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 2 + - uid: 11553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 2 + - uid: 11554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,-8.5 + parent: 2 + - uid: 11555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,-7.5 + parent: 2 + - uid: 11556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,-8.5 + parent: 2 + - uid: 11574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-2.5 + parent: 2 + - uid: 11575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-2.5 + parent: 2 + - uid: 11576 + components: + - type: Transform + pos: -70.5,-2.5 + parent: 2 + - uid: 11577 + components: + - type: Transform + pos: -71.5,-2.5 + parent: 2 + - uid: 11578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,-2.5 + parent: 2 + - uid: 11579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,-1.5 + parent: 2 + - uid: 11997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,0.5 + parent: 2 + - uid: 12901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 2 + - uid: 13184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-1.5 + parent: 2 + - uid: 13185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,3.5 + parent: 2 + - uid: 13186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,3.5 + parent: 2 + - uid: 13187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,3.5 + parent: 2 + - uid: 13188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,3.5 + parent: 2 + - uid: 13189 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 2 + - uid: 13190 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 + - uid: 13191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 2 + - uid: 13192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 2 + - uid: 13193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 2 + - uid: 13194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 2 + - uid: 13336 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 +- proto: WindowTintedDirectional + entities: + - uid: 8018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-7.5 + parent: 2 + - uid: 9214 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 9492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-43.5 + parent: 2 + - uid: 11557 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 11558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 11559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 2 + - uid: 11560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 2 + - uid: 11561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-7.5 + parent: 2 + - uid: 11562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 2 + - uid: 11563 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 11564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 2 + - uid: 13337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-7.5 + parent: 2 + - uid: 13357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-7.5 + parent: 2 + - uid: 13360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-6.5 + parent: 2 + - uid: 13554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-42.5 + parent: 2 + - uid: 13555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-42.5 + parent: 2 + - uid: 13569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-42.5 + parent: 2 + - uid: 13570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-41.5 + parent: 2 + - uid: 13581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-40.5 + parent: 2 + - uid: 13582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-42.5 + parent: 2 + - uid: 13612 + components: + - type: Transform + pos: 69.5,-42.5 + parent: 2 + - uid: 13626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-42.5 + parent: 2 + - uid: 13694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-17.5 + parent: 2 + - uid: 13904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-29.5 + parent: 2 + - uid: 13911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-30.5 + parent: 2 + - uid: 13912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-31.5 + parent: 2 + - uid: 13917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-30.5 + parent: 2 + - uid: 14128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-32.5 + parent: 2 + - uid: 14493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,-29.5 + parent: 2 + - uid: 14544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,-31.5 + parent: 2 + - uid: 14730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,26.5 + parent: 2 + - uid: 14731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,25.5 + parent: 2 +- proto: WoodDoor + entities: + - uid: 11565 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 11566 + components: + - type: Transform + pos: 62.5,21.5 + parent: 2 + - uid: 11567 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 11568 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - uid: 11569 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - uid: 11570 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 11571 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 13992 + components: + - type: Transform + pos: 75.5,-40.5 + parent: 2 + - uid: 14670 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 + - uid: 14895 + components: + - type: Transform + pos: 20.5,26.5 + parent: 2 +- proto: WoodenBench + entities: + - uid: 81 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 2 + - uid: 12091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 2 + - uid: 12316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 2 + - uid: 12317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 2 + - uid: 12318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 2 + - uid: 12319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 2 + - uid: 12329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 2 + - uid: 12330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 2 + - uid: 12331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 2 + - uid: 12342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 2 +- proto: WoodenSupportWall + entities: + - uid: 13353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-7.5 + parent: 2 + - uid: 13519 + components: + - type: Transform + pos: 65.5,-44.5 + parent: 2 +- proto: WoodenSupportWallBroken + entities: + - uid: 13520 + components: + - type: Transform + pos: 66.5,-43.5 + parent: 2 +- proto: Wrench + entities: + - uid: 11572 + components: + - type: Transform + pos: 71.644,4.5905 + parent: 2 +- proto: ZiptiesBroken + entities: + - uid: 13562 + components: + - type: Transform + pos: 45.38186,-30.09115 + parent: 2 +... diff --git a/Resources/Migrations/eeMigration.yml b/Resources/Migrations/eeMigration.yml index 26713f6cba..8d95da53bc 100644 --- a/Resources/Migrations/eeMigration.yml +++ b/Resources/Migrations/eeMigration.yml @@ -1,3 +1,7 @@ # 2024-06-08 CrateFunPlushie: CrateFunToyBox CrateFunLizardPlushieBulk: CrateFunToyBox + +# 2024-08-27 +Oracle: OracleSpawner +SophicScribe: SophicScribeSpawner \ No newline at end of file diff --git a/Resources/Prototypes/Datasets/corporations.yml b/Resources/Prototypes/Datasets/corporations.yml index 497d699ed0..4204555653 100644 --- a/Resources/Prototypes/Datasets/corporations.yml +++ b/Resources/Prototypes/Datasets/corporations.yml @@ -1,12 +1,12 @@ - type: dataset id: TraitorCorporations values: - - "CyberSun Industries" + - "КиберСан Индустрис" - "Мародёры Горлекса" - - "MI13" - - "Tiger Cooperative" - - "S.E.L.F." - - "Animal Rights Consortium" - - "Donk Corporation" - - "Waffle Corporation" - - "Interdyne Pharmaceutics" + - "МИ13" + - "Тайгер Кооператив" + - "С.Е.Л.Ф." + - "Права Животных Консорциум" + - "Донк Корпарейшн" + - "Ваффл Корпорейшн" + - "Интердайн Фармацистик" diff --git a/Resources/Prototypes/Datasets/verbs.yml b/Resources/Prototypes/Datasets/verbs.yml index f53c18a71b..497bfde846 100644 --- a/Resources/Prototypes/Datasets/verbs.yml +++ b/Resources/Prototypes/Datasets/verbs.yml @@ -1,635 +1,994 @@ - type: dataset id: verbs values: - - accept - - add - - admire - - admit - - advise - - afford - - agree - - alert - - allow - - amuse - - analyse - - announce - - annoy - - answer - - apologise - - appear - - applaud - - appreciate - - approve - - argue - - arrange - - arrest - - arrive - - ask - - attach - - attack - - attempt - - attend - - attract - - avoid - - back - - bake - - balance - - ban - - bang - - bare - - bat - - bathe - - battle - - beam - - beg - - behave - - belong - - bleach - - bless - - blind - - blink - - blot - - blush - - boast - - boil - - bolt - - bomb - - book - - bore - - borrow - - bounce - - bow - - box - - brake - - brake - - branch - - breathe - - bruise - - brush - - bubble - - bump - - burn - - bury - - buzz - - calculate - - call - - camp - - care - - carry - - carve - - cause - - challenge - - change - - charge - - chase - - cheat - - check - - cheer - - chew - - choke - - chop - - claim - - clap - - clean - - clear - - clip - - close - - coach - - coil - - collect - - colour - - comb - - command - - communicate - - compare - - compete - - complain - - complete - - concentrate - - concern - - confess - - confuse - - connect - - consider - - consist - - contain - - continue - - copy - - correct - - cough - - count - - cover - - crack - - crash - - crawl - - cross - - crush - - cry - - cure - - curl - - curve - - cycle - - dam - - damage - - dance - - dare - - decay - - deceive - - decide - - decorate - - delay - - delight - - deliver - - depend - - describe - - desert - - deserve - - destroy - - detect - - develop - - disagree - - disappear - - disapprove - - disarm - - discover - - dislike - - divide - - double - - doubt - - drag - - drain - - dream - - dress - - drip - - drop - - drown - - drum - - dry - - dust - - earn - - educate - - embarrass - - employ - - empty - - encourage - - end - - enjoy - - enter - - entertain - - escape - - examine - - excite - - excuse - - exercise - - exist - - expand - - expect - - explain - - explode - - extend - - face - - fade - - fail - - fancy - - fasten - - fax - - fear - - fence - - fetch - - file - - fill - - film - - fire - - fit - - fix - - flap - - flash - - float - - flood - - flow - - flower - - fold - - follow - - fool - - force - - form - - found - - frame - - frighten - - fry - - gather - - gaze - - glow - - glue - - grab - - grate - - grease - - greet - - grin - - grip - - groan - - guarantee - - guard - - guess - - guide - - hammer - - hand - - handle - - hang - - happen - - harass - - harm - - hate - - haunt - - head - - heal - - heap - - heat - - help - - hook - - hop - - hope - - hover - - hug - - hum - - hunt - - hurry - - identify - - ignore - - imagine - - impress - - improve - - include - - increase - - influence - - inform - - inject - - injure - - instruct - - intend - - interest - - interfere - - interrupt - - introduce - - invent - - invite - - irritate - - itch - - jail - - jam - - jog - - join - - joke - - judge - - juggle - - jump - - kick - - kill - - kiss - - kneel - - knit - - knock - - knot - - label - - land - - last - - laugh - - launch - - learn - - level - - license - - lick - - lie - - lighten - - like - - list - - listen - - live - - load - - lock - - long - - look - - love - - man - - manage - - march - - mark - - marry - - match - - mate - - matter - - measure - - meddle - - melt - - memorise - - mend - - messup - - milk - - mine - - miss - - mix - - moan - - moor - - mourn - - move - - muddle - - mug - - multiply - - murder - - nail - - name - - need - - nest - - nod - - note - - notice - - number - - obey - - object - - observe - - obtain - - occur - - offend - - offer - - open - - order - - overflow - - owe - - own - - pack - - paddle - - paint - - park - - part - - pass - - paste - - pat - - pause - - peck - - pedal - - peel - - peep - - perform - - permit - - phone - - pick - - pinch - - pine - - place - - plan - - plant - - play - - please - - plug - - point - - poke - - polish - - pop - - possess - - post - - pour - - practise - - pray - - preach - - precede - - prefer - - prepare - - present - - preserve - - press - - pretend - - prevent - - prick - - print - - produce - - program - - promise - - protect - - provide - - pull - - pump - - punch - - puncture - - punish - - push - - question - - queue - - race - - radiate - - rain - - raise - - reach - - realise - - receive - - recognise - - record - - reduce - - reflect - - refuse - - regret - - reign - - reject - - rejoice - - relax - - release - - rely - - remain - - remember - - remind - - remove - - repair - - repeat - - replace - - reply - - report - - reproduce - - request - - rescue - - retire - - return - - rhyme - - rinse - - risk - - rob - - rock - - roll - - rot - - rub - - ruin - - rule - - rush - - sack - - sail - - satisfy - - save - - saw - - scare - - scatter - - scold - - scorch - - scrape - - scratch - - scream - - screw - - scribble - - scrub - - seal - - search - - separate - - serve - - settle - - shade - - share - - shave - - shelter - - shiver - - shock - - shop - - shriek - - shrug - - sigh - - sign - - signal - - sin - - sip - - ski - - skip - - slap - - slip - - slow - - smash - - smell - - smile - - smoke - - snatch - - sneeze - - sniff - - snore - - snow - - soak - - soothe - - sound - - spare - - spark - - sparkle - - spell - - spill - - spoil - - spot - - spray - - sprout - - squash - - squeak - - squeal - - squeeze - - stain - - stamp - - stare - - start - - stay - - steer - - step - - stir - - stitch - - stop - - store - - strap - - strengthen - - stretch - - stroke - - stuff - - subtract - - succeed - - suck - - suffer - - suggest - - suit - - supply - - support - - suppose - - surprise - - surround - - suspect - - suspend - - switch - - talk - - tame - - tap - - taste - - tease - - telephone - - tempt - - terrify - - test - - thank - - thaw - - tick - - tickle - - tie - - time - - tip - - tire - - touch - - tour - - tow - - trace - - trade - - train - - transport - - trap - - travel - - treat - - tremble - - trick - - trip - - trot - - trouble - - trust - - try - - tug - - tumble - - turn - - twist - - type - - unfasten - - unite - - unlock - - unpack - - untidy - - use - - vanish - - visit - - wail - - wait - - walk - - wander - - want - - warm - - warn - - wash - - waste - - watch - - water - - wave - - weigh - - welcome - - whine - - whip - - whirl - - whisper - - whistle - - wink - - wipe - - wish - - wobble - - wonder - - work - - worry - - wrap - - wreck - - wrestle - - wriggle - - yawn - - yell - - zip - - zoom + - сказать + - говорить + - хотеть + - иметь + - видеть + - думать + - сделать + - понимать + - жить + - делать + - работать + - стоять + - пойти + - считать + - смотреть + - взять + - получать + - сидеть + - становиться + - спросить + - принимать + - любить + - увидеть + - прийти + - представлять + - писать + - казаться + - называть + - начинать + - понять + - дать + - начать + - остаться + - помнить + - находить + - ждать + - выйти + - следовать + - проводить + - происходить + - написать + - создавать + - посмотреть + - играть + - подумать + - решить + - вернуться + - проходить + - приходить + - ходить + - ответить + - отвечать + - лежать + - читать + - использовать + - выходить + - рассказывать + - пройти + - занимать + - хотеться + - существовать + - получить + - продолжать + - показывать + - слышать + - стоить + - уходить + - прийтись + - вести + - бояться + - спрашивать + - появиться + - находиться + - составлять + - позволять + - найти + - чувствовать + - слушать + - предлагать + - решать + - уйти + - пытаться + - помогать + - оказываться + - просить + - вызывать + - входить + - держать + - искать + - собираться + - приводить + - брать + - требовать + - определять + - вспоминать + - верить + - пить + - открывать + - устанавливать + - глядеть + - ехать + - возникать + - приходиться + - заметить + - купить + - заниматься + - узнать + - приехать + - удаться + - оставлять + - начаться + - произойти + - выполнять + - касаться + - выступать + - объяснять + - снимать + - стараться + - принять + - отмечать + - успеть + - уметь + - рассматривать + - нравиться + - рассказать + - действовать + - обеспечивать + - поехать + - относиться + - услышать + - показать + - появляться + - поставлять + - полагать + - собирать + - подойти + - подходить + - войти + - забыть + - вспомнить + - замечать + - состоять + - поднимать + - ставить + - случиться + - надеяться + - получиться + - кричать + - получаться + - забывать + - бежать + - хватать + - утверждать + - сесть + - выглядеть + - узнавать + - встречать + - служить + - умереть + - выбирать + - попасть + - попросить + - иметься + - молчать + - обращать + - приезжать + - открыть + - отдавать + - расти + - предложить + - звать + - встать + - поставить + - значить + - потерять + - включать + - осуществлять + - ожидать + - передавать + - начинаться + - зависеть + - позволить + - желать + - позвонить + - напоминать + - предусматривать + - судить + - заявить + - согласиться + - нести + - называться + - участвовать + - убивать + - построить + - учить + - почувствовать + - привести + - попадать + - располагать + - поддерживать + - показаться + - носить + - бить + - оставить + - улыбаться + - производить + - бросать + - соответствовать + - принадлежать + - сообщить + - являть + - обращаться + - платить + - встречаться + - содержать + - устраивать + - наблюдать + - обещать + - звонить + - остановиться + - обладать + - бросить + - вставать + - состояться + - предполагать + - признавать + - повторять + - поднять + - принести + - выделять + - поступать + - учитывать + - продавать + - сохранять + - упасть + - означать + - разрабатывать + - относить + - хватить + - смеяться + - подняться + - поверить + - возвращаться + - попробовать + - мешать + - приносить + - улыбнуться + - плакать + - положить + - менять + - разуметься + - садиться + - рассчитывать + - родиться + - назвать + - заставлять + - описывать + - возникнуть + - умирать + - ездить + - совершать + - готовить + - считаться + - закрывать + - защищать + - перестать + - испытывать + - провести + - подниматься + - разговаривать + - понравиться + - выпускать + - выражать + - произнести + - оказывать + - указывать + - случаться + - изменять + - объяснить + - простить + - уехать + - изучать + - достигать + - учиться + - кивнуть + - оценивать + - покупать + - падать + - суметь + - обнаруживать + - отдать + - посвящать + - сообщать + - исчезнуть + - снять + - вызвать + - пользоваться + - приглашать + - подавать + - поговорить + - обсуждать + - проверять + - вводить + - звучать + - попытаться + - убить + - применять + - направлять + - выдавать + - отличаться + - лететь + - измениться + - задавать + - отказываться + - сыграть + - приобретать + - скрывать + - предоставлять + - переходить + - говориться + - составить + - гореть + - выпить + - доказывать + - удивиться + - развивать + - переживать + - висеть + - отказаться + - бороться + - терять + - следить + - заходить + - заканчивать + - вздохнуть + - уезжать + - добавлять + - допускать + - привлекать + - встретить + - представить + - погибнуть + - вырасти + - складываться + - исходить + - добавить + - делаться + - спасать + - назначать + - тянуть + - захотеть + - обратиться + - исполнять + - мечтать + - свидетельствовать + - крикнуть + - кончиться + - требоваться + - исключать + - вернуть + - заявлять + - останавливаться + - взяться + - болеть + - окружать + - достать + - интересовать + - вступать + - подтверждать + - способствовать + - ощущать + - успевать + - стремиться + - удаваться + - вносить + - собраться + - сходить + - держаться + - подчеркивать + - проживать + - познакомиться + - увеличивать + - заключать + - стрелять + - выпивать + - здравствовать + - отдыхать + - представляться + - извинить + - обнаружить + - проявлять + - переводить + - сдавать + - объединять + - пахнуть + - дойти + - привыкнуть + - предстоять + - воспринимать + - разделять + - строить + - протянуть + - добиваться + - курить + - дышать + - объявлять + - использоваться + - страдать + - посылать + - отправиться + - записывать + - изображать + - произносить + - явиться + - объявить + - перейти + - закричать + - отправлять + - возвращать + - привезти + - запрещать + - пригласить + - подписывать + - подарить + - придумать + - подготавливать + - заключаться + - отметить + - останавливать + - поступить + - бегать + - подождать + - отражать + - зайти + - повезти + - приняться + - наступать + - прочитывать + - покрывать + - придумывать + - нарушать + - упоминать + - определяться + - гулять + - зарабатывать + - спешить + - поймать + - повторить + - заставить + - проводиться + - сомневаться + - побежать + - исчезать + - готовиться + - разбираться + - встретиться + - найтись + - создать + - осуществляться + - выбрать + - повернуться + - превышать + - основывать + - пускать + - допустить + - реализовать + - доставать + - продолжаться + - убеждать + - прощать + - достигнуть + - закончиться + - кормить + - выясниться + - двигаться + - хранить + - посадить + - повышать + - терпеть + - разрешать + - отличать + - передать + - организовывать + - засмеяться + - меняться + - придавать + - отсутствовать + - броситься + - наступить + - голосовать + - избегать + - связывать + - ложиться + - потребовать + - соглашаться + - спорить + - нуждаться + - занять + - уничтожать + - решаться + - опускать + - превращаться + - воевать + - послушать + - закончить + - закрыть + - приказать + - предпочитать + - выступить + - складывать + - жалеть + - дрожать + - напомнить + - заменять + - ударить + - общаться + - превратиться + - лечь + - покидать + - поражать + - лезть + - открыться + - двигать + - выводить + - доходить + - позвать + - выявлять + - повести + - казать + - сложиться + - владеть + - испугаться + - выносить + - превращать + - постараться + - предназначать + - сопровождать + - подтвердить + - ловить + - усмехнуться + - убирать + - предупреждать + - проснуться + - рождаться + - набирать + - летать + - догадываться + - временить + - восстанавливать + - освобождать + - рождать + - закладывать + - влиять + - устроить + - открываться + - опубликовывать + - послать + - велеть + - разбирать + - признаваться + - раздаться + - образовывать + - заговорить + - признаться + - обратить + - разрушать + - торчать + - править + - снижать + - заплатить + - спасти + - воскликнуть + - обернуться + - уважать + - заглядывать + - возглавлять + - высказывать + - сводить + - сравнивать + - прочесть + - побеждать + - везти + - создаваться + - выдержать + - издавать + - доверять + - обозначать + - управлять + - врать + - взглянуть + - отпускать + - устать + - ненавидеть + - побывать + - развиваться + - пожать + - контролировать + - подлежать + - наносить + - воспользоваться + - надевать + - планировать + - страивать + - одевать + - догадаться + - завершать + - дождаться + - торопиться + - пользовать + - подозревать + - схватить + - последовать + - волновать + - исследовать + - плыть + - радоваться + - вкладывать + - вестись + - собрать + - доставлять + - благодарить + - ограничивать + - посещать + - научиться + - отправляться + - пропускать + - отказывать + - сунуть + - преодолевать + - решиться + - поинтересоваться + - понадобиться + - раскрывать + - переставать + - обойтись + - избирать + - удивляться + - волноваться + - захватывать + - сойти + - вытащить + - освещать + - заполнять + - договориться + - орать + - обходиться + - разрешить + - обрадоваться + - охватывать + - отпустить + - вынуждать + - целовать + - привозить + - задумываться + - возражать + - отойти + - руководить + - отправить + - забирать + - засыпать + - доводить + - настаивать + - выхаживать + - рекомендовать + - удерживать + - прикрывать + - оглядываться + - сделаться + - лечить + - выдерживать + - подбирать + - спрятать + - задерживать + - проговорить + - прибыть + - приближаться + - предъявлять + - приниматься + - махнуть + - шутить + - пустить + - прыгать + - тратить + - признать + - глянуть + - запомнить + - сокращать + - пугать + - прочитать + - рисовать + - выиграть + - мыслить + - переносить + - кончать + - удивлять + - прожить + - полагаться + - справляться + - остановить + - осознавать + - танцевать + - демонстрировать + - призывать + - обходить + - отводить + - сохраниться + - делить + - надоесть + - поздравлять + - поглядеть + - формировать + - лишать + - обуславливать + - просыпаться + - уступать + - пояснить + - выставлять + - водить + - совпадать + - грозить + - пробовать + - достаться + - тереть + - поддержать + - приобрести + - обижать + - потрясать + - прекращать + - украшать + - сохраняться + - задуматься + - радовать + - заводить + - излагать + - успокоиться + - добывать + - наблюдаться + - нарисовать + - пытать + - сиять + - стучать + - захотеться + - посоветовать + - трогать + - арестовывать + - подписать + - выигрывать + - зарегистрировать + - гнать + - определить + - интересоваться + - поворачивать + - наполнять + - выпустить + - совершить + - жениться + - предполагаться + - выскочить + - спускаться + - прозвучать + - постоять + - бродить + - оформлять + - обманывать + - оправдывать + - вскочить + - отозваться + - пропадать + - ошибаться + - разглядывать + - тянуться + - гордиться + - соединять + - расширять + - советовать + - забрать + - отходить + - успокаивать + - перевести + - плавать + - посидеть + - заглянуть + - тащить + - выражаться + - жаловаться + - кончаться + - класть + - пообещать + - прятать + - заканчиваться + - беседовать + - мучить + - опасаться + - полезть + - обвинять + - протягивать + - напечатать + - вступить + - двинуться + - рассматриваться + - опираться + - украсть + - рухнуть + - замереть + - помешать + - поцеловать + - реагировать + - указать + - возрастать + - характеризовать + - заливать + - повесить + - рассуждать + - торговать + - покачать + - подавлять + - победить + - прибывать + - ценить + - предпринимать + - произвести + - выдвигать + - помолчать + - сталкиваться + - набрать + - сломать + - творить + - оглянуться + - пробормотать + - проникать + - рисковать + - пожалеть + - возбуждать + - продолжить + - воспитывать + - вырастать + - сбивать + - выдать + - изменить + - сформулировать + - добраться + - продать + - ломать + - соблюдать + - вздыхать + - соображать + - добиться + - попадаться + - заказывать + - производиться + - образоваться + - заняться + - выезжать + - охранять + - применяться + - прислушиваться + - надеть + - убеждаться + - настраивать + - выбрасывать + - счесть + - крутить + - полететь + - присылать + - докладывать + - отбирать + - показываться + - проявляться + - объясняться + - взглядывать + - пострадать + - употреблять + - вырабатывать + - бросаться + - обнимать + - расставаться + - раздражать + - опустить + - перечислять + - спуститься + - направиться + - прислать + - браться + - разводить + - планироваться + - отменять + - возить + - включить + - полюбить + - даваться + - разглядеть + - разбивать + - размещать + - беспокоить + - различать + - потребоваться + - уверять + - мыть + - отрывать + - прошептать + - понести + - порождать + - увеличиться + - подводить + - установить + - утрачивать + - частить + - командовать + - потерпеть + - кинуться + - оплачивать + - сметь + - сдать + - провожать + - спускать + - размышлять + - рвать + - поделиться + - миновать + - пожелать + - шептать + - поворачиваться + - почитать + - замолчать + - обретать + - сдерживать + - закреплять + - покинуть + - располагаться + - уговаривать + - съесть + - строиться + - договариваться + - молить + - расходиться + - повернуть + - потянуть + - уменьшать + - укреплять + - прижимать + - видеться + - блестеть + - осуждать + - разобраться + - очищать + - добираться + - преследовать + - потянуться + - отрезать + - ругать + - обидеться + - гарантировать + - рассмеяться + - вытаскивать + - дружить + - заслуживать + - уделять + - походить + - изготовлять + - приближать + - укладывать + - привыкать + - намечать + - откладывать + - предлагаться + - организовать + - противоречить + - продемонстрировать + - хохотать + - устанавливаться + - приветствовать + - приготавливать + - уснуть + - выделяться + - вывести + - убрать + - послужить + - печатать + - стесняться + - давить + - погибать + - шагать + - предупредить + - отделять + - записать + - послышаться + - заплакать + - поглядывать + - осваивать + - разбудить + - заболеть diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/familiars.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/familiars.yml index 173c7e43ec..364907ff9c 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/familiars.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/familiars.yml @@ -92,9 +92,13 @@ nameSegments: [names_golem] - type: Psionic removable: false + psychognomicDescriptors: + - p-descriptor-bound + - p-descriptor-cyclic - type: InnatePsionicPowers powersToAdd: - PyrokinesisPower + - TelepathyPower - type: Grammar attributes: proper: true diff --git a/Resources/Prototypes/Entities/Markers/Spawners/statues.yml b/Resources/Prototypes/Entities/Markers/Spawners/statues.yml new file mode 100644 index 0000000000..4a3b89e401 --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/statues.yml @@ -0,0 +1,25 @@ +- type: entity + name: Oracle Spawner + id: OracleSpawner + parent: MarkerBase + components: + - type: Sprite + sprite: Markers/jobs.rsi + layers: + - state: green + - type: ConditionalSpawner + prototypes: + - Oracle + +- type: entity + name: Sophia Spawner + id: SophicScribeSpawner + parent: MarkerBase + components: + - type: Sprite + sprite: Markers/jobs.rsi + layers: + - state: green + - type: ConditionalSpawner + prototypes: + - SophicScribe diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/cat_parts.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/cat_parts.yml index de88a17fd7..7a348944f0 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/cat_parts.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/cat_parts.yml @@ -3,6 +3,7 @@ bodyPart: HeadTop markingCategory: HeadTop speciesRestriction: [Human] + sponsorOnly: true coloring: default: type: @@ -26,6 +27,7 @@ bodyPart: Tail markingCategory: Tail speciesRestriction: [Human] + sponsorOnly: true coloring: default: type: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml b/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml index c2380c4027..11c6f926ba 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml @@ -101,6 +101,11 @@ - SimpleHostile - type: Damageable damageContainer: StructuralInorganic + - type: Psionic + removable: false + - type: InnatePsionicPowers + powersToAdd: + - TelepathyPower - type: entity parent: MobOreCrab @@ -293,6 +298,11 @@ solution: bloodstream - type: DrainableSolution solution: bloodstream + - type: Psionic + removable: false + - type: InnatePsionicPowers + powersToAdd: + - TelepathyPower - type: entity name: Reagent Slime Spawner @@ -319,6 +329,7 @@ - ReagentSlimeNorepinephricAcid - ReagentSlimeEphedrine - ReagentSlimeRobustHarvest + - ReagentSlimeLotophagoiOil chance: 1 - type: entity @@ -530,3 +541,23 @@ - map: [ "enum.DamageStateVisualLayers.Base" ] state: alive color: "#3e901c" + +- type: entity + id: ReagentSlimeLotophagoiOil + parent: ReagentSlime + suffix: Lotophagoi Oil + components: + - type: Bloodstream + bloodReagent: LotophagoiOil + - type: PointLight + color: "#FFBF00" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#3e901c" + - type: GhostRole + prob: 1 #it's significantly more psionic than the others + description: ghost-role-information-angry-slimes-description \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml index cc5b6f2c34..d4b9e087cd 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml @@ -97,4 +97,11 @@ - RevenantTheme - type: Speech speechVerb: Ghost - - type: UniversalLanguageSpeaker + - type: Psionic + removable: false + psychognomicDescriptors: + - p-descriptor-vampiric + - type: InnatePsionicPowers + powersToAdd: + - XenoglossyPower + - TelepathyPower diff --git a/Resources/Prototypes/Entities/Mobs/Player/familiars.yml b/Resources/Prototypes/Entities/Mobs/Player/familiars.yml index 6510c8af99..ab479e0332 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/familiars.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/familiars.yml @@ -34,8 +34,14 @@ - PsionicInterloper #Nyano - Summary: makes a part of the psionic faction. - type: Alerts - type: Familiar - - type: Psionic #Nyano - Summary: Makes psionic on creation. + - type: Psionic removable: false + psychognomicDescriptors: + - p-descriptor-bound + - p-descriptor-cyclic + - type: InnatePsionicPowers + powersToAdd: + - TelepathyPower - type: entity name: Cerberus @@ -93,6 +99,9 @@ - type: Dispellable - type: Psionic #Nyano - Summary: makes psionic on creation. removable: false + - type: InnatePsionicPowers + powersToAdd: + - TelepathyPower - type: Vocal sounds: Male: Cerberus diff --git a/Resources/Prototypes/Entities/Mobs/Player/guardian.yml b/Resources/Prototypes/Entities/Mobs/Player/guardian.yml index 4e824f38ad..03253a79b3 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/guardian.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/guardian.yml @@ -159,6 +159,11 @@ map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] color: "#40a7d7" shader: unshaded + - type: Psionic + removable: false + - type: InnatePsionicPowers + powersToAdd: + - TelepathyPower - type: entity name: HoloClown diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index 13e581bcb3..62f3bbcb3f 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -544,6 +544,27 @@ recipes: - CloningPodMachineCircuitboard +- type: entity + id: MetempsychoticMachineCircuitboard + parent: BaseMachineCircuitboard + name: metempsychotic machine machine board + description: A machine printed circuit board for a cloning pod + components: + - type: Sprite + state: medical + - type: MachineBoard + prototype: MetempsychoticMachine + requirements: + Capacitor: 2 + Manipulator: 2 + materialRequirements: + Glass: 1 + Cable: 1 + - type: ReverseEngineering + difficulty: 3 + recipes: + - MetempsychoticMachineCircuitboard + - type: entity id: MedicalScannerMachineCircuitboard parent: BaseMachineCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Fun/prizeticket.yml b/Resources/Prototypes/Entities/Objects/Fun/prizeticket.yml index 695e45a2e6..ced65ed92f 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/prizeticket.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/prizeticket.yml @@ -282,7 +282,7 @@ - id: CrayonBox prob: 0.80 orGroup: Prize - - id: BasePetRock + - id: PetRock prob: 0.80 orGroup: Prize # Uncommon @@ -392,4 +392,4 @@ - id: ThronglerToy prob: 0.30 orGroup: Prize - \ No newline at end of file + diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml index 6ba659ccb4..8cbcb089b2 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml @@ -61,7 +61,7 @@ wideAnimationRotation: -90 soundHit: path: "/Audio/Items/drill_hit.ogg" - attackRate: 0.5 + attackRate: 1.5 range: 1.4 damage: types: @@ -72,7 +72,7 @@ heavyRateModifier: 1 heavyRangeModifier: 2 heavyDamageBaseModifier: 1 - heavyStaminaCost: 10 + heavyStaminaCost: 2 maxTargets: 3 angle: 20 diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/metempsychoticMachine.yml b/Resources/Prototypes/Entities/Structures/Machines/metempsychoticMachine.yml similarity index 59% rename from Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/metempsychoticMachine.yml rename to Resources/Prototypes/Entities/Structures/Machines/metempsychoticMachine.yml index d8e791af1e..9667ed12d4 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/metempsychoticMachine.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/metempsychoticMachine.yml @@ -4,22 +4,23 @@ name: metempsychotic machine description: Speeds along the transmigration of a soul to its next vessel. components: - - type: MetempsychoticMachine - type: CloningPod + doMetempsychosis: true + biomassCostMultiplier: 0.5 - type: Machine board: MetempsychoticMachineCircuitboard - type: Sprite - sprite: Nyanotrasen/Structures/Machines/metempsychotic.rsi + sprite: Structures/Machines/metempsychotic.rsi snapCardinals: true layers: - - state: pod_0 + - state: cloning_idle - type: Appearance - type: GenericVisualizer visuals: enum.CloningPodVisuals.Status: base: - Cloning: { state: pod_1 } - NoMind: { state: pod_1 } - Gore: { state: pod_1 } - Idle: { state: pod_0 } + Cloning: { state: cloning_active } + NoMind: { state: cloning_active } + Gore: { state: cloning_failed } + Idle: { state: cloning_idle } - type: Psionic diff --git a/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml b/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml index 4f474765ba..64e247144d 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml @@ -48,8 +48,12 @@ - type: EmitSoundOnSpawn sound: path: /Audio/Effects/teleport_arrival.ogg - - type: Psionic #Nyano - Summary: makes psionic on creation. - - type: GlimmerSource #Nyano - Summary: makes this a potential source of Glimmer. + - type: Psionic + removable: false + - type: InnatePsionicPowers + powersToAdd: + - TelepathyPower + - type: GlimmerSource active: false - type: SecretDataAnomaly randomStartSecretMin: 0 diff --git a/Resources/Prototypes/Entities/Structures/Specific/oracle.yml b/Resources/Prototypes/Entities/Structures/Specific/oracle.yml index 64f3b2c4d9..b60906b55e 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/oracle.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/oracle.yml @@ -18,6 +18,11 @@ - type: Actions - type: Psionic removable: false + psychognomicDescriptors: + - p-descriptor-old + - p-descriptor-demiurgic + - p-descriptor-mysterious + - p-descriptor-emanative - type: InnatePsionicPowers powersToAdd: - XenoglossyPower diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/CircuitBoards/production.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/CircuitBoards/production.yml index fc40ea1639..6e80ec7c4e 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/CircuitBoards/production.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/CircuitBoards/production.yml @@ -1,24 +1,3 @@ -- type: entity - id: MetempsychoticMachineCircuitboard - parent: BaseMachineCircuitboard - name: metempsychotic machine machine board - description: A machine printed circuit board for a cloning pod - components: - - type: Sprite - state: medical - - type: MachineBoard - prototype: MetempsychoticMachine - requirements: - Capacitor: 2 - Manipulator: 2 - materialRequirements: - Glass: 1 - Cable: 1 - - type: ReverseEngineering - difficulty: 3 - recipes: - - MetempsychoticMachineCircuitboard - - type: entity id: ReverseEngineeringMachineCircuitboard parent: BaseMachineCircuitboard diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/glimmer_prober.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/glimmer_prober.yml index 102000f8b2..abdc8d6eeb 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/glimmer_prober.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/glimmer_prober.yml @@ -5,6 +5,10 @@ description: Probes the noösphere to generate research points. Might be worth turning off if glimmer is a problem. components: - type: Psionic + removable: false + - type: InnatePsionicPowers + powersToAdd: + - TelepathyPower - type: GlimmerSource - type: Construction graph: GlimmerDevices @@ -91,6 +95,7 @@ description: Uses electricity to try and sort out the noösphere, reducing its level of entropy. components: - type: Psionic + removable: false - type: GlimmerSource addToGlimmer: false - type: Construction diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/sophicscribe.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/sophicscribe.yml index b00e93e783..1a065b001c 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/sophicscribe.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/sophicscribe.yml @@ -31,6 +31,10 @@ - type: Actions - type: Psionic removable: false + psychognomicDescriptors: + - p-descriptor-old + - p-descriptor-demiurgic + - p-descriptor-mysterious - type: InnatePsionicPowers powersToAdd: - XenoglossyPower diff --git a/Resources/Prototypes/Nyanotrasen/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Nyanotrasen/Recipes/Lathes/electronics.yml index 418864cd40..1e53c715af 100644 --- a/Resources/Prototypes/Nyanotrasen/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Nyanotrasen/Recipes/Lathes/electronics.yml @@ -1,12 +1,3 @@ -- type: latheRecipe - id: MetempsychoticMachineCircuitboard - result: MetempsychoticMachineCircuitboard - completetime: 4 - materials: - Steel: 100 - Glass: 900 - Gold: 100 - - type: latheRecipe id: ReverseEngineeringMachineCircuitboard result: ReverseEngineeringMachineCircuitboard diff --git a/Resources/Prototypes/Nyanotrasen/Research/experimental.yml b/Resources/Prototypes/Nyanotrasen/Research/experimental.yml index 7c89c0f7d0..289efd317c 100644 --- a/Resources/Prototypes/Nyanotrasen/Research/experimental.yml +++ b/Resources/Prototypes/Nyanotrasen/Research/experimental.yml @@ -14,21 +14,6 @@ - ClothingHeadCage # - ShellSoulbreaker # DeltaV - Placing it under Exotic Ammunition because that's what it is. -- type: technology - id: Metempsychosis - name: research-technology-metempsychosis - icon: - sprite: Nyanotrasen/Structures/Machines/metempsychotic.rsi - state: pod_0 - discipline: Experimental - tier: 2 - cost: 15000 - recipeUnlocks: - - BiomassReclaimerMachineCircuitboard - - CloningConsoleComputerCircuitboard - - MedicalScannerMachineCircuitboard - - MetempsychoticMachineCircuitboard - # Tier 3 diff --git a/Resources/Prototypes/Nyanotrasen/metempsychoticNonHumanoids.yml b/Resources/Prototypes/Nyanotrasen/metempsychoticNonHumanoids.yml index dcbe23f608..feabd9977b 100644 --- a/Resources/Prototypes/Nyanotrasen/metempsychoticNonHumanoids.yml +++ b/Resources/Prototypes/Nyanotrasen/metempsychoticNonHumanoids.yml @@ -3,7 +3,7 @@ weights: MobMonkey: 1 MobGorilla: 1 - # MobKangaroo: 0.5 # Mobs here need to be either VERY funny or up to standard. + MobKangaroo: 0.5 MobXenoQueen: 0.01 MobCrab: 0.01 - MobPenguin: 1 #ODJ's orders + MobPenguin: 1 diff --git a/Resources/Prototypes/Nyanotrasen/psionicPowers.yml b/Resources/Prototypes/Nyanotrasen/psionicPowers.yml index 7cb38b2c54..0781122b8e 100644 --- a/Resources/Prototypes/Nyanotrasen/psionicPowers.yml +++ b/Resources/Prototypes/Nyanotrasen/psionicPowers.yml @@ -6,6 +6,7 @@ #TelegnosisPower: 1 PsionicRegenerationPower: 1 XenoglossyPower: 0.75 + PsychognomyPower: 0.75 MassSleepPower: 0.3 # PsionicInvisibilityPower: 0.15 MindSwapPower: 0.15 diff --git a/Resources/Prototypes/Psionics/psionics.yml b/Resources/Prototypes/Psionics/psionics.yml index 132365a37b..b8f798d4b6 100644 --- a/Resources/Prototypes/Psionics/psionics.yml +++ b/Resources/Prototypes/Psionics/psionics.yml @@ -120,6 +120,15 @@ initializationFeedback: xenoglossy-power-initialization-feedback metapsionicFeedback: psionic-language-power-feedback # Reuse for telepathy, clairaudience, etc +- type: psionicPower + id: PsychognomyPower #i.e. reverse physiognomy + name: Psychognomy #psycho- + -gnomy. I reccomend starting with your language's equilvalent of "physiognomy" and working backwards. i.e. психо(г)номика + description: psychognomy-power-description + components: + - type: Psychognomist + initializationFeedback: psychognomy-power-initialization-feedback + metapsionicFeedback: psionic-language-power-feedback + - type: psionicPower id: TelepathyPower name: Telepathy @@ -127,4 +136,4 @@ components: - type: Telepathy initializationFeedback: telepathy-power-initialization-feedback - metapsionicFeedback: psionic-language-power-feedback # Reuse for telepathy, clairaudience, etc \ No newline at end of file + metapsionicFeedback: psionic-language-power-feedback # Reuse for telepathy, clairaudience, etc diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index 60c0fc1524..12b5bedf10 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -117,6 +117,15 @@ Glass: 900 Gold: 100 +- type: latheRecipe + id: MetempsychoticMachineCircuitboard + result: MetempsychoticMachineCircuitboard + completetime: 4 + materials: + Steel: 100 + Glass: 900 + Gold: 100 + - type: latheRecipe id: ThermomachineFreezerMachineCircuitBoard result: ThermomachineFreezerMachineCircuitBoard @@ -921,7 +930,7 @@ materials: Steel: 100 Glass: 900 - + - type: latheRecipe id: ShuttleGunPerforatorCircuitboard result: ShuttleGunPerforatorCircuitboard @@ -930,7 +939,7 @@ Steel: 100 Glass: 900 Gold: 100 - + - type: latheRecipe id: ShuttleGunKineticCircuitboard result: ShuttleGunKineticCircuitboard @@ -938,7 +947,7 @@ materials: Steel: 100 Glass: 900 - + - type: latheRecipe id: ShuttleGunFriendshipCircuitboard result: ShuttleGunFriendshipCircuitboard @@ -947,7 +956,7 @@ Steel: 100 Glass: 900 Gold: 50 - + - type: latheRecipe id: ShuttleGunDusterCircuitboard result: ShuttleGunDusterCircuitboard diff --git a/Resources/Prototypes/Research/experimental.yml b/Resources/Prototypes/Research/experimental.yml index 65186340d7..0dbcded546 100644 --- a/Resources/Prototypes/Research/experimental.yml +++ b/Resources/Prototypes/Research/experimental.yml @@ -137,6 +137,21 @@ - WeaponParticleDecelerator - HoloprojectorField +- type: technology + id: Metempsychosis + name: research-technology-metempsychosis + icon: + sprite: Structures/Machines/metempsychotic.rsi + state: cloning_idle + discipline: Experimental + tier: 2 + cost: 15000 + recipeUnlocks: + - BiomassReclaimerMachineCircuitboard + - CloningConsoleComputerCircuitboard + - MedicalScannerMachineCircuitboard + - MetempsychoticMachineCircuitboard + # Tier 3 #- type: technology # DeltaV - LRP diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml b/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml index 751da63f2e..5eb8c61f03 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml @@ -6,7 +6,7 @@ antagAdvantage: 2 # DeltaV - Reduced TC: External Access requirements: - !type:CharacterOverallTimeRequirement - time: 7200 + min: 7200 startingGear: CargoTechGear icon: "JobIconCargoTechnician" supervisors: job-supervisors-qm diff --git a/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml b/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml index f47f0ed1dd..197542acf3 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml @@ -5,7 +5,7 @@ playTimeTracker: JobMedicalIntern requirements: - !type:CharacterOverallTimeRequirement - time: 7200 + min: 7200 # - !type:DepartmentTimeRequirement # Lost Paradise - return time limit # department: Medical # time: 54000 # 15 hrs diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml b/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml index c8fd665b6a..c87f00cbd6 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml @@ -5,7 +5,7 @@ playTimeTracker: JobResearchAssistant requirements: - !type:CharacterOverallTimeRequirement - time: 7200 + min: 7200 # - !type:DepartmentTimeRequirement # Lost Paradise - return time limit # department: Science # time: 54000 #15 hrs diff --git a/Resources/Prototypes/Roles/Jobs/departments.yml b/Resources/Prototypes/Roles/Jobs/departments.yml index ac1eefb5f7..6dad18f5d0 100644 --- a/Resources/Prototypes/Roles/Jobs/departments.yml +++ b/Resources/Prototypes/Roles/Jobs/departments.yml @@ -105,25 +105,16 @@ # - Chaplain # Lost Paradise - move to Service - ForensicMantis # Nyanotrasen - ForensicMantis, see Resources/Prototypes/Nyanotrasen/Roles/Jobs/Epistemics/forensicmantis.yml -- type: department - id: Specific - description: department-Specific-description - color: "#9FED58" - weight: 10 - roles: - - Boxer - - Reporter - - Zookeeper - - Psychologist - - MartialArtist # Nyanotrasen - MartialArtist, see Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/martialartist.yml - - Gladiator # Nyanotrasen - Gladiator, see Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/gladiator.yml - primary: false - -- type: department - id: CentralCommand - description: department-CentralCommand-description - color: "#49C423" - roles: - - LPPBlueShieldOfficer - primary: false - weight: 101 +# - type: department + # id: Specific + # description: department-Specific-description + # color: "#9FED58" + # weight: 10 + # roles: + # - Boxer + # - Reporter + # - Zookeeper + # - Psychologist + # - MartialArtist # Nyanotrasen - MartialArtist, see Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/martialartist.yml + # - Gladiator # Nyanotrasen - Gladiator, see Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/gladiator.yml + # primary: false diff --git a/Resources/Prototypes/Species/arachne.yml b/Resources/Prototypes/Species/arachne.yml index ed494c37cc..bd73f2fb8a 100644 --- a/Resources/Prototypes/Species/arachne.yml +++ b/Resources/Prototypes/Species/arachne.yml @@ -1,7 +1,7 @@ - type: species id: Arachne name: species-name-arachne - roundStart: true + roundStart: false prototype: MobArachne sprites: MobArachneSprites markingLimits: MobArachneMarkingLimits diff --git a/Resources/Prototypes/Species/human.yml b/Resources/Prototypes/Species/human.yml index 99ec35da2e..ac864877bf 100644 --- a/Resources/Prototypes/Species/human.yml +++ b/Resources/Prototypes/Species/human.yml @@ -48,19 +48,19 @@ points: 1 required: false Tail: # the cat tail joke - points: 0 + points: 1 required: false HeadTop: # the cat ear joke - points: 0 + points: 1 required: false Chest: points: 1 required: false Legs: - points: 6 + points: 4 required: false Arms: - points: 6 + points: 4 required: false - type: humanoidBaseSprite diff --git a/Resources/Prototypes/_LostParadise/Access/security.yml b/Resources/Prototypes/_LostParadise/Access/security.yml deleted file mode 100644 index abfd61a889..0000000000 --- a/Resources/Prototypes/_LostParadise/Access/security.yml +++ /dev/null @@ -1,3 +0,0 @@ -- type: accessLevel - id: LPPPrisoner - name: Заключенный diff --git a/Resources/Prototypes/_LostParadise/Entities/Clothing/Back/backpack.yml b/Resources/Prototypes/_LostParadise/Entities/Clothing/Back/backpack.yml index 973dc8fd75..850ea5153d 100644 --- a/Resources/Prototypes/_LostParadise/Entities/Clothing/Back/backpack.yml +++ b/Resources/Prototypes/_LostParadise/Entities/Clothing/Back/backpack.yml @@ -50,15 +50,6 @@ - type: Sprite sprite: _LostParadise/Clothing/Back/Backpacks/black-pg-backpack.rsi -- type: entity - parent: ClothingBackpack - id: LPPClothingBackpackRobotics - name: robotics backpack - description: A red-striped backpack specially designed for holding spare parts and materials. - components: - - type: Sprite - sprite: _LostParadise/Clothing/Back/Backpacks/roboticist.rsi - - type: entity parent: ClothingBackpack id: LPPClothingBackpackSecurityEngineer @@ -93,4 +84,4 @@ description: Вместит всё, что надо. components: - type: Sprite - sprite: _LostParadise/Clothing/Back/Backpacks/upgbacpacks.rsi \ No newline at end of file + sprite: _LostParadise/Clothing/Back/Backpacks/upgbacpacks.rsi diff --git a/Resources/Prototypes/_LostParadise/Entities/Clothing/Back/duffel.yml b/Resources/Prototypes/_LostParadise/Entities/Clothing/Back/duffel.yml index 3accb62e51..fcce9dd590 100644 --- a/Resources/Prototypes/_LostParadise/Entities/Clothing/Back/duffel.yml +++ b/Resources/Prototypes/_LostParadise/Entities/Clothing/Back/duffel.yml @@ -25,15 +25,6 @@ - 0,0,9,5 - type: HeldSpeedModifier -- type: entity - parent: ClothingBackpackDuffel - id: LPPClothingBackpackDuffelRobotics - name: robotics duffel bag - description: A large red-striped duffel bag for holding extra robotics related parts and materials. - components: - - type: Sprite - sprite: _LostParadise/Clothing/Back/Duffels/roboticist.rsi - - type: entity parent: ClothingBackpackDuffel id: LPPClothingBackpackDuffelSecurityEngineer diff --git a/Resources/Prototypes/_LostParadise/Entities/Clothing/Back/satchel.yml b/Resources/Prototypes/_LostParadise/Entities/Clothing/Back/satchel.yml index 3604985bc6..3fbba8762a 100644 --- a/Resources/Prototypes/_LostParadise/Entities/Clothing/Back/satchel.yml +++ b/Resources/Prototypes/_LostParadise/Entities/Clothing/Back/satchel.yml @@ -7,15 +7,6 @@ - type: Sprite sprite: _LostParadise/Clothing/Back/Satchels/hop.rsi -- type: entity - parent: ClothingBackpackSatchel - id: LPPClothingBackpackSatchelRobotics - name: robotics satchel - description: A red-striped satchel useful for holding spare parts and materials. - components: - - type: Sprite - sprite: _LostParadise/Clothing/Back/Satchels/roboticist.rsi - - type: entity parent: LPPClothingSatchelSmugglerAbstract id: LPPClothingSatchelSmuggler @@ -55,4 +46,4 @@ description: Convenient to throw off rifle magazines. components: - type: Sprite - sprite: _LostParadise/Clothing/Back/Satchels/expeditor.rsi \ No newline at end of file + sprite: _LostParadise/Clothing/Back/Satchels/expeditor.rsi diff --git a/Resources/Prototypes/_LostParadise/Entities/Clothing/Ears/headsets.yml b/Resources/Prototypes/_LostParadise/Entities/Clothing/Ears/headsets.yml index 89cb87df0b..c5a05c35d5 100644 --- a/Resources/Prototypes/_LostParadise/Entities/Clothing/Ears/headsets.yml +++ b/Resources/Prototypes/_LostParadise/Entities/Clothing/Ears/headsets.yml @@ -14,34 +14,3 @@ sprite: _LostParadise/Clothing/Ears/security.rsi - type: Clothing sprite: _LostParadise/Clothing/Ears/security.rsi - -- type: entity - parent: ClothingHeadset - id: ClothingHeadsetMagistrate - name: magistrate headset - description: A headset for internal affairs agent to hear the captain's last words. - components: - - type: ContainerFill - containers: - key_slots: - - LPPEncryptionKeyLaw - - EncryptionKeySecurity - - EncryptionKeyCommon - - EncryptionKeyCommand - - type: Sprite - sprite: Clothing/Ears/Headsets/servicesecurity.rsi - -- type: entity - parent: ClothingHeadset - id: ClothingHeadsetLawyer - name: iaa headset - description: A headset for internal affairs agent to hear the captain's last words. - components: - - type: ContainerFill - containers: - key_slots: - - LPPEncryptionKeyLaw - - EncryptionKeySecurity - - EncryptionKeyCommon - - type: Sprite - sprite: Clothing/Ears/Headsets/servicesecurity.rsi diff --git a/Resources/Prototypes/_LostParadise/Entities/Clothing/LPP/Underwear/underwear.yml b/Resources/Prototypes/_LostParadise/Entities/Clothing/LPP/Underwear/underwear.yml index 2fd3950b53..c91e657fb6 100644 --- a/Resources/Prototypes/_LostParadise/Entities/Clothing/LPP/Underwear/underwear.yml +++ b/Resources/Prototypes/_LostParadise/Entities/Clothing/LPP/Underwear/underwear.yml @@ -9,7 +9,7 @@ - type: Item size: Tiny - type: Clothing - slots: [underwear] + slots: UNDERWEAR - type: Tag tags: - underwear diff --git a/Resources/Prototypes/_LostParadise/Entities/Clothing/Uniforms/misc_roles.yml b/Resources/Prototypes/_LostParadise/Entities/Clothing/Uniforms/misc_roles.yml index a58aa8cad9..b92f4969b1 100644 --- a/Resources/Prototypes/_LostParadise/Entities/Clothing/Uniforms/misc_roles.yml +++ b/Resources/Prototypes/_LostParadise/Entities/Clothing/Uniforms/misc_roles.yml @@ -17,28 +17,6 @@ containers: toggleable-clothing: !type:ContainerSlot {} -- type: entity - parent: ClothingUniformJumpsuitLawyerBlack - id: LPPIAASuite - name: iaa suit - description: IAA suit. - components: - - type: Sprite - sprite: _LostParadise/Clothing/Uniforms/Jumpsuit/iaa-suite.rsi - - type: Clothing - sprite: _LostParadise/Clothing/Uniforms/Jumpsuit/iaa-suite.rsi - -- type: entity - parent: ClothingUniformJumpsuitLawyerBlack - id: LPPMagistrateUniform - name: Magistrate suit - description: Magitstrate suit. - components: - - type: Sprite - sprite: _LostParadise/Clothing/Uniforms/Jumpsuit/Magistrate-suite.rsi - - type: Clothing - sprite: _LostParadise/Clothing/Uniforms/Jumpsuit/Magistrate-suite.rsi - - type: entity parent: ClothingUniformBase id: LPPClothingUniformJumpsuitBlueshield diff --git a/Resources/Prototypes/_LostParadise/Entities/Markers/Spawners/jobs.yml b/Resources/Prototypes/_LostParadise/Entities/Markers/Spawners/jobs.yml index 9b0f1dd610..d080fe8ef0 100644 --- a/Resources/Prototypes/_LostParadise/Entities/Markers/Spawners/jobs.yml +++ b/Resources/Prototypes/_LostParadise/Entities/Markers/Spawners/jobs.yml @@ -1,39 +1,3 @@ -- type: entity - id: LPPSpawnPointPrisoner - parent: SpawnPointJobBase - name: prisoner - components: - - type: SpawnPoint - job_id: LPPPrisoner - - type: Sprite - layers: - - state: green - - state: passenger - -- type: entity - id: LPPSpawnPointLawyer - parent: SpawnPointJobBase - name: lawyer - components: - - type: SpawnPoint - job_id: Lawyer - - type: Sprite - layers: - - state: green - - state: lawyer - -- type: entity - id: LPPSpawnPointVirologist - parent: SpawnPointJobBase - name: virologist - components: - - type: SpawnPoint - job_id: LPPVirologist - - type: Sprite - layers: - - state: green - - state: virologist - - type: entity id: LPPAdjutantSpawn parent: SpawnPointJobBase @@ -46,18 +10,6 @@ - state: green - state: hop -#- type: entity -# id: SpawnMagistrate -# parent: SpawnPointJobBase -# name: magistrate spawn -# components: -# - type: SpawnPoint -# job_id: Magistrate -# - type: Sprite -# layers: -# - state: green -# - state: reporter - - type: entity id: SpawnSecPilot parent: SpawnPointJobBase @@ -81,15 +33,3 @@ layers: - state: green - state: expeditor - -- type: entity - id: SpawnRoboticist - parent: SpawnPointJobBase - name: Roboticist - components: - - type: SpawnPoint - job_id: Roboticist - - type: Sprite - layers: - - state: green - - state: roboticist diff --git a/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Customization/Markings/elf_hair.yml b/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Customization/Markings/elf_hair.yml deleted file mode 100644 index 4063e894b2..0000000000 --- a/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Customization/Markings/elf_hair.yml +++ /dev/null @@ -1,2032 +0,0 @@ -- type: marking - id: ElfHairAfro - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: afro -- type: marking - id: ElfHairAfro2 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: afro2 -- type: marking - id: ElfHairBigafro - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: bigafro -- type: marking - id: ElfHairAntenna - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: antenna -- type: marking - id: ElfHairBalding - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: e -- type: marking - id: ElfHairBedhead - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: bedhead -- type: marking - id: ElfHairBedheadv2 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: bedheadv2 -- type: marking - id: ElfHairBedheadv3 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: bedheadv3 -- type: marking - id: ElfHairLongBedhead - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: long_bedhead -- type: marking - id: ElfHairFloorlengthBedhead - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: floorlength_bedhead -- type: marking - id: ElfHairBeehive - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: beehive -- type: marking - id: ElfHairBeehivev2 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: beehivev2 -- type: marking - id: ElfHairBob - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: bob -- type: marking - id: ElfHairBob2 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: bob2 -- type: marking - id: ElfHairBobcut - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: bobcut -- type: marking - id: ElfHairBob4 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: bob4 -- type: marking - id: ElfHairBobcurl - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: bobcurl -- type: marking - id: ElfHairBoddicker - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: boddicker -- type: marking - id: ElfHairBowlcut - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: bowlcut -- type: marking - id: ElfHairBowlcut2 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: bowlcut2 -- type: marking - id: ElfHairBraid - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: braid -- type: marking - id: ElfHairBraided - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: braided -- type: marking - id: ElfHairBraidfront - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: braidfront -- type: marking - id: ElfHairBraid2 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: braid2 -- type: marking - id: ElfHairHbraid - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: hbraid -- type: marking - id: ElfHairShortbraid - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: shortbraid -- type: marking - id: ElfHairBraidtail - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: braidtail -- type: marking - id: ElfHairBun - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: bun -- type: marking - id: ElfHairBunhead2 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: bunhead2 -- type: marking - id: ElfHairBun3 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: bun3 -- type: marking - id: ElfHairLargebun - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: largebun -- type: marking - id: ElfHairManbun - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: manbun -- type: marking - id: ElfHairTightbun - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: tightbun -- type: marking - id: ElfHairBusiness - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: business -- type: marking - id: ElfHairBusiness2 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: business2 -- type: marking - id: ElfHairBusiness3 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: business3 -- type: marking - id: ElfHairBusiness4 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: business4 -- type: marking - id: ElfHairBuzzcut - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: buzzcut -- type: marking - id: ElfHairCia - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: cia -- type: marking - id: ElfHairCoffeehouse - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: coffeehouse -- type: marking - id: ElfHairCombover - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: combover -- type: marking - id: ElfHairCornrows - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: cornrows -- type: marking - id: ElfHairCornrows2 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: cornrows2 -- type: marking - id: ElfHairCornrowbun - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: cornrowbun -- type: marking - id: ElfHairCornrowbraid - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: cornrowbraid -- type: marking - id: ElfHairCornrowtail - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: cornrowtail -- type: marking - id: ElfHairCrewcut - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: crewcut -- type: marking - id: ElfHairCurls - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: curls -- type: marking - id: ElfHairC - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: c -- type: marking - id: ElfHairDandypompadour - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: dandypompadour -- type: marking - id: ElfHairDevilock - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: devilock -- type: marking - id: ElfHairDoublebun - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: doublebun -- type: marking - id: ElfHairDreads - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: dreads -- type: marking - id: ElfHairDrillruru - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: drillruru -- type: marking - id: ElfHairDrillhairextended - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: drillhairextended -- type: marking - id: ElfHairEmo - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: emo -- type: marking - id: ElfHairEmofringe - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: emofringe -- type: marking - id: ElfHairNofade - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: nofade -- type: marking - id: ElfHairHighfade - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: highfade -- type: marking - id: ElfHairMedfade - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: medfade -- type: marking - id: ElfHairLowfade - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: lowfade -- type: marking - id: ElfHairBaldfade - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: baldfade -- type: marking - id: ElfHairFeather - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: feather -- type: marking - id: ElfHairFather - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: father -- type: marking - id: ElfHairSargeant - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: sargeant -- type: marking - id: ElfHairFlair - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: flair -- type: marking - id: ElfHairBigflattop - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: bigflattop -- type: marking - id: ElfHairFlow - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: f -- type: marking - id: ElfHairGelled - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: gelled -- type: marking - id: ElfHairGentle - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: gentle -- type: marking - id: ElfHairHalfbang - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: halfbang -- type: marking - id: ElfHairHalfbang2 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: halfbang2 -- type: marking - id: ElfHairHalfshaved - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: halfshaved -- type: marking - id: ElfHairHedgehog - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: hedgehog -- type: marking - id: ElfHairHimecut - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: himecut -- type: marking - id: ElfHairHimecut2 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: himecut2 -- type: marking - id: ElfHairShorthime - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: shorthime -- type: marking - id: ElfHairHimeup - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: himeup -- type: marking - id: ElfHairHitop - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: hitop -- type: marking - id: ElfHairJade - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: jade -- type: marking - id: ElfHairJensen - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: jensen -- type: marking - id: ElfHairJoestar - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: joestar -- type: marking - id: ElfHairKeanu - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: keanu -- type: marking - id: ElfHairKusanagi - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: kusanagi -- type: marking - id: ElfHairLong - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: long -- type: marking - id: ElfHairLong2 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: long2 -- type: marking - id: ElfHairLong3 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: long3 -- type: marking - id: ElfHairLongovereye - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: longovereye -- type: marking - id: ElfHairLbangs - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: lbangs -- type: marking - id: ElfHairLongemo - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: longemo -- type: marking - id: ElfHairLongfringe - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: longfringe -- type: marking - id: ElfHairLongsidepart - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: longsidepart -- type: marking - id: ElfHairMegaeyebrows - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: megaeyebrows -- type: marking - id: ElfHairMessy - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: messy -- type: marking - id: ElfHairModern - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: modern -- type: marking - id: ElfHairMohawk - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: d -- type: marking - id: ElfHairNitori - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: nitori -- type: marking - id: ElfHairReversemohawk - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: reversemohawk -- type: marking - id: ElfHairUnshavenMohawk - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: unshaven_mohawk -- type: marking - id: ElfHairMulder - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: mulder -- type: marking - id: ElfHairOdango - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: odango -- type: marking - id: ElfHairOmbre - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: ombre -- type: marking - id: ElfHairOneshoulder - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: oneshoulder -- type: marking - id: ElfHairShortovereye - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: shortovereye -- type: marking - id: ElfHairOxton - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: oxton -- type: marking - id: ElfHairParted - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: parted -- type: marking - id: ElfHairPart - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: part -- type: marking - id: ElfHairKagami - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: kagami -- type: marking - id: ElfHairPigtails - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: pigtails -- type: marking - id: ElfHairPigtails2 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: pigtails2 -- type: marking - id: ElfHairPixie - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: pixie -- type: marking - id: ElfHairPompadour - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: pompadour -- type: marking - id: ElfHairBigpompadour - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: bigpompadour -- type: marking - id: ElfHairPonytail - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: ponytail -- type: marking - id: ElfHairPonytail2 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: ponytail2 -- type: marking - id: ElfHairPonytail3 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: ponytail3 -- type: marking - id: ElfHairPonytail4 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: ponytail4 -- type: marking - id: ElfHairPonytail5 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: ponytail5 -- type: marking - id: ElfHairPonytail6 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: ponytail6 -- type: marking - id: ElfHairPonytail7 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: ponytail7 -- type: marking - id: ElfHairHighponytail - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: highponytail -- type: marking - id: ElfHairStail - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: stail -- type: marking - id: ElfHairLongstraightponytail - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: longstraightponytail -- type: marking - id: ElfHairCountry - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: country -- type: marking - id: ElfHairFringetail - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: fringetail -- type: marking - id: ElfHairSidetail - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: sidetail -- type: marking - id: ElfHairSidetail2 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: sidetail2 -- type: marking - id: ElfHairSidetail3 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: sidetail3 -- type: marking - id: ElfHairSidetail4 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: sidetail4 -- type: marking - id: ElfHairSpikyponytail - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: spikyponytail -- type: marking - id: ElfHairPoofy - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: poofy -- type: marking - id: ElfHairQuiff - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: quiff -- type: marking - id: ElfHairRonin - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: ronin -- type: marking - id: ElfHairShaved - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: shaved -- type: marking - id: ElfHairShavedpart - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: shavedpart -- type: marking - id: ElfHairShortbangs - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: shortbangs -- type: marking - id: ElfHairA - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: a -- type: marking - id: ElfHairShorthair2 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: shorthair2 -- type: marking - id: ElfHairShorthair3 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: shorthair3 -- type: marking - id: ElfHairD - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: d -- type: marking - id: ElfHairE - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: e -- type: marking - id: ElfHairF - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: f -- type: marking - id: ElfHairShorthairg - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: shorthairg -- type: marking - id: ElfHair80s - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: 80s -- type: marking - id: ElfHairRosa - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: rosa -- type: marking - id: ElfHairB - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: b -- type: marking - id: ElfHairSidecut - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: sidecut -- type: marking - id: ElfHairSkinhead - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: skinhead -- type: marking - id: ElfHairProtagonist - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: protagonist -- type: marking - id: ElfHairSpikey - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: spikey -- type: marking - id: ElfHairSpiky - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: spiky -- type: marking - id: ElfHairSpiky2 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: spiky2 -- type: marking - id: ElfHairSwept - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: swept -- type: marking - id: ElfHairSwept2 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: swept2 -- type: marking - id: ElfHairThinning - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: thinning -- type: marking - id: ElfHairThinningfront - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: thinningfront -- type: marking - id: ElfHairThinningrear - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: thinningrear -- type: marking - id: ElfHairTopknot - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: topknot -- type: marking - id: ElfHairTressshoulder - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: tressshoulder -- type: marking - id: ElfHairTrimmed - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: trimmed -- type: marking - id: ElfHairTrimflat - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: trimflat -- type: marking - id: ElfHairTwintail - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: twintail -- type: marking - id: ElfHairUndercut - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: undercut -- type: marking - id: ElfHairUndercutleft - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: undercutleft -- type: marking - id: ElfHairUndercutright - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: undercutright -- type: marking - id: ElfHairUnkept - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: unkept -- type: marking - id: ElfHairUpdo - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: updo -- type: marking - id: ElfHairVlong - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: vlong -- type: marking - id: ElfHairLongest - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: longest -- type: marking - id: ElfHairLongest2 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: longest2 -- type: marking - id: ElfHairVeryshortovereyealternate - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: veryshortovereyealternate -- type: marking - id: ElfHairVlongfringe - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: vlongfringe -- type: marking - id: ElfHairVolaju - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: volaju -- type: marking - id: ElfHairWisp - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Mobs/Customization/human_hair.rsi - state: wisp - -- type: marking - id: ElfHairAfricanPigtails - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: africanpigtails - -- type: marking - id: ElfHairAfropuffdouble - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: afropuffdouble - -- type: marking - id: ElfHairAfropuffleft - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: afropuffleft - -- type: marking - id: ElfHairAfropuffright - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: afropuffright - -- type: marking - id: ElfHairAmazon - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: amazon - -- type: marking - id: ElfHairAstolfo - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: astolfo - -- type: marking - id: ElfHairBaum - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: baum - -- type: marking - id: ElfHairBeachwave - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: beachwave - -- type: marking - id: ElfHairBluntbangs - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: bluntbangs - -- type: marking - id: ElfHairBluntbangsAlt - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: bluntbangs_alt - -- type: marking - id: ElfHairBobcutAlt - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: bobcutalt - -- type: marking - id: ElfHairBunhead4 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: bunhead4 - -- type: marking - id: ElfHairCombed - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: combed - -- type: marking - id: ElfHairCombedbob - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: combedbob - -- type: marking - id: ElfHairCotton - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sponsorOnly: true # Corvax-Sponsors - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: cotton - -- type: marking - id: ElfHairCurly - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: curly - -- type: marking - id: ElfHairDave - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: dave - -- type: marking - id: ElfHairDiagonalBangs - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: diagonal_bangs - -- type: marking - id: ElfHairEmoshort - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: emoshort - -- type: marking - id: ElfHairFingerwave - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sponsorOnly: true # Corvax-Sponsors - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: fingerwave - -- type: marking - id: ElfHairFluffyShort - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: fluffy_short - -- type: marking - id: ElfHairFortuneteller - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sponsorOnly: true # Corvax-Sponsors - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: fortuneteller - -- type: marking - id: ElfHairFortunetellerAlt - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sponsorOnly: true # Corvax-Sponsors - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: fortuneteller_alt - -- type: marking - id: ElfHairFroofylong - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: froofylong - -- type: marking - id: ElfHairGeisha - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: geisha - -- type: marking - id: ElfHairGentle21 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: gentle21 - -- type: marking - id: ElfHairGlammetal - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: glammetal - -- type: marking - id: ElfHairGloomyLong - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: gloomy_long - -- type: marking - id: ElfHairGloomyMedium - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: gloomy_medium - -- type: marking - id: ElfHairGrande - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: grande - -- type: marking - id: ElfHairHalfshave - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: halfshave - -- type: marking - id: ElfHairHalfshaveglamorous - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: halfshave_glamorous - -- type: marking - id: ElfHairHalfshaveLong - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: halfshave_long - -- type: marking - id: ElfHairHalfshaveMessy - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: halfshave_messy - -- type: marking - id: ElfHairHalfshaveMessyLong - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: halfshave_messylong - -- type: marking - id: ElfHairHalfshaveSnout - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: halfshave_snout - -- type: marking - id: ElfHairHightight - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: hightight - -- type: marking - id: ElfHairHyenamane - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: hyenamane - -- type: marking - id: ElfHairJessica - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: jessica - -- type: marking - id: ElfHairLong4 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: long4 - -- type: marking - id: ElfHairLongdtails - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sponsorOnly: true # Corvax-Sponsors - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: longdtails - -- type: marking - id: ElfHairLongerAlt - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: longeralt - -- type: marking - id: ElfHairLongovereyeAlt - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: longovereye_alt - -- type: marking - id: ElfHairLongsidepartstraight - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: longsidepartstraight - -- type: marking - id: ElfHairLooseSlicked - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sponsorOnly: true # Corvax-Sponsors - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: loose_slicked - -- type: marking - id: ElfHairMediumbraid - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: mediumbraid - -- type: marking - id: ElfHairNewyou - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: newyou - -- type: marking - id: ElfHairPonytailAlt - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: ponytailalt - -- type: marking - id: ElfHairPonytailF - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: ponytailf - -- type: marking - id: ElfHairPoofy2 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: poofy2 - -- type: marking - id: ElfHairQuadcurls - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sponsorOnly: true # Corvax-Sponsors - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: quadcurls - -- type: marking - id: ElfHairSabitsuki - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: sabitsuki - -- type: marking - id: ElfHairScully - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: scully - -- type: marking - id: ElfHairShorthair4 - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: shorthair4 - -- type: marking - id: ElfHairShy - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sponsorOnly: true # Corvax-Sponsors - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: shy - -- type: marking - id: ElfHairSimplePonytail - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: simple_ponytail - -- type: marking - id: ElfHairSleaze - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: sleaze - -- type: marking - id: ElfHairSlightlyMessy - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: slightlymessy - -- type: marking - id: ElfHairSlimedroplet - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: slimedroplet - -- type: marking - id: ElfHairSlimedropletAlt - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: slimedroplet_alt - -- type: marking - id: ElfHairSlimespikes - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: slimespikes - -- type: marking - id: ElfHairSlimetendrils - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: slimetendrils - -- type: marking - id: ElfHairSlimetendrilsAlt - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: slimetendrils_alt - -- type: marking - id: ElfHairSpicy - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sponsorOnly: true # Corvax-Sponsors - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: spicy - -- type: marking - id: ElfHairTwintailFloor - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: twintail_floor - -- type: marking - id: ElfHairVeryshortovereye - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: veryshortovereye - -- type: marking - id: ElfHairVictory - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: victory - -- type: marking - id: ElfHairViper - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: viper - -- type: marking - id: ElfHairWife - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sponsorOnly: true # Corvax-Sponsors - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: wife - -- type: marking - id: ElfHairZiegler - bodyPart: Hair - markingCategory: Hair - speciesRestriction: [ElfSpecies] - sprites: - - sprite: Corvax/Mobs/Customization/human_hair.rsi - state: ziegler diff --git a/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Elf/Body/Parts/elf.yml b/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Elf/Body/Parts/elf.yml deleted file mode 100644 index 6e5200d0b8..0000000000 --- a/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Elf/Body/Parts/elf.yml +++ /dev/null @@ -1,38 +0,0 @@ -- type: entity - id: PartElf - parent: BaseItem - name: PartElf - abstract: true - components: - - type: Damageable - damageContainer: Biological - - type: BodyPart - - type: ContainerContainer - containers: - bodypart: !type:Container - ents: [] - -- type: entity - id: HeadElf - name: HeadElf - parent: PartElf - components: - - type: Sprite - sprite: _LostParadise/Mobs/Species/Elf/parts.rsi - state: "head_m" - - type: Icon - sprite: _LostParadise/Mobs/Species/Elf/parts.rsi - state: "head_m" - - type: BodyPart - partType: Head - vital: true - - type: Extractable - juiceSolution: - reagents: - - ReagentId: Fat - Quantity: 5 - - ReagentId: Blood - Quantity: 10 - - type: Tag - tags: - - Head diff --git a/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Elf/Body/Prototypes/elf.yml b/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Elf/Body/Prototypes/elf.yml deleted file mode 100644 index cfbdb34b95..0000000000 --- a/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Elf/Body/Prototypes/elf.yml +++ /dev/null @@ -1,49 +0,0 @@ -- type: body - id: Elf - name: "elf" - root: torso - slots: - head: - part: HeadElf - connections: - - torso - organs: - brain: OrganHumanBrain - eyes: OrganHumanEyes - torso: - part: TorsoHuman - connections: - - left arm - - right arm - - left leg - - right leg - organs: - heart: OrganHumanHeart - lungs: OrganHumanLungs - stomach: OrganHumanStomach - liver: OrganHumanLiver - kidneys: OrganHumanKidneys - right arm: - part: RightArmHuman - connections: - - right hand - left arm: - part: LeftArmHuman - connections: - - left hand - right hand: - part: RightHandHuman - left hand: - part: LeftHandHuman - right leg: - part: RightLegHuman - connections: - - right foot - left leg: - part: LeftLegHuman - connections: - - left foot - right foot: - part: RightFootHuman - left foot: - part: LeftFootHuman diff --git a/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Elf/Entities/Mobs/Player/elf.yml b/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Elf/Entities/Mobs/Player/elf.yml deleted file mode 100644 index a2a44a5188..0000000000 --- a/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Elf/Entities/Mobs/Player/elf.yml +++ /dev/null @@ -1,27 +0,0 @@ -- type: entity - save: false - name: Urist McHands The Elf - parent: BaseMobElf - id: MobElf - components: - - type: CombatMode - - type: InteractionPopup - successChance: 1 - interactSuccessString: hugging-success-generic - interactSuccessSound: /Audio/Effects/thudswoosh.ogg - messagePerceivedByOthers: hugging-success-generic-others - - type: MindContainer - showExamineInfo: true - - type: Input - context: "human" - - type: MobMover - - type: InputMover - - type: Alerts - - type: Actions - - type: Eye - - type: CameraRecoil - - type: Examiner - - type: CanHostGuardian - - type: NpcFactionMember - factions: - - NanoTrasen diff --git a/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Elf/Entities/Mobs/Species/elf.yml b/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Elf/Entities/Mobs/Species/elf.yml deleted file mode 100644 index 257a09e97b..0000000000 --- a/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Elf/Entities/Mobs/Species/elf.yml +++ /dev/null @@ -1,76 +0,0 @@ -- type: entity - save: false - name: Urist McHands The Elf - parent: BaseMobSpeciesOrganic - id: BaseMobElf - abstract: true - components: - - type: Hunger - starvationDamage: - types: - Cold: 0.5 - Bloodloss: 0.5 - - type: Thirst - - type: Perishable - - type: Icon - sprite: Mobs/Species/Slime/parts.rsi - state: full - - type: Respirator - damage: - types: - Asphyxiation: 2 - damageRecovery: - types: - Asphyxiation: -1.0 - - type: Carriable - - type: Sprite - noRot: true - drawdepth: Mobs - scale: 1, 1.2 - - type: Body - prototype: Elf - requiredLegs: 2 - - type: Butcherable - butcheringType: Spike - spawned: - - id: FoodMeatHuman - amount: 5 - - type: Fixtures - fixtures: # TODO: This needs a second fixture just for mob collisions. - fix1: - shape: - !type:PhysShapeCircle - radius: 0.40 - density: 80 - restitution: 0.0 - mask: - - MobMask - layer: - - MobLayer - - type: Vocal - sounds: - Male: MaleHuman - Female: FemaleHuman - Unsexed: FemaleHuman - # - type: EmotePanel - race: Elf - - type: LanguageSpeaker - speaks: - - GalacticCommon - - LPPElfLang - understands: - - GalacticCommon - - LPPElfLang - -- type: entity - save: false - name: Urist McHands - parent: MobHumanDummy - id: MobElfDummy - noSpawn: true - description: A dummy human meant to be used in character setup. - components: - - type: Sprite - noRot: true - drawdepth: Mobs - scale: 1, 1.2 diff --git a/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Elf/Species/elf.yml b/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Elf/Species/elf.yml deleted file mode 100644 index fc41ad5268..0000000000 --- a/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Elf/Species/elf.yml +++ /dev/null @@ -1,73 +0,0 @@ -- type: species - id: ElfSpecies - name: species-name-elf - roundStart: false - prototype: MobElf - sprites: MobElfSprites - markingLimits: MobElfMarkingLimits - dollPrototype: MobElfDummy - skinColoration: HumanToned - minAge: 50 - youngAge: 100 - oldAge: 200 - maxAge: 300 - -- type: speciesBaseSprites - id: MobElfSprites - sprites: - Head: MobElfHead - Hair: MobHumanoidAnyMarking - FacialHair: MobHumanoidAnyMarking - Chest: MobHumanTorso - HeadTop: MobHumanoidAnyMarking # Corvax-Sponsors - Tail: MobHumanoidAnyMarking # Corvax-Sponsors - Eyes: MobHumanoidEyes - LArm: MobHumanLArm - RArm: MobHumanRArm - LHand: MobHumanLHand - RHand: MobHumanRHand - LLeg: MobHumanLLeg - RLeg: MobHumanRLeg - LFoot: MobHumanLFoot - RFoot: MobHumanRFoot - -- type: markingPoints - id: MobElfMarkingLimits - onlyWhitelisted: true - points: - Hair: - points: 1 - required: false - Tail: # the cat tail joke - points: 1 # Corvax-Sponsors - required: false - HeadTop: # the cat ear joke - points: 1 # Corvax-Sponsors - required: false - Chest: - points: 1 - required: false - Legs: - points: 2 - required: false - Arms: - points: 2 - required: false - -- type: humanoidBaseSprite - id: MobElfHead - baseSprite: - sprite: _LostParadise/Mobs/Species/Elf/parts.rsi - state: head_m - -- type: humanoidBaseSprite - id: MobElfHeadMale - baseSprite: - sprite: _LostParadise/Mobs/Species/Elf/parts.rsi - state: head_m - -- type: humanoidBaseSprite - id: MobElfHeadFemale - baseSprite: - sprite: _LostParadise/Mobs/Species/Elf/parts.rsi - state: head_f diff --git a/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Shark/Entities/Mobs/Species/Shark.yml b/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Shark/Entities/Mobs/Species/Shark.yml index 2b385c63d9..8ef46f5f9b 100644 --- a/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Shark/Entities/Mobs/Species/Shark.yml +++ b/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Shark/Entities/Mobs/Species/Shark.yml @@ -46,6 +46,9 @@ baseWalkSpeed : 3.0 baseSprintSpeed : 4.9 - type: Perishable + - type: Tag + tags: + - HidesTail - type: Vocal sounds: Male: MaleHuman diff --git a/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Shark/Species/Shark.yml b/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Shark/Species/Shark.yml index 1ea6fed12f..be819d82aa 100644 --- a/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Shark/Species/Shark.yml +++ b/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Shark/Species/Shark.yml @@ -7,11 +7,9 @@ markingLimits: MobSharkMarkingLimits dollPrototype: MobSharkDummy skinColoration: Hues - maleFirstNames: firstMaleVulp - femaleFirstNames: firstFemaleVulp - maleLastNames: VulpLast # Corvax-LastnameGender - femaleLastNames: VulpLast # Corvax-LastnameGender - naming: firstlast + maleFirstNames: names_vulpkanin_male + femaleFirstNames: names_vulpkanin_female + lastNames: names_vulpkanin_last - type: speciesBaseSprites id: MobSharkSprites diff --git a/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Tajaran/Species/Tajaran.yml b/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Tajaran/Species/Tajaran.yml index 72ba1aec6b..af13b2ddf2 100644 --- a/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Tajaran/Species/Tajaran.yml +++ b/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/Tajaran/Species/Tajaran.yml @@ -10,9 +10,7 @@ skinColoration: Hues maleFirstNames: firstMaleTajaran femaleFirstNames: firstFemaleTajaran - maleLastNames: TajaranLast - femaleLastNames: TajaranLast - naming: firstlast + lastNames: TajaranLast - type: speciesBaseSprites id: MobTajaranSprites diff --git a/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/naga.yml b/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/naga.yml deleted file mode 100644 index cc3f2d0444..0000000000 --- a/Resources/Prototypes/_LostParadise/Entities/Mobs/Species/naga.yml +++ /dev/null @@ -1,353 +0,0 @@ -# - type: body -# id: Naga -# name: "naga" -# root: torso -# slots: -# head: -# part: HeadHuman -# connections: -# - torso -# organs: -# brain: OrganHumanBrain -# eyes: OrganHumanEyes -# torso: -# part: TorsoHuman -# connections: -# - left_arm -# - right_arm -# - tail -# organs: -# heart: OrganHumanHeart -# lungs: OrganHumanLungs -# stomach: OrganHumanStomach -# liver: OrganHumanLiver -# kidneys: OrganHumanKidneys -# right_arm: -# part: RightArmHuman -# connections: -# - right_hand -# left_arm: -# part: LeftArmHuman -# connections: -# - left_hand -# right_hand: -# part: RightHandHuman -# left_hand: -# part: LeftHandHuman -# tail: -# part: TailNaga - -# - type: entity -# id: PartNaga -# parent: BaseItem -# name: PartNaga -# abstract: true -# components: -# - type: Damageable -# damageContainer: Biological -# - type: BodyPart -# - type: ContainerContainer -# containers: -# bodypart: !type:Container -# ents: [] - -# - type: entity -# id: TailNaga -# name: TailNaga -# parent: PartNaga -# components: -# - type: Sprite -# sprite: _LostParadise/Mobs/Species/Naga/parts.rsi -# state: "naga_tail" -# - type: Icon -# sprite: _LostParadise/Mobs/Species/Naga/parts.rsi -# state: "naga_tail" -# - type: BodyPart -# partType: Tail -# vital: true -# - type: Extractable -# juiceSolution: -# reagents: -# - ReagentId: Fat -# Quantity: 5 -# - ReagentId: Blood -# Quantity: 10 -# - type: Tag -# tags: -# - Tail - -# - type: soundCollection -# id: LPPNagaFootSteps -# files: -# - /Audio/_LostParadise/Effects/naga_steps.ogg - -# - type: entity -# parent: BaseMobSpeciesOrganic -# id: LPPBaseMobNaga -# name: "Урист МакНага" -# description: "A snake-like race that figured in the ancient stories of people on their home planet. If you haven't turned into stone yet, then this is a gene clone, not the one." -# abstract: true -# components: -# - type: HumanoidAppearance -# species: Naga -# - type: Body -# prototype: Naga -# requiredLegs: 1 # TODO: More than 1 leg -# - type: CombatMode -# - type: Icon # It will not have an icon in the adminspawn menu without this. Body parts seem fine for whatever reason. -# sprite: _LostParadise/Mobs/Species/Naga/parts.rsi -# state: full -# - type: Hunger -# - type: NoSlip -# - type: Puller -# needsHands: false -# - type: Thirst -# - type: Inventory -# speciesId: naga -# # - type: FootstepModifier # Corvax-Sounds -# # footstepSoundCollection: -# # collection: LPPNagaFootSteps -# - type: MovementSpeedModifier -# baseWalkSpeed: 3 -# baseSprintSpeed: 5 -# weightlessModifier: 1.5 -# - type: DamageStateVisuals -# states: -# Alive: -# Base: alive -# BaseUnshaded: alive-unshaded -# Critical: -# Base: crit -# Dead: -# Base: dead -# BaseUnshaded: dead-unshaded -# - type: MobMover -# - type: InputMover -# - type: MobState -# - type: MobStateActions -# actions: -# Critical: -# - ActionCritSuccumb -# - ActionCritLastWords -# - type: MobThresholds -# thresholds: -# 0: Alive -# 100: Critical -# 200: Dead -# - type: SlowOnDamage -# speedModifierThresholds: -# 70: 0.7 -# 90: 0.5 -# - type: Butcherable -# spawned: -# - id: FoodMeatHuman -# amount: 2 -# - type: LanguageSpeaker -# speaks: -# - GalacticCommon -# - LPPFire -# understands: -# - GalacticCommon -# - LPPFire - -# - type: entity -# save: false -# name: "Урист МакНага" -# parent: LPPBaseMobNaga -# id: LPPMobNaga - -# - type: species -# id: Naga -# name: "Нага" -# roundStart: false -# prototype: LPPMobNaga -# sprites: MobNagaSprites -# markingLimits: MobNagaMarkingLimits -# dollPrototype: LPPMobNaga -# skinColoration: HumanToned - -# - type: entity -# parent: BaseSpeciesDummy -# id: LPPMobNagaDummy -# description: "null" -# noSpawn: true -# components: -# - type: HumanoidAppearance -# species: Naga - -# - type: Tag -# id: Tail - -# - type: speciesBaseSprites -# id: MobNagaSprites -# sprites: -# Head: MobHumanHead -# Hair: MobHumanoidAnyMarking -# FacialHair: MobHumanoidAnyMarking -# Snout: MobHumanoidAnyMarking -# Chest: MobHumanTorso -# Eyes: MobHumanoidEyes -# LArm: MobHumanLArm -# RArm: MobHumanRArm -# LHand: MobHumanLHand -# RHand: MobHumanRHand -# Tail: MobHumanoidAnyMarking - -# - type: markingPoints -# id: MobNagaMarkingLimits -# points: -# Hair: -# points: 1 -# required: false -# FacialHair: -# points: 1 -# required: false -# Snout: -# points: 1 -# required: false -# Tail: -# points: 1 -# required: true -# defaultMarkings: [ NagaTailDefault ] -# HeadTop: -# points: 0 -# required: false -# Chest: -# points: 1 -# required: false -# Legs: -# points: 0 -# required: false -# Arms: -# points: 2 -# required: false - -# - type: humanoidBaseSprite -# id: MobNagaTail -# baseSprite: -# sprite: _LostParadise/Mobs/Species/Naga/parts.rsi -# state: "naga_tail" - -# - type: marking -# id: NagaTailDefault -# bodyPart: Tail -# markingCategory: Tail -# speciesRestriction: [Naga] -# sprites: -# - sprite: _LostParadise/Mobs/Species/Naga/parts.rsi -# state: naga_tail - -# - type: inventoryTemplate -# id: naga -# slots: -# - name: jumpsuit -# slotTexture: uniform -# slotFlags: INNERCLOTHING -# stripTime: 6 -# uiWindowPos: 0,1 -# strippingWindowPos: 0,2 -# displayName: Jumpsuit -# - name: outerClothing -# slotTexture: suit -# slotFlags: OUTERCLOTHING -# stripTime: 6 -# uiWindowPos: 1,1 -# strippingWindowPos: 1,2 -# displayName: Suit -# - name: gloves -# slotTexture: gloves -# slotFlags: GLOVES -# uiWindowPos: 2,1 -# strippingWindowPos: 2,2 -# displayName: Gloves -# - name: neck -# slotTexture: neck -# slotFlags: NECK -# uiWindowPos: 0,2 -# strippingWindowPos: 0,1 -# displayName: Neck -# - name: mask -# slotTexture: mask -# slotFlags: MASK -# uiWindowPos: 1,2 -# strippingWindowPos: 1,1 -# displayName: Mask -# - name: eyes -# slotTexture: glasses -# slotFlags: EYES -# stripTime: 3 -# uiWindowPos: 0,3 -# strippingWindowPos: 0,0 -# displayName: Eyes -# - name: ears -# slotTexture: ears -# slotFlags: EARS -# stripTime: 3 -# uiWindowPos: 2,2 -# strippingWindowPos: 2,0 -# displayName: Ears -# - name: head -# slotTexture: head -# slotFlags: HEAD -# uiWindowPos: 1,3 -# strippingWindowPos: 1,0 -# displayName: Head -# - name: pocket1 -# slotTexture: pocket -# fullTextureName: template_small -# slotFlags: POCKET -# slotGroup: MainHotbar -# stripTime: 3 -# uiWindowPos: 0,3 -# strippingWindowPos: 0,4 -# dependsOn: jumpsuit -# displayName: Pocket 1 -# stripHidden: true -# - name: pocket2 -# slotTexture: pocket -# fullTextureName: template_small -# slotFlags: POCKET -# slotGroup: MainHotbar -# stripTime: 3 -# uiWindowPos: 2,3 -# strippingWindowPos: 1,4 -# dependsOn: jumpsuit -# displayName: Pocket 2 -# stripHidden: true -# - name: suitstorage -# slotTexture: suit_storage -# slotFlags: SUITSTORAGE -# slotGroup: MainHotbar -# stripTime: 3 -# uiWindowPos: 2,0 -# strippingWindowPos: 2,5 -# dependsOn: outerClothing -# displayName: Suit Storage -# - name: id -# slotTexture: id -# fullTextureName: template_small -# slotFlags: IDCARD -# slotGroup: SecondHotbar -# stripTime: 6 -# uiWindowPos: 2,1 -# strippingWindowPos: 2,4 -# dependsOn: jumpsuit -# displayName: ID -# - name: belt -# slotTexture: belt -# fullTextureName: template_small -# slotFlags: BELT -# slotGroup: SecondHotbar -# stripTime: 6 -# uiWindowPos: 3,1 -# strippingWindowPos: 1,5 -# displayName: Belt -# - name: back -# slotTexture: back -# fullTextureName: template_small -# slotFlags: BACK -# slotGroup: SecondHotbar -# stripTime: 6 -# uiWindowPos: 3,0 -# strippingWindowPos: 0,5 -# displayName: Back diff --git a/Resources/Prototypes/_LostParadise/Entities/Objects/Devices/encryption_keys.yml b/Resources/Prototypes/_LostParadise/Entities/Objects/Devices/encryption_keys.yml deleted file mode 100644 index 6a8b59f326..0000000000 --- a/Resources/Prototypes/_LostParadise/Entities/Objects/Devices/encryption_keys.yml +++ /dev/null @@ -1,14 +0,0 @@ -- type: entity - parent: EncryptionKey - id: LPPEncryptionKeyLaw - name: law encryption key - description: An encryption key used by the most meticulous person. - components: - - type: EncryptionKey - channels: - - Law - defaultChannel: Law - - type: Sprite - layers: - - state: crypt_silver - - state: nano_label \ No newline at end of file diff --git a/Resources/Prototypes/_LostParadise/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/_LostParadise/Entities/Objects/Devices/pda.yml index 6ec04d44a3..92f2008802 100644 --- a/Resources/Prototypes/_LostParadise/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/_LostParadise/Entities/Objects/Devices/pda.yml @@ -1,37 +1,3 @@ -- type: entity - parent: BasePDA - id: RoboticsPDA - name: robotics PDA - description: It's covered with scratches all over it. - components: - - type: Pda - id: RoboticsIDCard - state: pda-roboticist - - type: PdaBorderColor - borderColor: "#484848" - accentVColor: "#d33725" - - type: Icon - state: pda-roboticist - -- type: entity - parent: BasePDA - id: LPPVirologistPDA - name: virologist PDA - description: Shiny and sterile. Has a built-in rapid health analyzer. - components: - - type: Pda - id: LPPVirologistIDCard - state: pda-virology - - type: PdaBorderColor - borderColor: "#B1B5BF" - accentVColor: "#4E6B50" - - type: Icon - state: pda-virology - - type: HealthAnalyzer - scanDelay: 1 - scanningEndSound: - path: "/Audio/Items/Medical/healthscanner.ogg" - - type: entity parent: BasePDA id: LPPSecurityEnginerPDA @@ -75,18 +41,6 @@ - type: Icon state: pda-clear -- type: entity - parent: BasePDA - id: MagistratePDA - name: magistrate PDA - description: magistrate PDA - components: - - type: Pda - id: MagistrateIDCard - state: pda-lawyer - - type: Icon - state: pda-lawyer - - type: entity parent: BasePDA id: LPPExpeditorPDA diff --git a/Resources/Prototypes/_LostParadise/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/_LostParadise/Entities/Objects/Misc/identification_cards.yml index 88a0abfb2a..d9ac64f5d8 100644 --- a/Resources/Prototypes/_LostParadise/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/_LostParadise/Entities/Objects/Misc/identification_cards.yml @@ -1,110 +1,3 @@ -- type: entity - parent: IDCardStandard - id: LPPIDCardPrisoner - name: ID карточка заключенного - suffix: Prisoner - components: - - type: Sprite - scale: 0.55, 0.55 - state: orange - - type: PresetIdCard - job: LPPPrisoner - -- type: entity - parent: LPPIDCardPrisoner - id: LPPIDCardPrisoner01 - components: - - type: Sprite - state: prisoner_001 - - type: PresetIdCard - job: LPPPrisoner - -- type: entity - parent: LPPIDCardPrisoner - id: LPPIDCardPrisoner02 - components: - - type: Sprite - state: prisoner_002 - - type: PresetIdCard - job: LPPPrisoner - -- type: entity - parent: LPPIDCardPrisoner - id: LPPIDCardPrisoner03 - components: - - type: Sprite - state: prisoner_003 - - type: PresetIdCard - job: LPPPrisoner - -- type: entity - parent: LPPIDCardPrisoner - id: LPPIDCardPrisoner04 - components: - - type: Sprite - state: prisoner_004 - - type: PresetIdCard - job: LPPPrisoner - -- type: entity - parent: LPPIDCardPrisoner - id: LPPIDCardPrisoner05 - components: - - type: Sprite - state: prisoner_005 - - type: PresetIdCard - job: LPPPrisoner - -- type: entity - parent: LPPIDCardPrisoner - id: LPPIDCardPrisoner06 - components: - - type: Sprite - state: prisoner_006 - - type: PresetIdCard - job: LPPPrisoner - -- type: entity - parent: LPPIDCardPrisoner - id: LPPIDCardPrisoner07 - components: - - type: Sprite - state: prisoner_007 - - type: PresetIdCard - job: LPPPrisoner - -- type: entity - parent: IDCardStandard - id: RoboticsIDCard - name: robotics ID card - components: - - type: Sprite - layers: - - state: default - - state: department - color: "#C96DBF" - - state: subdepartment - color: "#C96DBF" - - state: idroboticist - - type: PresetIdCard - job: Roboticist - -- type: entity - parent: IDCardStandard - id: LPPVirologistIDCard - name: virology ID card - components: - - type: Sprite - layers: - - state: default - - state: department - color: "#5B97BC" - - state: subdepartment - color: "#5B97BC" - - state: idvirologist - - type: PresetIdCard - job: LPPVirologist - - type: entity parent: IDCardStandard id: LPPSecurityEnginerIDCard @@ -151,35 +44,6 @@ - type: PresetIdCard job: LPPAdjutant -#- type: entity -# parent: IDCardStandard -# id: LPPBrigmedicIDCard -# name: brigmedic ID card -# components: -# - type: Sprite -# layers: -# - state: default -# - state: department -# color: "#5B97BC" -# - state: subdepartment -# color: "#5B97BC" -# - state: idbrigmedic -# - type: PresetIdCard -# job: LPPBrigmedic - -#- type: entity -# parent: IDCardStandard -# id: MagistrateIDCard -# name: magistrate ID card -# description: magistrate ID card -# components: -# - type: Sprite -# layers: -# - state: default -# - state: idlawyer -# - type: PresetIdCard -# job: Magistrate - - type: entity parent: IDCardStandard id: ExpeditorIDCard diff --git a/Resources/Prototypes/_LostParadise/Entities/Objects/Storage/CrateHunter.yml b/Resources/Prototypes/_LostParadise/Entities/Objects/Storage/CrateHunter.yml index 2b4a6dd138..610d7f0ac5 100644 --- a/Resources/Prototypes/_LostParadise/Entities/Objects/Storage/CrateHunter.yml +++ b/Resources/Prototypes/_LostParadise/Entities/Objects/Storage/CrateHunter.yml @@ -22,5 +22,5 @@ - id: LPPweaponPibodi - id: LPPMagazineBoxHunting - id: LPPClothingOuterHardsuitHunter - - id: LPPWeaponBattleCutter +# - id: LPPWeaponBattleCutter - id: LPPWeaponCutterMagazine diff --git a/Resources/Prototypes/_LostParadise/Entities/Objects/Weapons/Guns/Battery/BattleCutter.yml b/Resources/Prototypes/_LostParadise/Entities/Objects/Weapons/Guns/Battery/BattleCutter.yml index 5964c6f6d3..727a8bf0b2 100644 --- a/Resources/Prototypes/_LostParadise/Entities/Objects/Weapons/Guns/Battery/BattleCutter.yml +++ b/Resources/Prototypes/_LostParadise/Entities/Objects/Weapons/Guns/Battery/BattleCutter.yml @@ -1,41 +1,41 @@ -- type: entity - name: боевой резак - parent: BaseWeaponPowerCellSmall - id: LPPWeaponBattleCutter - description: Старая модель резаков, что, вроде как, предназначались для горной добычи, теперь же для рубки ксеносов. - components: - - type: Sprite - sprite: _LostParadise/Objects/Weapons/Guns/Pistols/battlecutter.rsi - layers: - - state: base - map: ["enum.GunVisualLayers.Base"] - - state: mag-unshaded-4 - map: ["enum.GunVisualLayers.MagUnshaded"] - shader: unshaded - - type: Item - size: Small - shape: - - 0,0,1,0 - - 0,1,0,1 - - type: Clothing - sprite: _LostParadise/Objects/Weapons/Guns/Pistols/battlecutter.rsi - soundForce: true - slots: - - Belt - - suitStorage - - type: Gun - soundGunshot: - path: "/Audio/_LostParadise/Weapons/Guns/Gunshots/BattleCutterFire.ogg" - params: - volume: 100 - soundForce: true - - type: AmmoCounter - - type: ItemSlots - slots: - gun_magazine: - name: Magazine - startingItem: LPPWeaponCutterMagazine - - type: MagazineVisuals - magState: mag - steps: 5 - zeroVisible: true +#- type: entity +# name: боевой резак +# parent: BaseWeaponPowerCellSmall +# id: LPPWeaponBattleCutter +# description: Старая модель резаков, что, вроде как, предназначались для горной добычи, теперь же для рубки ксеносов. +# components: +# - type: Sprite +# sprite: _LostParadise/Objects/Weapons/Guns/Pistols/battlecutter.rsi +# layers: +# - state: base +# map: ["enum.GunVisualLayers.Base"] +# - state: mag-unshaded-4 +# map: ["enum.GunVisualLayers.MagUnshaded"] +# shader: unshaded +# - type: Item +# size: Small +# shape: +# - 0,0,1,0 +# - 0,1,0,1 +# - type: Clothing +# sprite: _LostParadise/Objects/Weapons/Guns/Pistols/battlecutter.rsi +# soundForce: true +# slots: +# - Belt +# - suitStorage +# - type: Gun +# soundGunshot: +# path: "/Audio/_LostParadise/Weapons/Guns/Gunshots/BattleCutterFire.ogg" +# params: +# volume: 100 +# soundForce: true +# - type: AmmoCounter +# - type: ItemSlots +# slots: +# gun_magazine: +# name: Magazine +# startingItem: LPPWeaponCutterMagazine +# - type: MagazineVisuals +# magState: mag +# steps: 5 +# zeroVisible: true diff --git a/Resources/Prototypes/_LostParadise/Entities/Structures/Doors/Airlocks/survival.yml b/Resources/Prototypes/_LostParadise/Entities/Structures/Doors/Airlocks/survival.yml index 130a9808f3..e7033218ca 100644 --- a/Resources/Prototypes/_LostParadise/Entities/Structures/Doors/Airlocks/survival.yml +++ b/Resources/Prototypes/_LostParadise/Entities/Structures/Doors/Airlocks/survival.yml @@ -5,7 +5,7 @@ description: It opens, it closes, it might crush you, and there might be only space behind it. Has to be manually activated. components: - type: Door - bumpOpen: false + bumpOpen: true crushDamage: types: Blunt: 15 diff --git a/Resources/Prototypes/_LostParadise/GameRules/roundstart.yml b/Resources/Prototypes/_LostParadise/GameRules/roundstart.yml new file mode 100644 index 0000000000..c430519dbc --- /dev/null +++ b/Resources/Prototypes/_LostParadise/GameRules/roundstart.yml @@ -0,0 +1,9 @@ +- type: entity + id: LPPRampingStationEventScheduler + parent: BaseGameRule + noSpawn: true + components: + - type: RampingStationEventScheduler + chaosModifier: 2 # By default, one event eac.h 30-10 seconds after two hours Changing CVars will cause this to deviate. + startingChaosRatio: 0.001 # Starts as slow as survival, but quickly ramps up + shiftLengthModifier: 0.5 diff --git a/Resources/Prototypes/_LostParadise/Language/languageslpp.yml b/Resources/Prototypes/_LostParadise/Language/languageslpp.yml new file mode 100644 index 0000000000..3d9be3d59c --- /dev/null +++ b/Resources/Prototypes/_LostParadise/Language/languageslpp.yml @@ -0,0 +1,123 @@ +- type: language + id: Elf + obfuscateSyllables: true + replacement: + - Тадж + - Найн + - Уй + - Джи + - Сиджи + - Джай + - Айо + - Ериед + - Вайнуй + - Нант + - По + - Ди + - Айк + - Айл + - Им + - Айии + - Есс + - Уасс + - Гоувин + - Илипен + - Айли + - Айе + - Лее + - Дейн + - Тиро + - Лио + - Лин + - Суй + - Сен + - Байн + - Бейд + - Биен + - Ней + - Гхит + - Тейн + - Кэнад + - Бый + - Эйм + - Рен + - Эйрог + - Элч + - Я йеи + - Эм + - Ай + - Сило + - Сивел + - Эстар + - Хеве + - Эйс + - Набант + - Дэн + - Гуе + - Сейви + - Биф + - Сеф + - Табфи + - На + - Невели + - Нага + - Эндри + - Эл + - Ала + - Солесия + - Эн + - Герито + - Вейтхес + - Неллуй + - Даво + - Вен + - Луйцо + - Бетх + - Од + - Ах + - Эсто + - Аладх + - Гелеб + - Пелим + - Цени + - Элч + - Ценим + - Ост + - Хен + - Фер + - Фар + - Дан + - Севим + - Тад + - Инк + - Аен + - Сен + - Эннас + - Эдайб + - Лае + - Лейнт + - Бейн + - Гант + - Эйтхиро + +# Spoken by the Dwarf race. +- type: language + id: Dwarf + obfuscateSyllables: true + replacement: + - арр + - рок + - стн + - шахт + - руд + - трэ + - кирк + - диг + - йи + - мыэ + - молл + - бур + - пив + - стн + - дрг + - эйе diff --git a/Resources/Prototypes/_LostParadise/Maps/Pools/LostParadiseMapPool.yml b/Resources/Prototypes/_LostParadise/Maps/Pools/LostParadiseMapPool.yml index 33f9ce1b76..bb84083d9f 100644 --- a/Resources/Prototypes/_LostParadise/Maps/Pools/LostParadiseMapPool.yml +++ b/Resources/Prototypes/_LostParadise/Maps/Pools/LostParadiseMapPool.yml @@ -4,3 +4,4 @@ - LPPAsterisk - LPPSubmarine - LPPPebble + - LPPNormandy diff --git a/Resources/Prototypes/_LostParadise/Maps/normandy.yml b/Resources/Prototypes/_LostParadise/Maps/normandy.yml new file mode 100644 index 0000000000..726e3ed711 --- /dev/null +++ b/Resources/Prototypes/_LostParadise/Maps/normandy.yml @@ -0,0 +1,67 @@ +- type: gameMap + id: LPPNormandy + mapName: 'LP N7 Нормандия' + mapPath: /Maps/_LostParadise/normandy.yml + minPlayers: 20 + stations: + Core: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} N7 Нормандия {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/DeltaV/NTES_UCLB.yml + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + # Service + Bartender: [ 2, 2 ] + Botanist: [ 2, 3] + Chef: [ 1, 2 ] + Janitor: [ 2, 2 ] + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + ServiceWorker: [ 3, 4 ] + # Engineering + ChiefEngineer: [ 1, 1 ] + StationEngineer: [ 4, 5 ] + AtmosphericTechnician: [ 2, 2 ] + TechnicalAssistant: [ 2, 4 ] + # Medical + ChiefMedicalOfficer: [ 1, 1 ] + MedicalDoctor: [ 3, 5 ] + Chemist: [ 2, 2 ] + MedicalIntern: [ 2, 4 ] + Paramedic: [ 1, 1 ] + # RND + ResearchDirector: [ 1, 1 ] + Scientist: [ 3, 4 ] + ResearchAssistant: [ 2, 4 ] + Borg: [ 1, 2 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ForensicMantis: [ 1, 2 ] + # Security + HeadOfSecurity: [ 1, 1 ] + SecurityOfficer: [ 4, 6 ] + Warden: [ 1, 1 ] + Lawyer: [ 1, 2 ] + SecurityCadet: [ 3, 4 ] + Detective: [ 1, 1 ] + Prisoner: [ 2, 3 ] + # Logistics + CargoTechnician: [ 3, 4 ] + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 4, 4 ] + # Civilian + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 3 ] + Reporter: [ 1, 2 ] + # Justice + Prosecutor: [1, 1] + Clerk: [1, 1] diff --git a/Resources/Prototypes/_LostParadise/Research/industrial.yml b/Resources/Prototypes/_LostParadise/Research/industrial.yml index 9289430520..918dcd9771 100644 --- a/Resources/Prototypes/_LostParadise/Research/industrial.yml +++ b/Resources/Prototypes/_LostParadise/Research/industrial.yml @@ -30,7 +30,7 @@ icon: sprite: _LostParadise/Objects/Specific/Chemistry/chem_bag_bluespace.rsi state: icon - discipline: Biochemical + discipline: Industrial tier: 2 cost: 7500 recipeUnlocks: diff --git a/Resources/Prototypes/_LostParadise/Roles/Jobs/CentCom/blueshieldoficer.yml b/Resources/Prototypes/_LostParadise/Roles/Jobs/CentCom/blueshieldoficer.yml index ee04997e1b..4141f94ce9 100644 --- a/Resources/Prototypes/_LostParadise/Roles/Jobs/CentCom/blueshieldoficer.yml +++ b/Resources/Prototypes/_LostParadise/Roles/Jobs/CentCom/blueshieldoficer.yml @@ -6,13 +6,13 @@ requirements: - !type:CharacterDepartmentTimeRequirement department: Command - time: 108000 + min: 108000 - !type:CharacterDepartmentTimeRequirement department: Security - time: 108000 + min: 108000 - !type:CharacterDepartmentTimeRequirement department: Medical - time: 72000 + min: 72000 startingGear: LPPBlueShieldOfficerGear icon: "JobIconBlueshield" supervisors: job-supervisors-centcom diff --git a/Resources/Prototypes/_LostParadise/Roles/Jobs/CentCom/centcom_representative.yml b/Resources/Prototypes/_LostParadise/Roles/Jobs/CentCom/centcom_representative.yml index de1b033346..640d62d012 100644 --- a/Resources/Prototypes/_LostParadise/Roles/Jobs/CentCom/centcom_representative.yml +++ b/Resources/Prototypes/_LostParadise/Roles/Jobs/CentCom/centcom_representative.yml @@ -6,10 +6,10 @@ requirements: - !type:CharacterDepartmentTimeRequirement department: Command - time: 108000 + min: 108000 - !type:CharacterPlaytimeRequirement tracker: JobCaptain - time: 54000 + min: 54000 setPreference: false startingGear: CentcomRepresentativeGear icon: "JobIconNanotrasen" diff --git a/Resources/Prototypes/_LostParadise/Roles/Jobs/Civilian/LPPPrisoner.yml b/Resources/Prototypes/_LostParadise/Roles/Jobs/Civilian/LPPPrisoner.yml deleted file mode 100644 index 380a29fa58..0000000000 --- a/Resources/Prototypes/_LostParadise/Roles/Jobs/Civilian/LPPPrisoner.yml +++ /dev/null @@ -1,18 +0,0 @@ -- type: job - id: LPPPrisoner - name: lpp-job-name-prisoner - description: lpp-job-description-prisoner - playTimeTracker: JobLPPPrisoner - startingGear: LPPPrisonerGear - icon: "JobIconPrisoner" - supervisors: job-supervisors-everyone -# access: # Corvax-MRP -# - Maintenance - -- type: startingGear - id: LPPPrisonerGear - equipment: - jumpsuit: ClothingUniformJumpsuitPrisoner - shoes: ClothingShoesColorBlack - id: LPPIDCardPrisoner - innerClothingSkirt: ClothingUniformJumpskirtPrisoner diff --git a/Resources/Prototypes/_LostParadise/Roles/Jobs/Command/adjutant.yml b/Resources/Prototypes/_LostParadise/Roles/Jobs/Command/adjutant.yml index 7aca9c77bd..5695cb5a3e 100644 --- a/Resources/Prototypes/_LostParadise/Roles/Jobs/Command/adjutant.yml +++ b/Resources/Prototypes/_LostParadise/Roles/Jobs/Command/adjutant.yml @@ -6,12 +6,12 @@ requirements: - !type:CharacterDepartmentTimeRequirement department: Engineering - time: 36000 + min: 36000 - !type:CharacterDepartmentTimeRequirement department: Medical - time: 36000 + min: 36000 - !type:CharacterOverallTimeRequirement - time: 72000 + min: 72000 startingGear: AdjutantGear icon: "JobIconAdjutant" requireAdminNotify: true @@ -50,4 +50,4 @@ socks: LPPClothingUnderSocksNorm underwear: LPPBoxer underwear: LPPBriefs - breast: LPPBraAltWhite \ No newline at end of file + breast: LPPBraAltWhite diff --git a/Resources/Prototypes/_LostParadise/Roles/Jobs/Law/magistrate.yml b/Resources/Prototypes/_LostParadise/Roles/Jobs/Law/magistrate.yml deleted file mode 100644 index 663751895d..0000000000 --- a/Resources/Prototypes/_LostParadise/Roles/Jobs/Law/magistrate.yml +++ /dev/null @@ -1,47 +0,0 @@ -#- type: job -# id: Magistrate -# name: job-name-magistrate -# description: job-description-magistrate -# playTimeTracker: JobMagistrate -# requirements: -# - !type:CharacterDepartmentTimeRequirement -# department: Security -# min: 54000 -# - !type:CharacterPlaytimeRequirement -# role: JobHeadOfSecurity -# min: 36000 -# - !type:CharacterPlaytimeRequirement -# role: JobCaptain -# min: 36000 -# startingGear: MagistrateGear -# icon: "JobIconMagistrate" -# requireAdminNotify: true -# joinNotifyCrew: true -# supervisors: job-supervisors-centcom -# canBeAntag: false -# access: -# - Command -# - Brig -# - Maintenance -# - Service -# - Security -# special: -# - !type:AddImplantSpecial -# implants: [ MindShieldImplant ] -# -#- type: startingGear -# id: MagistrateGear -# equipment: -# jumpsuit: LPPMagistrateUniform -# shoes: ClothingShoesBootsLaceup -# outerClothing: ClothingOuterRobesJudge -# eyes: LPPMagistrateEyeshud -# id: MagistratePDA -# gloves: ClothingHandsGlovesColorBlack -# ears: ClothingHeadsetMagistrate -# pocket1: RubberStampMagistrate -# pocket2: LPPJudgesGavel -# storage: -# back: -# - RubberStampLawyer -# - LPPTelebaton diff --git a/Resources/Prototypes/_LostParadise/Roles/Jobs/Medical/paramedic.yml b/Resources/Prototypes/_LostParadise/Roles/Jobs/Medical/paramedic.yml deleted file mode 100644 index a015f3b926..0000000000 --- a/Resources/Prototypes/_LostParadise/Roles/Jobs/Medical/paramedic.yml +++ /dev/null @@ -1,80 +0,0 @@ -# - type: job -# id: LPPParamedic -# name: job-name-paramedic -# description: job-description-lppparamedic -# playTimeTracker: JobParamedic -# requirements: -# - !type:RoleTimeRequirement -# role: JobChemist -# time: 18000 -# - !type:CharacterDepartmentTimeRequirement -# department: Medical -# time: 54000 -# startingGear: LPPParamedicGear -# icon: "LPPParamedic" -# supervisors: job-supervisors-cmo -# canBeAntag: false -# access: -# - Medical -# - Chemistry -# - Maintenance -# - External - -#- type: startingGear -# id: LPPParamedicGear -# equipment: -# jumpsuit: ClothingUniformJumpsuitParamedic -# back: LPPClothingBackpackParamedicFilled -# shoes: ClothingShoesColorWhite -# id: LPPPramedicPDA -# ears: ClothingHeadsetMedical -# belt: ClothingBeltMedicalFilled -# pocket1: HandheldCrewMonitor -# gloves: ClothingHandsGlovesNitrile -# outerClothing: ClothingOuterCoatParamedicWB -# head: ClothingHeadHatParamedicsoft -# eyes: ClothingEyesHudMedical -# innerclothingskirt: ClothingUniformJumpskirtParamedic -# satchel: LPPClothingBackpackSatchelParamedicFilled -# duffelbag: LPPClothingBackpackDuffelParamedicFilled - -#- type: entity -# parent: BasePDA -# id: LPPPramedicPDA -# name: Paramedic PDA -# description: Shiny and sterile. Has a built-in health analyzer. -# components: -# - type: PDA -# id: LPPParamedicIDCard -# state: pda-medical -# - type: Icon -# state: pda-medical -# - type: HealthAnalyzer -# scanDelay: 1.2 -# scanningEndSound: -# path: "/Audio/Items/Medical/healthscanner.ogg" -# - type: CrewMonitoringConsole - -#- type: entity -# parent: IDCardStandard -# id: LPPParamedicIDCard -# name: paramedic ID card -# components: -# - type: Sprite -# layers: -# - state: default -# - state: idmedicaldoctor -# - type: PresetIdCard -# job: LPPParamedic - -#- type: entity -# id: SpawnLPPParamedic -# parent: SpawnPointJobBase -# name: Pararmedic -# components: -# - type: SpawnPoint -# job_id: LPPParamedic -# - type: Sprite -# layers: -# - state: green -# - state: geneticist diff --git a/Resources/Prototypes/_LostParadise/Roles/Jobs/Medical/virologist.yml b/Resources/Prototypes/_LostParadise/Roles/Jobs/Medical/virologist.yml deleted file mode 100644 index f86d333d03..0000000000 --- a/Resources/Prototypes/_LostParadise/Roles/Jobs/Medical/virologist.yml +++ /dev/null @@ -1,30 +0,0 @@ - -# - type: job -# id: LPPVirologist -# name: lpp-job-name-virologist -# description: lpp-job-description-virologist -# playTimeTracker: JobLPPVirologist -# requirements: -# - !type:RoleTimeRequirement -# role: JobChemist -# time: 18000 -# - !type:CharacterDepartmentTimeRequirement -# department: Medical -# time: 36000 -# startingGear: LPPVirologistGear -# icon: "JobIconVirologist" -# supervisors: job-supervisors-cmo -# canBeAntag: true -# access: -# - Medical -# - Chemistry -# - Maintenance -# - External - - -# - type: startingGear -# id: LPPVirologistGear -# equipment: -# id: LPPVirologistPDA -# ears: ClothingHeadsetMedical -# belt: ClothingBeltMedicalFilled diff --git a/Resources/Prototypes/_LostParadise/Roles/Jobs/Science/roboticist.yml b/Resources/Prototypes/_LostParadise/Roles/Jobs/Science/roboticist.yml deleted file mode 100644 index 3b00142732..0000000000 --- a/Resources/Prototypes/_LostParadise/Roles/Jobs/Science/roboticist.yml +++ /dev/null @@ -1,29 +0,0 @@ -- type: job - id: Roboticist - name: job-name-roboticist - description: job-description-roboticist - playTimeTracker: JobRoboticist - requirements: - - !type:CharacterDepartmentTimeRequirement - department: Epistemics - time: 36000 #10 hrs - startingGear: RoboticistGear - icon: "JobIconRoboticist" - supervisors: job-supervisors-rd - access: - - Research - - Robotics - - Maintenance - -- type: startingGear - id: RoboticistGear - equipment: - shoes: ClothingShoesColorBlack - id: RoboticsPDA - ears: ClothingHeadsetRobotics - eyes: ClothingEyesHudDiagnostic - belt: ClothingBeltUtilityEngineering - socks: LPPClothingUnderSocksNorm - underwear: LPPBoxer - underwear: LPPBriefs - breast: LPPBraAltWhite \ No newline at end of file diff --git a/Resources/Prototypes/_LostParadise/Roles/Jobs/Security/SecEng.yml b/Resources/Prototypes/_LostParadise/Roles/Jobs/Security/SecEng.yml index b24e610c0c..b5d0c3cf0f 100644 --- a/Resources/Prototypes/_LostParadise/Roles/Jobs/Security/SecEng.yml +++ b/Resources/Prototypes/_LostParadise/Roles/Jobs/Security/SecEng.yml @@ -6,10 +6,10 @@ requirements: - !type:CharacterDepartmentTimeRequirement department: Security - time: 36000 + min: 36000 - !type:CharacterDepartmentTimeRequirement department: Engineering - time: 72000 + min: 72000 startingGear: LPPSecurityEngineerGear icon: "LPPJobIconSecurityEnginer" supervisors: job-supervisors-hos diff --git a/Resources/Prototypes/_LostParadise/Roles/Jobs/Security/borg.yml b/Resources/Prototypes/_LostParadise/Roles/Jobs/Security/borg.yml index 09566d9768..ba00ada697 100644 --- a/Resources/Prototypes/_LostParadise/Roles/Jobs/Security/borg.yml +++ b/Resources/Prototypes/_LostParadise/Roles/Jobs/Security/borg.yml @@ -5,10 +5,10 @@ # playTimeTracker: JobBorgSecurity # requirements: # - !type:OverallPlaytimeRequirement -# time: 36000 #10 hrs +# min: 36000 #10 hrs # - !type:CharacterDepartmentTimeRequirement # department: Security -# time: 720 +# min: 720 # canBeAntag: false # icon: JobIconBorgSec # supervisors: job-supervisors-hos @@ -21,10 +21,10 @@ # playTimeTracker: JobDroneSecurity # requirements: # - !type:OverallPlaytimeRequirement -# time: 36000 #10 hrs +# min: 36000 #10 hrs # - !type:CharacterDepartmentTimeRequirement # department: Security -# time: 7200 #2 hrs +# min: 7200 #2 hrs # canBeAntag: false # icon: JobIconDroneSec # supervisors: job-supervisors-hos diff --git a/Resources/Prototypes/_LostParadise/Roles/Jobs/Security/lppbrigmedic.yml b/Resources/Prototypes/_LostParadise/Roles/Jobs/Security/lppbrigmedic.yml deleted file mode 100644 index 536b781550..0000000000 --- a/Resources/Prototypes/_LostParadise/Roles/Jobs/Security/lppbrigmedic.yml +++ /dev/null @@ -1,45 +0,0 @@ -#- type: job -# id: LPPBrigmedic -# name: job-name-brigmedic -# description: job-description-brigmedic -# playTimeTracker: JobLPPBrigmedic -# requirements: -# - !type:CharacterDepartmentTimeRequirement -# department: Medical -# time: 18000 -# - !type:CharacterDepartmentTimeRequirement -# department: Security -# time: 18000 -# startingGear: BrigmedicGear -# icon: "JobIconBrigmedic" -# supervisors: job-supervisors-hos -# canBeAntag: false -# access: -# - Medical -# - Security -# - Brig -# - Maintenance -# - External -# special: -# - !type:AddImplantSpecial -# implants: [ MindShieldImplant ] -# -#- type: startingGear -# id: BrigmedicGear -# equipment: -# jumpsuit: ClothingUniformJumpsuitBrigmedic -# outerClothing: ClothingOuterCoatAMG -# back: ClothingBackpackBrigmedic -# shoes: ClothingShoesColorRed -# gloves: ClothingHandsGlovesNitrile -# eyes: LPPBlueHudGlasses -# head: ClothingHeadHatBeretBrigmedic -# id: BrigmedicPDA -# ears: ClothingHeadsetBrigmedic -# mask: ClothingMaskBreathMedicalSecurity -# belt: ClothingBeltMedicalFilled -# pocket1: WeaponPistolMk58 -# pocket2: MagazinePistol -# innerClothingSkirt: ClothingUniformJumpskirtBrigmedic -# satchel: ClothingBackpackSatchelBrigmedicFilled -# duffelbag: ClothingBackpackDuffelBrigmedicFilled diff --git a/Resources/Prototypes/_LostParadise/Roles/Jobs/Security/senior_officer.yml b/Resources/Prototypes/_LostParadise/Roles/Jobs/Security/senior_officer.yml deleted file mode 100644 index e7321a072f..0000000000 --- a/Resources/Prototypes/_LostParadise/Roles/Jobs/Security/senior_officer.yml +++ /dev/null @@ -1,39 +0,0 @@ -# - type: job -# id: SeniorOfficer -# name: job-name-senior-officer -# description: job-description-senior-officer -# playTimeTracker: JobSeniorOfficer -# requirements: -# - !type:RoleTimeRequirement -# role: JobWarden -# time: 36000 # LPP-RoleTime -# - !type:RoleTimeRequirement -# role: JobDetective -# time: 36000 # LPP-RoleTime -# - !type:RoleTimeRequirement -# role: JobSecurityOfficer -# time: 36000 # LPP-RoleTime -# - !type:CharacterDepartmentTimeRequirement -# department: Security -# time: 108000 # 30 hrs -# startingGear: SeniorOfficerGear -# icon: "JobIconSeniorOfficer" -# supervisors: job-supervisors-hos -# canBeAntag: false -# access: -# - Security -# - Brig -# - Maintenance -# - Service -# - External -# special: -# - !type:AddImplantSpecial -# implants: [ MindShieldImplant ] - -# - type: startingGear -# id: SeniorOfficerGear -# equipment: -# eyes: ClothingEyesGlassesSecurity -# id: SeniorOfficerPDA -# ears: ClothingHeadsetSecurity -# pocket1: WeaponPistolMk58 diff --git a/Resources/Prototypes/_LostParadise/Roles/Jobs/departments.yml b/Resources/Prototypes/_LostParadise/Roles/Jobs/departments.yml new file mode 100644 index 0000000000..895358a5c0 --- /dev/null +++ b/Resources/Prototypes/_LostParadise/Roles/Jobs/departments.yml @@ -0,0 +1,8 @@ +- type: department + id: CentralCommand + description: department-CentralCommand-description + color: "#49C423" + roles: + - LPPBlueShieldOfficer + primary: false + weight: 101 \ No newline at end of file diff --git a/Resources/Prototypes/_LostParadise/Roles/Jobs/play_time_trackers.yml b/Resources/Prototypes/_LostParadise/Roles/Jobs/play_time_trackers.yml index cd702d84ef..cc891d7169 100644 --- a/Resources/Prototypes/_LostParadise/Roles/Jobs/play_time_trackers.yml +++ b/Resources/Prototypes/_LostParadise/Roles/Jobs/play_time_trackers.yml @@ -1,45 +1,18 @@ -#- type: playTimeTracker -# id: JobMagistrate - - type: playTimeTracker id: JobLPPBlueShieldOfficer -# - type: playTimeTracker -# id: JobLPPParamedic - - type: playTimeTracker id: JobLPPАdjutant - type: playTimeTracker id: LPPCentralCommandRepresentative -#- type: playTimeTracker -# id: JobLPPBrigmedic - -- type: playTimeTracker - id: JobRoboticist - - type: playTimeTracker id: JobCentralCommandRepresentative - type: playTimeTracker id: JobPilot -# - type: playTimeTracker - # id: JobBorgSecurity - -# - type: playTimeTracker - # id: JobDroneSecurity - -- type: playTimeTracker - id: JobLPPVirologist - -- type: playTimeTracker - id: JobLPPPrisoner - -- type: playTimeTracker - id: JobSeniorService - #-------------------# #-----Syndicate-----# #-------------------# @@ -70,6 +43,6 @@ - type: playTimeTracker # Элетрик id: JobStationEngineerSyndicate - - type: playTimeTracker # Заключёный id: JobPrisonerSyndicate + diff --git a/Resources/Prototypes/_LostParadise/StatusEffects/jobs.yml b/Resources/Prototypes/_LostParadise/StatusEffects/jobs.yml index c5c72f1d53..8b6fde1379 100644 --- a/Resources/Prototypes/_LostParadise/StatusEffects/jobs.yml +++ b/Resources/Prototypes/_LostParadise/StatusEffects/jobs.yml @@ -12,13 +12,6 @@ sprite: /Textures/_LostParadise/Interface/Misc/lpp_job_icons.rsi state: Blueshield -- type: statusIcon - parent: JobIcon - id: JobIconMagistrate - icon: - sprite: /Textures/_LostParadise/Interface/Misc/lpp_job_icons.rsi - state: Magistrate - - type: statusIcon parent: JobIcon id: JobIconSecPilot diff --git a/Resources/Prototypes/_LostParadise/Traits/languages.yml b/Resources/Prototypes/_LostParadise/Traits/languages.yml new file mode 100644 index 0000000000..9a07ea9d67 --- /dev/null +++ b/Resources/Prototypes/_LostParadise/Traits/languages.yml @@ -0,0 +1,45 @@ +- type: trait + id: ElfLanguage + category: Speech + points: 0 + components: + - type: LanguageKnowledgeModifier + speaks: + - Elf + understands: + - Elf + requirements: + - !type:CharacterSpeciesRequirement + inverted: false + species: + - Human + - !type:CharacterTraitRequirement + inverted: true + traits: + - DwarfLanguage + - ForeignerLight + - Foreigner + - SignLanguage + +- type: trait + id: DwarfLanguage + category: Speech + points: 0 + components: + - type: LanguageKnowledgeModifier + speaks: + - Dwarf + understands: + - Dwarf + requirements: + - !type:CharacterSpeciesRequirement + inverted: false + species: + - Human + - !type:CharacterTraitRequirement + inverted: true + traits: + - ElfLanguage + - ForeignerLight + - Foreigner + - SignLanguage diff --git a/Resources/Prototypes/_LostParadise/game_presets.yml b/Resources/Prototypes/_LostParadise/game_presets.yml new file mode 100644 index 0000000000..5f5e7e1151 --- /dev/null +++ b/Resources/Prototypes/_LostParadise/game_presets.yml @@ -0,0 +1,24 @@ +- type: gamePreset + id: LPPSurvival + alias: + - lppsurvival + name: heavy-title + showInVote: true # secret # DeltaV - Me when the survival. Used for periapsis. + description: heavy-description + minPlayers: 40 + rules: + - LPPRampingStationEventScheduler + - BasicRoundstartVariation + - SubGamemodesRule + +- type: gamePreset + id: LPPExtended + alias: + - lppextended + name: easy-title + showInVote: true #2boring2vote # DeltaV - I'd like to disagree, used for periapsis. + description: easy-description + rules: + - BasicStationEventScheduler + - BasicRoundstartVariation + - SubGamemodesRule diff --git a/Resources/Prototypes/_LostParadise/lobbyscreenslpp.yml b/Resources/Prototypes/_LostParadise/lobbyscreenslpp.yml index b544631101..e3166972e5 100644 --- a/Resources/Prototypes/_LostParadise/lobbyscreenslpp.yml +++ b/Resources/Prototypes/_LostParadise/lobbyscreenslpp.yml @@ -6,10 +6,6 @@ id: Teftelka background: /Textures/_LostParadise/LobbyScreens/teftelka.png -- type: lobbyBackground - id: Penisher - background: /Textures/_LostParadise/LobbyScreens/penisher.png - - type: lobbyBackground id: Amina background: /Textures/_LostParadise/LobbyScreens/amina.png diff --git a/Resources/Prototypes/_LostParadise/sercret_weights.yml b/Resources/Prototypes/_LostParadise/sercret_weights.yml new file mode 100644 index 0000000000..1ff47b5ba3 --- /dev/null +++ b/Resources/Prototypes/_LostParadise/sercret_weights.yml @@ -0,0 +1,8 @@ +- type: weightedRandom + id: LPPSecret + weights: + LPPSurvival: 0.10 + Nukeops: 0.25 + Zombie: 0.20 + Traitor: 0.30 + LPPExtended: 0.15 diff --git a/Resources/Prototypes/game_presets.yml b/Resources/Prototypes/game_presets.yml index ebe2a7b02f..22ec83177c 100644 --- a/Resources/Prototypes/game_presets.yml +++ b/Resources/Prototypes/game_presets.yml @@ -3,7 +3,7 @@ alias: - survival name: survival-title - showInVote: true # secret # DeltaV - Me when the survival. Used for periapsis. + showInVote: false # secret # DeltaV - Me when the survival. Used for periapsis. description: survival-description rules: - RampingStationEventScheduler @@ -14,25 +14,25 @@ id: SurvivalHellshift alias: - hellshift - showInVote: true - name: hellshift-title - description: hellshift-description + showInVote: false + name: pizdec-title + description: pizdec-description rules: - HellshiftStationEventScheduler - BasicRoundstartVariation - SubGamemodesRule -- type: gamePreset - id: AllAtOnce - name: all-at-once-title - description: all-at-once-description - showInVote: false - rules: - - Nukeops - - Traitor - - Revolutionary - - Zombie - - RampingStationEventScheduler +#- type: gamePreset +# id: AllAtOnce +# name: all-at-once-title +# description: all-at-once-description +# showInVote: false +# rules: +# - Nukeops +# - Traitor +# - Revolutionary +# - Zombie +# - RampingStationEventScheduler - type: gamePreset id: Extended @@ -40,7 +40,7 @@ - extended - shittersafari name: extended-title - showInVote: true #2boring2vote # DeltaV - I'd like to disagree, used for periapsis. + showInVote: false #2boring2vote # DeltaV - I'd like to disagree, used for periapsis. description: extended-description rules: - BasicStationEventScheduler @@ -52,9 +52,10 @@ alias: - greenshift - shittersafarideluxeedition - name: greenshift-title - showInVote: false #4boring4vote - description: greenshift-description + name: calm-title + showInVote: true #4boring4vote + description: calm-description + maxPlayers: 30 rules: - BasicRoundstartVariation @@ -63,29 +64,29 @@ alias: - secret - sekrit - name: secret-title + name: average-title showInVote: true - description: secret-description + description: average-description rules: - Secret -- type: gamePreset - id: SecretExtended #For Admin Use: Runs Extended but shows "Secret" in lobby. - alias: - - secretextended - name: secret-title - showInVote: false #Admin Use - description: secret-description - rules: - - BasicStationEventScheduler - -- type: gamePreset - id: SecretGreenshift #For Admin Use: Runs Greenshift but shows "Secret" in lobby. - alias: - - secretgreenshift - name: secret-title - showInVote: false #Admin Use - description: secret-description +#- type: gamePreset +# id: SecretExtended #For Admin Use: Runs Extended but shows "Secret" in lobby. +# alias: +# - secretextended +# name: secret-title +# showInVote: false #Admin Use +# description: secret-description +# rules: +# - BasicStationEventScheduler +# +#- type: gamePreset +# id: SecretGreenshift #For Admin Use: Runs Greenshift but shows "Secret" in lobby. +# alias: +# - secretgreenshift +# name: secret-title +# showInVote: false #Admin Use +# description: secret-description - type: gamePreset id: Sandbox @@ -104,7 +105,7 @@ - traitor name: traitor-title description: traitor-description - showInVote: true + showInVote: false rules: - Traitor - SubGamemodesRule diff --git a/Resources/Prototypes/secret_weights.yml b/Resources/Prototypes/secret_weights.yml index ad383a76d1..d0f437cfed 100644 --- a/Resources/Prototypes/secret_weights.yml +++ b/Resources/Prototypes/secret_weights.yml @@ -1,9 +1,8 @@ - type: weightedRandom id: Secret weights: - #Survival: 0.44 - Nukeops: 0.34 - Zombie: 0.17 - Traitor: 0.49 + Survival: 0.44 + Nukeops: 0.14 + Zombie: 0.03 + Traitor: 0.39 #Pirates: 0.15 #ahoy me bucko - diff --git a/Resources/ServerInfo/Guidebook/Antagonist/Thieves.xml b/Resources/ServerInfo/Guidebook/Antagonist/Thieves.xml index f7f8c70d45..b74f93318b 100644 --- a/Resources/ServerInfo/Guidebook/Antagonist/Thieves.xml +++ b/Resources/ServerInfo/Guidebook/Antagonist/Thieves.xml @@ -1,43 +1,43 @@  - # Thieves + # Вор - [color=#999999][italic]"Yoink! I'll be taking that! And that! Ooh, don't mind if I do!"[/italic][/color] + [color=#999999][italic]"Йоинк! Я возьму это! И это! О, ты же не возражаешь, если я возьму и это!"[/italic][/color] - Thieves are petty yet crafty [color=green]criminals[/color] who can't keep their hands to themselves. You were forcefully given a [bold]pacifism implant[/bold] after your last arrest, but you won't let that stop you from trying to add to your collection. + Воры - симпатичные, но хитрые [color=green]преступники[/color], которые не могут держать свои руки при себе. После вашего последнего ареста вам насильно вживили имплантат пацифизма[bold]имплантат пацифизма[/bold], но вы не позволите этому "запрету" помешать вам пополнить свою коллекцию. - ## Art of the Steal - Unlike other antagonists, [italic]staying out of trouble is almost a requirement for you[/italic] because of your implant. - You can only run if [color=#cb0000]Security[/color] picks a fight with you, and because you work alone you don't have any friends to pull you out of danger. + ## Искусство воровства + В отличие от других врагов станции, так как из-за [italic]вашего имплантата вам необходимо держаться подальше от неприятностей.[/italic]. + Вы можете сбежать, только если [color=#cb0000]Служба безопасности[/color] не вступит с вами в схватку, а, поскольку, вы работаете в одиночку и у вас нет друзей, которые могли бы спасти, при встречи с ними у вас может не остатся второго шанса. - But against all odds, you'll sucessfully swipe what you want using determination, sleight of hand, a few tools and your [color=cyan]thieving gloves.[/color] + Но, несмотря ни на что, вы способны успешно украсть то, что хотите, используя решительность, ловкость рук, несколько инструментов и свои [color=cyan]перчатки вора.[/color] - The pair of gloves you have give you a major advantage: [bold]the ability to take things off of people without them even noticing.[/bold] With a little practice, you can steal their wallet and keep up a conversation at the same time. + Пара перчаток, которые у вас есть, дает вам большое преимущество: : [bold]с их помощью вы можете забирать вещи у людей так, что они этого даже не заметят.[/bold] Немного потренировавшись, вы сможете украсть у них бумажник и одновременно поддерживать беседу. - They're also made of the highest quality [bold]holographic chameleon fibers[/bold] you could steal, but while they can take the appearance of insulated gloves you'll still need to find a real pair to keep your hands from burning. + Они также изготовлены из высококачественных [bold]голографических волокон-хамелеонов[/bold], за счёт чего они могут меня свой вид. Но, хотя они могут выглядеть как изолированные перчатки, вам все равно нужно найти пару перчаток, для работы с проводкой, чтобы не обжечь руки. - ## Tools of the Trade - You've got two more aces up your stolen sleeves: your [color=cyan]beacon[/color] and your [color=cyan]toolbox.[/color] + ## Инструменты торговли + В случае не предвиденных ситуаций, у вас есть еще два туза в запасе: ваш[color=cyan]маячок[/color] и ваш [color=cyan]набор инструментов.[/color] - Your [color=cyan]beacon[/color] provides safe passage home for trinkets that may not be easy to carry with you on the evac shuttle. Simply find a secluded part of the station to unfold the beacon, then set its coordinates to your hideout. - Any shinies near it will be [bold]teleported to your vault when the shift ends,[/bold] fulfilling your objectives. + Ваш [color=cyan]радиомаяк[/color] обеспечивает безопасный возврат в укрытие для безделушек, которые, возможно, нелегко будет пронести с собой в эвакуационном шаттле. Просто найдите укромное место на станции, чтобы включить радиомаяк, а затем укажите в него координаты вашего укрытия. + Все блестящие, находящиеся рядом с ним, буду [bold]телепортированы в ваше хранилище по окончании смены,[/bold] позволяя вам выполнить ваши задачи. - However, this will instantly out you if found and make it extremely easy for people to reclaim their "missing" possessions. [bold]Make sure to hide it well![/bold] + Однако, если ваше укрытие найдут, это может мгновенно выдаст вас. Из не приятных новостей, людям так же будет чрезвычайно легко вернуть свои "пропавшие" вещи, опустошив вашу колекцию. [bold]Прячте всё максимально хорошо![/bold] - Your [color=cyan]toolbox[/color] contains... well, whatever you remembered to pack. [bold]You can select two pre-made kits[/bold] to help you complete grander heists. - Approve your choices in a safe place, as the toolbox will dissolve and the gear will drop at your feet. + В вашем [color=cyan]наборе инструментов[/color] есть... ну, все, что вы не забыли взять с собой. [bold]Вы можете выбрать два готовых набора[/bold], которые помогут вам совершать масштабное ограбления. + Подтвердите свой выбор в безопасном месте, так как ящик с инструментами растворится, а снаряжение упадет к вашим ногам. @@ -51,22 +51,21 @@ - ## Centerpiece of the Collection - Your kleptomania will take you places. One day, you'll feel like stealing a few figurines. Another day, you'll feel like stealing an industrial machine. + ## Центральное место в коллекции + Ваша клептомания заведет вас в тупик. Однажды вам захочется украсть несколько статуэток. В другой раз вам захочется украсть промышленную машину, если не шаттл... - No matter. They'll all be a part of your collection within a matter of time. + Но всё же, когда то они станут частью вашей коллекции. - You can steal items by [bold]having them on your person[/bold] when you get to CentComm. Failing this, you can steal larger items by [bold]leaving them by your beacon.[/bold] + Вы можете украсть предметы,[bold]имея их при себе[/bold], если доберетесь до ЦК с ними. В возникают проблебы с данной задачей, вы можете украсть более крупные предметы, [bold]оставив их возле своего маяка.[/bold] - Some of the more [italic]animate[/italic] objectives may not cooperate with you. Make sure they're alive and with you or your beacon when the shift ends. - - Things that you may desire include but are not limited to: + Некоторые из наиболее[italic]живых[/italic] целей могут не работать с вами и не захотять стать частью вашей колеции. Убедитесь, что они живы и будут с вами или с вашим маяком, когда смена закончится. + Обычно, цели для пополнения вашей колцекции могут стать: - - - - + + + + diff --git a/Resources/ServerInfo/Guidebook/Antagonist/Zombies.xml b/Resources/ServerInfo/Guidebook/Antagonist/Zombies.xml index 80c893e18c..c8dc5cde61 100644 --- a/Resources/ServerInfo/Guidebook/Antagonist/Zombies.xml +++ b/Resources/ServerInfo/Guidebook/Antagonist/Zombies.xml @@ -1,28 +1,31 @@ - # Zombies + # Зомби - - Zombies are antagonist that infect all beings that they bite. + - Зомби - это антагонисты, которые заражают почти всех существ, которых они кусают. - ## Infection + ## Инфекция - - Three ways of getting infected are by starting out as the intial infected, being bitten by a zombified being, or being injected by [color=#a4885c]Romerol[/color]. + - Заразиться можно тремя способами: начать с самого начала, быть укушенным зомбированным существом или получить инъекцию [color=#a4885c]Ромерола[/color]. - ## Objectives + ## Цель - - The objective for zombies is to infect the entire station's crew. + - Цель зомби - заразить весь экипаж станции. - ## Cure + ## Лечение - - If you are already zombified, the only cure is death. - - If you are not zombified yet, using [color=#a4885c]Ambuzol[/color] will stop the infection from ensuing your timely demise but you may still get reinfected if not too careful. [color=#a4885c]Ambuzol Plus[/color] will prevent the infection continuously only while alive. + - Если вы уже зомбированы, единственное лекарство - это смерть. + - Если вы еще не зомбированы, используйте [color=#a4885c]Амбузол[/color] что бы предотвратит заражение, которое приведет к вашей своевременной смерти, но вы все равно можете заразиться повторно, если не будете слишком осторожны. [color=#a4885c]Амбузол Плюс[/color] будет постоянно предотвращать заражение только при жизни. + + Помните - Если вы умрёте, пока заражены, вы зомбируетесь! + Так же, если труб не был зомбифицирован, то его укус превраттит его в зомби. Если вы нулевой пациент в медицинсом отделе, загляните в морг. Возможно, вы сможете создать свою личную армию! @@ -33,3 +36,4 @@ + diff --git a/Resources/ServerInfo/Guidebook/ChemicalTabs/Biological.xml b/Resources/ServerInfo/Guidebook/ChemicalTabs/Biological.xml index 6f1a4e630b..6137b79992 100644 --- a/Resources/ServerInfo/Guidebook/ChemicalTabs/Biological.xml +++ b/Resources/ServerInfo/Guidebook/ChemicalTabs/Biological.xml @@ -1,9 +1,9 @@ -# Biological + # Биологические -These reagents include chemicals that you can get from certain materials and from living things. To get the other chemicals you have to use machines like the electrolyzer and the centrifuge. + К этим реагентам относятся химические вещества, которые можно получить из определенных материалов и живых организмов. Для получения других химических веществ необходимо использовать такие устройства, как электролизер и центрифуга. - + diff --git a/Resources/ServerInfo/Guidebook/ChemicalTabs/Botany.xml b/Resources/ServerInfo/Guidebook/ChemicalTabs/Botany.xml index 832e32d644..be19e2bf14 100644 --- a/Resources/ServerInfo/Guidebook/ChemicalTabs/Botany.xml +++ b/Resources/ServerInfo/Guidebook/ChemicalTabs/Botany.xml @@ -1,14 +1,14 @@ -# Botanical Chemicals + # Ботанические химикаты -These chemicals are used by botanists. Some of the chemicals change the properties of the plants. + Эти химические вещества используются ботаниками. Некоторые из них изменяют свойства растений. - - - - - - + + + + + + - \ No newline at end of file + diff --git a/Resources/ServerInfo/Guidebook/ChemicalTabs/Elements.xml b/Resources/ServerInfo/Guidebook/ChemicalTabs/Elements.xml index 3a1c587304..54a8127df2 100644 --- a/Resources/ServerInfo/Guidebook/ChemicalTabs/Elements.xml +++ b/Resources/ServerInfo/Guidebook/ChemicalTabs/Elements.xml @@ -1,8 +1,7 @@ +# Элементы -# Elements - -This list contains all the basic reagents used to make other chemicals. +Этот список содержит все основные реагенты, используемые для производства других химических веществ. diff --git a/Resources/ServerInfo/Guidebook/ChemicalTabs/Foods.xml b/Resources/ServerInfo/Guidebook/ChemicalTabs/Foods.xml index aea68d74ce..98e4cdb1df 100644 --- a/Resources/ServerInfo/Guidebook/ChemicalTabs/Foods.xml +++ b/Resources/ServerInfo/Guidebook/ChemicalTabs/Foods.xml @@ -1,7 +1,7 @@ -# Foods +# Пищевые продукты -These reagents are mostly used in the kitchen. Very helpful for Chefs and/or Service Workers. +Эти реагенты в основном используются на кухне. Очень полезны для шеф-поваров и/или сервисных работников. diff --git a/Resources/ServerInfo/Guidebook/ChemicalTabs/Narcotics.xml b/Resources/ServerInfo/Guidebook/ChemicalTabs/Narcotics.xml index 0dbb5ad359..c3c5c94c2d 100644 --- a/Resources/ServerInfo/Guidebook/ChemicalTabs/Narcotics.xml +++ b/Resources/ServerInfo/Guidebook/ChemicalTabs/Narcotics.xml @@ -1,5 +1,5 @@ -# Narcotics -The reagents listed in this category includes stimulants, hallucinogens and other drug-like effects. +# Наркотики +Реагенты, перечисленные в этой категории, включают стимуляторы, галлюциногены и другие вещества, обладающие наркотическим действием. diff --git a/Resources/ServerInfo/Guidebook/ChemicalTabs/Other.xml b/Resources/ServerInfo/Guidebook/ChemicalTabs/Other.xml index 31ad4ef3cb..093d22e2f6 100644 --- a/Resources/ServerInfo/Guidebook/ChemicalTabs/Other.xml +++ b/Resources/ServerInfo/Guidebook/ChemicalTabs/Other.xml @@ -1,5 +1,5 @@ -# Other -These are the other regeants listed in the Chemicals page. - + # Прочее + Это другие химические реагенты, перечисленные на странице "Химические вещества". + diff --git a/Resources/ServerInfo/Guidebook/ChemicalTabs/Pyrotechnic.xml b/Resources/ServerInfo/Guidebook/ChemicalTabs/Pyrotechnic.xml index 791df36a32..0d96ea3dd0 100644 --- a/Resources/ServerInfo/Guidebook/ChemicalTabs/Pyrotechnic.xml +++ b/Resources/ServerInfo/Guidebook/ChemicalTabs/Pyrotechnic.xml @@ -1,5 +1,5 @@ -# Pyrotechnics -These chemicals are flammable and causes hazardous effects when making them (Plasma gas and explosions). It is recommended to make these chemicals in a safe environment. +# Пиротехника + Эти химические вещества являются легковоспламеняющимися и вызывают опасные последствия при их производстве (плазменный газ и взрывы). Рекомендуется производить эти химикаты в безопасной среде. diff --git a/Resources/ServerInfo/Guidebook/ChemicalTabs/Toxins.xml b/Resources/ServerInfo/Guidebook/ChemicalTabs/Toxins.xml index 19ab91cbf4..8534108cff 100644 --- a/Resources/ServerInfo/Guidebook/ChemicalTabs/Toxins.xml +++ b/Resources/ServerInfo/Guidebook/ChemicalTabs/Toxins.xml @@ -1,5 +1,5 @@ -# Toxins -The chemicals in this list contain toxins that induce certain effects and can cause death. Use responsibly. +# Токсины +Химические вещества, указанные в этом списке, содержат токсины, которые вызывают определенные эффекты и могут привести к смерти. Используйте их ответственно. diff --git a/Resources/ServerInfo/Guidebook/Command.xml b/Resources/ServerInfo/Guidebook/Command.xml index 2b35ecaf02..2141bc23f2 100644 --- a/Resources/ServerInfo/Guidebook/Command.xml +++ b/Resources/ServerInfo/Guidebook/Command.xml @@ -1,9 +1,9 @@  -# Command -The heads of each department come together to form the [color=#1b67a5]Command[/color] department, a force to be reckoned with and the handlers of the station. They usually have access to special equipment and their own rooms. They are often wanted dead. + # Командование + Руководители каждого отдела объединяются, чтобы сформировать [color=#1b67a5]Командный[/color] отдел. Силу, с которой нужно считаться. Силу, которая руководит станцией. Обычно они имеют доступ к специальному оборудованию и особым комнатам. Их часто хотят убить. -## Personnel -[color=#1b67a5]Command[/color] is made up of the heads of each department, being the [color=#9fed58]Head of Personnel[/color], the [color=#cb0000]Head of Security[/color], the [color=#5b97bc]Chief Medical Officer[/color], the [color=#f39f27]Chief Engineer[/color], the [color=#c96dbf]Research Director[/color], the [color=#b18644]Quartermaster[/color] and above all else, the [color=#1b67a5]Captain[/color]. + ## Персонал + [color=#1b67a5]Команда[/color] состоит из руководителей каждого отдела, таких как [color=#9fed58]Глава Персонала[/color], [color=#cb0000]Глава Службы Безопасности[/color], [color=#5b97bc]Главный Врач[/color], [color=#f39f27]Главный Инженер[/color], [color=#c96dbf]Научный Директор[/color], [color=#b18644]Офицер Логистики[/color] и, главнее всех, [color=#1b67a5]Капитан[/color]. @@ -18,38 +18,38 @@ The heads of each department come together to form the [color=#1b67a5]Command[/c -## Taking Charge -Congratulations on your promotion! Besides all the extra paperwork, your new [color=#a4885c]responsibilities[/color] include running your department, making changes and choosing priorities, keeping personnel and equipment safe as well as slacking off while your cronies do all the work. + ## Берем на себя ответственность + Поздравляем вас с повышением! Помимо дополнительной бумажной работы, в ваши новые [color=#a4885c]обязанности[/color] входит управление отделом, внесение изменений и выбор приоритетов, обеспечение безопасности персонала и оборудования, а также отдых, пока ваши друзья выполняют всю работу. -Don't forget, you still have a job! Your fancy tools don't earn you a day off, you still have to fill in for any staffing shortages, helping out struggling workers and teaching the newbies. + Не забывайте, что у вас все еще есть работа! Ваши навороченные инструменты не дают вам отпуск, но они по-прежнему приходится при восполнении нехватки персонала, помощи работникам, испытывающим трудности, и обучении новичков. -You might get away with just sitting around and letting people resent you, but it's wiser to get active and work alongside them. -Remember to move your workers around to have them do what they like doing or what they do best. + Возможно, вам сойдет с рук сидеть сложа руки и позволять людям обижаться на вас, но разумнее проявить активность и работать вместе с ними. + Не забывайте перенапровлять своих сотрудников, чтобы они всегда были заняты тем, что им нравится, или тем, что у них получается лучше всего. -## Your Locker + ## Ваш шкафчик -To deal with your new soul-crushing tasks, every head is given special items to lead your subordinates. Most of your new shiny tools can be found in your [color=#a4885c]locker[/color]. + Чтобы справиться с новыми трудными задачами, каждому руководителю выдаются специальные предметы, позволяющие руководить подчиненными. Большинство ваших новых блестящих инструментов можно найти в вашем [color=#a4885c]шкафчике[/color]. -Your [color=#a4885c]remote[/color] is very simple but profoundly underestimated. A small but mighty force, your remote can open and close [color=#a4885c]airlocks[/color], spin the [color=#a4885c]bolts[/color] to lock them, or toggle [color=#a4885c]emergency access[/color]. It can do this from a distance. + Ваш [color=#a4885c]Пульт[/color] очень прост, но его сильно недооценивают. С помощью небольшого, но мощного пульта дистанционного управления вы можете открывать и закрывать [color=#a4885c]Шлюзы[/color], так же ставить их на [color=#a4885c]"Болты"[/color]чтобы заблокировать их, или выставлять [color=#a4885c]аварийный доступ[/color]. Всё это в одной коробочке, которая сопособна это делать на РАСТОЯНИИ! -The remote influences where people move around. Heads can lock personnel out of dangerous areas or let people in to grab something really quickly. + Констроль шлюзов в отделе влияет на области передвижения персонала. Руководители могут не пускать персонал в опасные зоны или позволить людям иметь быстрый и безпрепятственный доступ в определённые зоны. -You also have access to your very own [color=#1b67a5]Command[/color] channel, like every other department. However, yours is particularly special as the people who can hear you have [color=#a4885c]entire departments[/color] at their fingertips. -Use this to communicate with other heads and be a representative of what your workers want or need. + У вас также есть доступ к каналу [color=#1b67a5]Командования[/color] как и любой глава другого отдела. Данный инструмент имеет особую силу, поскольку люди, которые могут вас слышать, имеют в своем распоряжении[color=#a4885c]целые отделы[/color]. + Используйте это, чтобы общаться с другими руководителями и главами. Обычно они чего хотят или сообщают вам, в чем нуждаются ваши сотрудники. -The [color=#1b67a5]Captain[/color] and the [color=#9fed58]Head of Personnel[/color] get access to the lucrative [color=#a4885c]master encryption key[/color], letting them tune into every radio channel on the station. This is extremly valuable, as you can coordinate between departments yourself. -[color=#a4885c]Don't waste this vital advantage![/color] + [color=#1b67a5]Капитан[/color] и [color=#9fed58]Глава Персонала[/color] имеют доступ к [color=#a4885c]командному ключу шифрования[/color], позволяющий им слышать все радиоканалы станции. Это чрезвычайно ценный предмет, поскольку вы можете самостоятельно координировать работу любого отдела. + [color=#a4885c]Не забывайте про это важное преимущество![/color] -To make the swamp of paperwork (that will definitely overwhelm you) even harder to deal with, you have generously been given a [color=#a4885c]stamp[/color] in your locker. Use this to sign paperwork. After you stamp it, it can't be edited. Look it over first. + Чтобы еще больше усложнить вам работу с бумагами (которая, безусловно, вас захлестнет), в вашем шкафчике, специально для ваших документов, любезно предоставили [color=#a4885c]печать[/color]. Используйте ее для подтвержение документов. После того, как вы поставите на нем печать, редактировать его будет невозможно. Сначала просмотрите его, так как придирчивый юрист может заставить вас его переделывать... diff --git a/Resources/ServerInfo/Guidebook/Controls/Controls.xml b/Resources/ServerInfo/Guidebook/Controls/Controls.xml index 94cd325b86..cb7eccf294 100644 --- a/Resources/ServerInfo/Guidebook/Controls/Controls.xml +++ b/Resources/ServerInfo/Guidebook/Controls/Controls.xml @@ -1,48 +1,48 @@ -# Controls + # Управление -You can change the keybinds at any time here: - + Здесь вы можете изменить сочетания клавиш в любое время: + -## Basic controls -We shall politely assume you already know how WASD to walk works. -Beyond that, there's a handful primary interactions in SS14, ordered by importance: + ## Базовое управление + Мы будем вежливо предполагать, что вы уже знаете, как работает WASD. + Помимо этого, в SS14 есть несколько основных взаимодействий, упорядоченных по важности: -- [color=#a4885c][keybind="Use"/][/color] to pick up items and activate objects like buttons or computers, and [color=#a4885c][keybind="ActivateItemInWorld"/][/color] to activate items. You can also press [color=#a4885c]alt[/color] while doing this to trigger alternate interactions for some objects. -- You can also quickly activate items you're holding by pressing [color=#a4885c][keybind="ActivateItemInHand"/][/color] and [color=#a4885c][keybind="AltActivateItemInHand"/][/color] respectively. -- [color=#a4885c][keybind="UIRightClick"/][/color] to open the context menu. You can then either left click an entry just like you would in the world, or right click it again to open the verb menu, which gives you more complex ways to interact with an object. -- You can [color=#a4885c][keybind="ExamineEntity"/][/color] objects to examine them, and get their name and a detailed (though often humorous) description. + - [color=#a4885c][keybind="Use"/][/color] чтобы подобрать предметы и использовать объекты как кнопки или компьютеры, и [color=#a4885c][keybind="ActivateItemInWorld"/][/color] использовать предметы. Вы так же можете нажать [color=#a4885c]alt[/color] делая это, чтобы вызвать альтернативные взаимодействия для некоторых объектов. + - Вы также можете быстро использовать предметы, которые держите в руках, нажав [color=#a4885c][keybind="ActivateItemInHand"/][/color] и [color=#a4885c][keybind="AltActivateItemInHand"/][/color] соответственно. + - [color=#a4885c][keybind="UIRightClick"/][/color] чтобы открыть контекст меню. Затем вы можете либо щелкнуть левой кнопкой мыши по записи, как в обычном режиме, либо щелкнуть правой кнопкой мыши еще раз, чтобы открыть меню глаголов, которое предоставляет вам более сложные способы взаимодействия с объектом. + - Вы можете нажать [color=#a4885c][keybind="ExamineEntity"/][/color] на объекты чтобы осмотреть их, чтобы узнать их название и детализацию (хотя часто и с чувством юмора) описание. -You can quickly try out these controls with the monkey below (note: clicking it only works in-game and not in the lobby), and at any point in this guidebook if you're shown an entity, [color=#a4885c][keybind="ExamineEntity"/] to examine will always work[/color]: + Вы можете быстро опробовать эти элементы управления с помощью обезьянки, изображенной ниже (заметка: нажатие на нее работает только в игре, а не в лобби), и в любом месте этого руководства, если вам будет показан объект, [color=#a4885c][keybind="ExamineEntity"/] осмотр будет работать всегда[/color]: - + -## Inventory -In order to move items around in your inventory and between containers, you can click the item (or item name) to move it to your active hand, and then click the spot you want it to go (either a slot in your HUD, or the container). + ## Инвентарь + Чтобы перемещать предметы в вашем инвентаре и между контейнерами, вы можете щелкнуть по предмету (или его названию), чтобы переместить его в свою активную руку, а затем щелкнуть по месту, куда вы хотите его переместить (либо в ячейку на вашем HUD, либо в контейнер). -The items in your hands are only active one at a time, in order to swap between what you're currently using, you can press [color=#a4885c][keybind="SwapHands"/][/color] on your keyboard to change active hands. + Предметы, находящиеся у вас в руках, активны только по одному за раз, чтобы переключиться между теми, которые вы используете в данный момент, вы можете нажать [color=#a4885c][keybind="SwapHands"/][/color] на вашей клавиатуре чтобы сменить активную руку. -Opening containers in your inventory is easy as well, either hover over the item and activate it with [color=#a4885c][keybind="ActivateItemInWorld"/][/color] or click on the bag icon in the bottom right corner of the slot it is in. + Открывать контейнеры в вашем инвентаре также просто: наведите курсор на нужный предмет и активируйте его с помощью [color=#a4885c][keybind="ActivateItemInWorld"/][/color] или нажмите на значок сумки в правом нижнем углу слота, в котором она находится. -When you open a container a window will pop up showing the contents of the container and how much space it has available to hold things. -All items have an assigned size, some too large to fit into most or all containers. + Когда вы открываете контейнер, появляется окно, в котором отображается содержимое контейнера и количество свободного места для хранения вещей. + Все предметы имеют определенный размер, некоторые из них слишком велики, чтобы поместиться в большинстве или во всех контейнерах. -To drop items, you can press [color=#a4885c][keybind="Drop"/][/color], and to drop them more violently (also known as throwing), you can press [color=#a4885c][keybind="ThrowItemInHand"/][/color]. + Чтобы бросить предмет вы можете нажать [color=#a4885c][keybind="Drop"/][/color], и отбросить их с большей силой (так же известное как бросок), вы можете нажать [color=#a4885c][keybind="ThrowItemInHand"/][/color]. -A slightly advanced way to manage your inventory is to use [color=#a4885c]Shift + B[/color]. If your active hand is currently empty, this hotkey will pull out the latest item that was put in your bag. If you have an item in your hand - samek hotkey will put said item into your bag. -Hotkey [color=#a4885c]Shift + E[/color] works exactly the same, but uses your belt as storage. -## Actions -To the left in your HUD there's a bar showing various actions you can take. -You can hover over each one to see a name and description for the action that tells you what it is and how it works. -You can click on an action to invoke it, or press a number key at any time to invoke the action without clicking on it. + Немного более продвинутым способом управления вашим инвентарем является использование [color=#a4885c]Shift + B[/color]. Если ваша активная рука в данный момент пуста, эта горячая клавиша вытащит последний предмет, который был положен в вашу сумку. Если у вас в руке есть какой-либо предмет, эта же горячая клавиша положит его в вашу сумку. + Горячая клавиша [color=#a4885c]Shift + E[/color] работает точно так же, но использует ваш ремень в качестве хранилища. + ## Действия + Слева на вашем графическом дисплее есть панель, показывающая различные действия, которые вы можете предпринять. + Вы можете навести курсор на каждое из них, чтобы увидеть название и описание действия, которые расскажут вам, что это такое и как оно работает. + Вы можете щелкнуть по действию, чтобы вызвать его, или нажать цифровую клавишу в любой момент, чтобы вызвать действие, не нажимая на него. -In order to rearrange your actions, simply drag and drop them to other slots, right click to remove them, and press the gear icon at the top of the bar to open a menu to (re)add them. -You have 10 pages of actions total that you can switch between by pressing [color=#a4885c]shift-(number)[/color]. -Additionally, you can press the lock icon to prevent the action bar from being modified. + Чтобы изменить порядок ваших действий, просто перетащите их в другие ячейки, щелкните правой кнопкой мыши, чтобы удалить их, и нажмите на значок шестеренки в верхней части панели, чтобы открыть меню для (повторного) их добавления. + Всего у вас есть 10 страниц с действиями, между которыми вы можете переключаться нажатием кнопки [color=#a4885c]shift-(number)[/color]. + Кроме того, вы можете нажать на значок блокировки, чтобы предотвратить изменение панели действий. -## Movement -There's a good few things that can modify your movement, most notably slipping (which requires you to walk with [color=#a4885c]shift[/color] to avoid, usually.) and a lack of gravity. -Slipping simply stuns you for a bit, but no gravity can be deadly if you're off station and wander more than about 1.5m away from the nearest wall or solid structure, as you'll lose your grip and no longer be able to move without throwing something. + ## Передвижение + Есть несколько факторов, которые могут повлиять на ваши движения, в первую очередь это касается скольжения (для этого вам нужно ходить с [color=#a4885c]shift[/color] чтобы избежать, обычно.) и отсутствие гравитации. + Скольжение просто оглушает вас на некоторое время, но никакая гравитация не может быть смертельной, если вы сойдете с дистанции и отойдете более чем на 1,5 м от ближайшей стены или твердой конструкции, так как вы потеряете хватку и больше не сможете двигаться, не кинув что-нибудь. diff --git a/Resources/ServerInfo/Guidebook/Controls/Radio.xml b/Resources/ServerInfo/Guidebook/Controls/Radio.xml index b46668914b..8cff024e52 100644 --- a/Resources/ServerInfo/Guidebook/Controls/Radio.xml +++ b/Resources/ServerInfo/Guidebook/Controls/Radio.xml @@ -1,28 +1,28 @@ - # Radio + # Радио - Your radio allows you to communicate across the entire station and to your specific [color=#a4885c]department[/color]. + С помощью вашей гарнитуры вы можете поддерживать связь со всей станцией и с конкретным [color=#a4885c]отделом[/color]. - To send a station-wide message over the radio preface your text with [color=#a4885c]semi-colon (;)[/color]. + Чтобы отправить сообщение по радио на всю станцию, укажите в начале текста [color=#a4885c] точку с запятой (;)[/color]. - ## Departmental Radio + ## Радио различных отделов - You are able to send messages over your departmental radio channels using [color=#a4885c]colon (:)[/color] followed by the - department letter as long as you're wearing a headset with your department's encryption key. + Вы можете отправлять сообщения по каналам радиосвязи вашего отдела, используя [color=#a4885c]двоеточие (:)[/color], за которым следует + буква отдела, если на вас надета гарнитура с ключом шифрования вашего отдела. - Examine your headset to see the department channels available to you. + Проверьте свою гарнитуру, чтобы увидеть доступные вам каналы отдела. - - - + + + + + Если вы изучите стандартную инженерную гарнитуру, то увидите префиксы для [color=#32cd32]Общего[/color] и [color=#f37746]Инженерного[/color]. + каналов. - Examining a default engineering headset would show you the prefixes for the [color=#32cd32]Common[/color] and [color=#f37746]Engineering[/color] - channels. - - It is also possible to use [color=#a4885c]:h[/color]. This hotkey will automatically default to your department radio channel. For an example if you're Captain, then [color=#a4885c]:h[/color] will default to [color=#a4885c]:c[/color] + Также можно использовать [color=#a4885c]:р[/color]. Эта горячая клавиша автоматически настроит радиоканал вашего отдела по умолчанию. Например, если вы капитан, то [color=#a4885c]:р[/color] по умолчанию будет [color=#a4885c]:к[/color] diff --git a/Resources/ServerInfo/Guidebook/Engineering/Atmospherics.xml b/Resources/ServerInfo/Guidebook/Engineering/Atmospherics.xml index 7194ba2bbe..7ad4963b23 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Atmospherics.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Atmospherics.xml @@ -1,60 +1,67 @@  -# Атмосфера + # Атмосфера -Настройка атмосферы необходима для вашего комфортортного долгосрочного пребывания на станции, но зачастую никак не описана, что приводит к тому, что настроить её довольно сложно. Ниже предпринята попытка охватить основы. + Настройка атмосферы необходима для вашего комфортортного долгосрочного пребывания на станции, но зачастую никак не описана, что приводит к тому, что настроить её довольно сложно. Ниже предпринята попытка охватить основы. -## Стандартная смесь -Дыхание чистым O2 или чистым N2, как правило, вредно для здоровья экипажа, поэтому рекомендуется использовать смесь [color=#a4885c]78% N2 и 22% O2 при 101,24 кПа.[/color] Рекомендуется настроить ваш газовый смеситель на выход не менее 1000 кПа для более быстрого восстановления давления в помещениях. - - - + ## Стандартная смесь + Дыхание чистым O2 или чистым N2, как правило, вредно для здоровья экипажа, поэтому рекомендуется использовать смесь [color=#a4885c]78% N2 и 22% O2 при 101,24 кПа.[/color] Рекомендуется настроить ваш газовый смеситель на выход не менее 1000 кПа для более быстрого восстановления давления в помещениях. + + + -Вариации этой смеси могут быть необходимы для комфортного долгосрочного пребывания нетипичных членов экипажа, например, членов экипажа, которым для выживания требуется плазменная газовая смесь. Рекомендуется создать для нетипичных членов экипажа отдельное пространство, изолированное шлюзом либо отсеком для удаления газов. Помните, что оба метода негерметичны, и вам понадобятся скрубберы по обе стороны шлюза, чтобы удалять любые просочившиеся газы. - - - - -## Вентиляция и скрубберы -Вентиляторы и скрубберы — это ключевые устройства для поддержания атмосферы, соответственно наполняющие и очищающие отсеки газами. Изначально они настроены на заполнение помещений до стандартного давления (101,24 кПа) и на удаление из помещения всех газов, не являющихся O2/N2. Их можно переконфигурировать из стандартных настроек, что позволяет настроить их реакцию на различные типы газов или уровни давления. Это можно сделать, взаимодействуя с имеющимся рядом воздушными сигнализациями или установив и подключив его к новой. + Вариации этой смеси могут быть необходимы для комфортного долгосрочного пребывания нетипичных членов экипажа, например, членов экипажа, которым для выживания требуется плазменная газовая смесь. Рекомендуется создать для нетипичных членов экипажа отдельное пространство, изолированное шлюзом либо отсеком для удаления газов. Помните, что оба метода негерметичны, и вам понадобятся скрубберы по обе стороны шлюза, чтобы удалять любые просочившиеся газы. + + + + + ## Вентиляция и скрубберы + Вентиляторы и скрубберы — это ключевые устройства для поддержания атмосферы, соответственно наполняющие и очищающие отсеки газами. Изначально они настроены на заполнение помещений до стандартного давления (101,24 кПа) и на удаление из помещения всех газов, не являющихся O2/N2. Их можно переконфигурировать из стандартных настроек, что позволяет настроить их реакцию на различные типы газов или уровни давления. Это можно сделать, взаимодействуя с имеющимся рядом воздушными сигнализациями или установив и подключив его к новой. - - - - -При нормальной работе, если вентиляция обнаруживает, что окружающая среда представляет собой космос, она автоматически прекращает работу до момента возникновения минимального давления, чтобы избежать утечки в него всего газа. Снова её включить можно повысив давление в отсеке до минимального, выпустив канистру газа (возможно даже несколько, если помещение большое). + + + + + При нормальной работе, если вентиляция обнаруживает, что окружающая среда представляет собой космос, она автоматически прекращает работу до момента возникновения минимального давления, чтобы избежать утечки в него всего газа. Снова её включить можно повысив давление в отсеке до минимального, выпустив канистру газа (возможно даже несколько, если помещение большое). -Если вы столкнулись с ситуацией, когда скрубберы не могут очистить воздух в помещении достаточно быстро, воспользуйтесь портативными скрубберами, подтащив их к месту загрязнения и закрепив их гаечным ключом. Они работают гораздо быстрее, чем обычные скрубберы, и могут довольно быстро очистить воздух помещения. При больших загрязнениях может потребоваться использование нескольких таких устройств. - - - -# Смешивание газов и камеры сгорания -В случае, если вы выполнили все поставленные задачи, вы можете получить дополнительную энергию или деньги, создавая новые химические газы. - -## Тритий -Тритий - это прозрачный зелёный газ, который легко воспламеняется, радиоактивен и сгорает при контакте с кислородом, что делает его очень полезным при работе с [color=#a4885c]ТЭГ-ом[/color]. -Его можно получить, сжигая 1% плазмы и 96% или более кислорода в камере сгорания. Вы можете извлечь этот газ с помощью скрубберов. - - - - - - - + Если вы столкнулись с ситуацией, когда скрубберы не могут очистить воздух в помещении достаточно быстро, воспользуйтесь портативными скрубберами, подтащив их к месту загрязнения и закрепив их гаечным ключом. Они работают гораздо быстрее, чем обычные скрубберы, и могут довольно быстро очистить воздух помещения. При больших загрязнениях может потребоваться использование нескольких таких устройств. + + + + # Смешивание газов и камеры сгорания + В случае, если вы выполнили все поставленные задачи, вы можете получить дополнительную энергию или деньги, создавая новые химические газы. -## Фрезон -Фрезон - это голубовато-зелёный газ, очень сложный и очень опасный. Для получения фрезона необходимо смешать тритий, кислород и азот в помещении с температурой -203.15°C, чтобы запустить реакцию, а также предотвратить сгорание трития с кислородом. + ## Тритий + Тритий - это прозрачный зелёный газ, который легко воспламеняется, радиоактивен и сгорает при контакте с кислородом, что делает его очень полезным при работе с [color=#a4885c]ТЭГ-ом[/color]. + Его можно получить, сжигая 1% плазмы и 96% или более кислорода в камере сгорания. Вы можете извлечь этот газ с помощью скрубберов. - - - - - - + + + + + + + + ## Фрезон + Фрезон - это голубовато-зелёный газ, очень сложный и очень опасный. Для получения фрезона необходимо смешать тритий, кислород и азот в помещении с температурой -203.15°C, чтобы запустить реакцию, а также предотвратить сгорание трития с кислородом. + + + + + + + + + Важно понимать, что утечка фрезона может погубить станцию, превратив её в зимний ад с зудящими свитерами и обморожениями. Фрезон очень холодный и может заморозить станцию до смерти, если хотя бы несколько молей выберутся наружу, так что убедитесь, что вы заперли свои канистры или просто переместили фрезон прямо в хранилище. -Важно понимать, что утечка фрезона может погубить станцию, превратив её в зимний ад с зудящими свитерами и обморожениями. Фрезон очень холодный и может заморозить станцию до смерти, если хотя бы несколько молей выберутся наружу, так что убедитесь, что вы заперли свои канистры или просто переместили фрезон прямо в хранилище. + ## Справочный лист + - Стандартная атмосферная смесь - это [color=#a4885c]78% N2 и 22% O2 при давлении 101,24 кПа.[/color] + - Газ подчиняется реальной математике. Вы можете использовать уравнение PV = nRT (P - давление кПа * V - объем л = моли * R * температура К), чтобы получить информацию, которую вам нужно знать о газе. R - константа, приблизительно равна 8,31446. -## Справочный лист -- Стандартная атмосферная смесь - это [color=#a4885c]78% N2 и 22% O2 при давлении 101,24 кПа.[/color] -- Газ подчиняется реальной математике. Вы можете использовать уравнение PV = nRT (P - давление кПа * V - объем л = моли * R * температура К), чтобы получить информацию, которую вам нужно знать о газе. R - константа, приблизительно равна 8,31446. + ## РСУАП + РСУАП - надёжный друг атмосферного техника, что поможет вам быстро и легко создать всё что пожелает атмосферное дело, РСУАП расшифровывается как "Ручное Строительно Устройство Атмосферного Предназначения". РСУАП имеет 130 спрессованой материи изначально, её можно тратить на четыре категории действий. + Газовые трубы - категория в которой вы можете выбрать любую газовую трубу и построить её где захотите, главное условие это строительство на покрытии, поверх плитки у вас не получится поставить трубу, но зато можно под окнами! + Утилизационные трубы - категория в которой вы можете выбрать любую утилизационную трубу и построить её где захотите по тем же условиям, что и газовые. Утилизационные трубы используются для создания мусоропроводного пути или для почтового. + Девайсы - главная категория возможностей РСУАП которая позволяет вам возвести **ЛЮБОЕ** устройство относящиеся к атмосферному делу. Всё от вентиляторов до утилизационных или почтовых блоков! + Демонтаж - категория на случай неудачного расположения трубы или девайса, просто разберёт всё что может построить РСУАП, но возврату материи не подлежит, требует материю для демонтажа. diff --git a/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml b/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml index 6e89df4432..b9df408aaa 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml @@ -2,64 +2,64 @@ - # The Supermatter Engine + # Двигатель Суперматерии - So you've decided to take on the challenge and set up the Supermatter Engine? First, let's give you a short overview of the main Supermatter crystal beforehand. + Итак, вы решили принять вызов и создать Двигатель Суперматерии? Сначала давайте немного познакомимся с самим кристаллом Суперматерии. - Its primary features are emitting electrical arcs that are harnessed to power the station through tesla coils. + Его основная характеристика заключаются в излучении электрических дуг, которые используются для питания станции с помощью катушек Тесла. - Side effects include radiation emission, releasing hot oxygen and plasma, heating the air around, and exploding, transforming into a black hole or an energy ball and eating the entire station if you screw up hard enough. + Побочные эффекты включают излучение, выброс горячего кислорода и плазмы, нагрев воздуха вокруг и взрыв, превращение в черную дыру или энергетический шар и поглощение всей станции, если вы достаточно сильно облажаетесь. - It begins inert but being hit by an object or a projectile will activate it and it'll start exhibiting nearly all of the aforementioned properties. + Вначале он безопасен, но попадание в него предмета или снаряда активирует его, и он начнет проявлять почти все вышеупомянутые свойства. - ## Words of Warning + ## ПРЕДУПРЕЖДЕНИЕ! - 1. The Supermatter crystal is [color=red]VERY DANGEROUS[/color]. Activating the crystal should be the last step in setting up any form of Supermatter based power! + 1. Кристалл сверхматерии [color=red]ОЧЕНЬ ОПАСЕН[/color]. Активация кристалла должна быть последним шагом в создании любой формы энергии, основанной на Сверхматерии! - 2. [color=red]PUT YOUR RADIATION SUIT ON[/color]. + 2. [color=red]НАДЕНЬ СВОЙ ПРОТИВОРАДИАЦИОННЫЙ КОСТЮМ[/color]. - 3. Most the Supermatter setup involves a gas loop that is designed to cool down the Supermatter chamber. Please have at least some knowledge of gases and their atmospheric properties. + 3. В большинстве случаев установка Supermatter включает в себя газовый контур, предназначенный для охлаждения камеры со сверхматерией. Пожалуйста, обладайте хотя бы некоторыми знаниями о газах и их атмосферных свойствах. - 4. Anything that bumps into the Supermatter is [color=red]fundamentally annihilated[/color]. [color=red]Do not touch it[/color]. This means weld and bolt the door to the chamber. + 4. Все, что сталкивается со Суперматерией, [color=red]ПРЕВРАЩАЕТСЯ В ПЕПЕЛ![/color]. [color=red]Не трогать![/color]. Это означает, что дверь камеры нужно Зварить и запереть на засов. Можно застроить стеной. - ## Gas Interactions + ## Взаимодействие с газами - Here's a list of all gases from least dangerous to most dangerous. + Вот список всех газов от наименее опасных до наиболее опасных. - 1. [color=#bffffe]Frezon[/color]. Aside from cooling down the Supermatter, it basically stops power and waste production, which may come handy if the Supermatter is close to delaminating and you need to shut it down fast. + 1. [color=#bffffe]Фризон[/color]. Помимо охлаждения Сверхматерии, он способен останавливает выработку электроэнергии и газов, что может пригодиться, если Суперматерия близка к дестабилизации и вам нужно быстро ее отключить. - 2. [color=#c20000]Nitrogen[/color]. N2 is the basic gas most Supermatter setups will run exclusively, being very simple to set up for. It dampens the power generation from heat, and reduces the amount of plasma the SM belches out, making it good for when you aren't trying to do something silly. + 2. [color=#c20000]Азот[/color]. N2 это основной газ, на котором работает большинство установок Суперматерии, поскольку он очень прост в настройке. Он снижает выработку энергии за счет тепла и уменьшает количество плазмы, выделяемой Суперматерия, что делает его полезным, когда вы не пытаетесь делать что-то глупое. - 3. [color=#b16d6d]Nitrous oxide[/color]. Reinforces the heat resistance of the crystal, allowing for much hotter setups than usual. However, at high temperatures it will decompose into Nitrogen and Oxygen. While N2 is good, O2 certainly is not. This O2 will also react with the Plasma to create Tritium and then a Tritium fire. + 3. [color=#b16d6d]Оксид азота[/color]. Повышает термостойкость кристалла, позволяя использовать его в гораздо более жарких условиях, чем обычно. Однако при высоких температурах он разлагается на азот и кислород. В то время как N2 - это хорошо, O2, опасен и не подходит. Этот O2 также вступает в реакцию с плазмой, образуя тритий, а затем тритиевый огонь. - 4. [color=#62d5ca]Oxygen[/color]. Provides a boost to power transmission without actively increasing the waste gas amount or temperature. Pretty risky to use, as any disruption of the cooling loop will soon cause a plasma fire in the crystal chamber. Even just a high concentration of O2 will activate and continuously power the crystal. + 4. [color=#62d5ca]Кислород[/color]. Обеспечивает повышение мощности при передаче без существенного увеличения количества отходящих газов или температуры. Довольно рискованно использовать, так как любое нарушение работы контура охлаждения вскоре приведет к возгоранию плазмы в камере кристалла. Даже высокая концентрация O2 активирует кристалл и обеспечивает его непрерывным питанием. - 5. [color=#19b348]Ammonia[/color]. Increases the power generation slightly at a minor cost to the heat penalty. + 5. [color=#19b348]Аммиак[/color]. Незначительно увеличивает выработку электроэнергии при незначительных затратах на утилизацию тепла. - 6. [color=#979797]Carbon Dioxide[/color]. In low concentrations, it will increase the crystal's power generation. In high concentrations it will raise the crystal's energy to extremely high levels. With poor management and insufficient or downright bad preparation, it will eventually exceed safe energy levels and begin a charge delamination, producing electric arcs and anomalies until it eventually explodes into a Tesla ball. + 6. [color=#979797]Углекислый газ[/color]. В низких концентрациях он увеличивает выработку энергии кристаллом. В высоких концентрациях он повышает энергию кристалла до чрезвычайно высокого уровня. При плохом управлении и недостаточной или совершенно плохой подготовке он в конечном итоге превысит безопасный уровень энергии и начнет расслаиваться, создавая электрические дуги и аномалии, пока в конце концов не превратится в шар Тесла. - [color=red]7[/color]. [color=#ff9d00]Plasma[/color]. Very similar to Oxygen but provides a higher power boost as well as a much higher waste and heat penalty. The extreme pressures and volumes of gas produced by this gas are very likely to clog pipes and overheat the chamber. + [color=red]7[/color]. [color=#ff9d00]Плазма[/color]. Очень похож на кислород, но обеспечивает более высокую мощность, а также значительно меньшее количество отходов и тепла. Экстремальные давления и объемы газа, образующегося при использовании этого газа, с большой вероятностью могут привести к закупорке труб и перегреву камеры. - [color=red]8[/color]. [color=#08a800]Tritium[/color]. Increases the power production of the Supermatter by up to 3 times, there is one slight issue with it. It is dangerous. It is very dangerous. Tritium is a horrifyingly irritable and jumpy gas. While it isn't as harmful to the heat level as Plasma is (just barely), it also has the second worst heat capacity of all gasses while Plasma has the second highest. This means that Plasma can be kept happy with enough cooling, whereas Tritium eagerly goes from a safe space loop into a burning hellfire. Add to this the byproduct of large amounts of Oxygen production (not exclusive to Tritium, an issue in a Plasma engine too), and you have a tritium fire and a very hot crystal. Do not use this gas unless you have a very strong understanding of atmospherics and the Supermatter, and are willing to get creative. + [color=red]8[/color]. [color=#08a800]Тритий[/color]. Увеличивает выработку энергии сверхматерией до 3 раз, но с этим есть одна небольшая проблема. Это опасно. Это очень опасно. Тритий - ужасно раздражительный и нервный газ. Хотя он не так вреден для тепловыделения, как плазма (совсем немного), он также обладает второй по величине теплоемкостью из всех газов, в то время как плазма занимает второе место по величине. Это означает, что плазму можно поддерживать в хорошем состоянии при достаточном охлаждении, в то время как тритий охотно переходит из безопасной космической петли в пылающий адский огонь. Добавьте к этому побочный продукт производства большого количества кислорода (не только трития, это тоже проблема плазменного двигателя), и вы получите тритиевый огонь и очень горячий кристалл. Не используйте этот газ, если вы не обладаете очень глубокими знаниями об атмосфере и суперматерии и не готовы к творческому подходу. - ## Practical guide to the Supermatter + ## Практическое руководство по Суперматерии - Now, forget about everything you've just read and get to setting up the most basic loop there is: the Nitrogen loop. + Теперь забудьте обо всем, что вы только что прочитали, и приступайте к настройке самого простого из существующих циклов: азотного цикла. - The atmospheric setup in its' most basic form should look like this: + Атмосферный цикл в его самом простом виде должен выглядеть следующим образом: - (We did not have enough budget for images, here is a text representation) + (У нас не хватило бюджета на изображения(и это точно не лень), вот текстовое представление) - 1. Nitrogen gets pumped into the chamber by passive vents from one side + 1. Азот подается в камеру через пассивные вентиляционные отверстия с одной стороны - 2. Every gas gets pumped out of the chamber by using scrubbers set on Siphon on the other side. + 2. Все газы откачиваются из камеры с помощью скрубберов, установленных на сифоне с другой стороны. - 3. The output gets filtered, cooled down, and excess nitrogen gets either routed into space or rerouted into the input. + 3. На выходе происходит фильтрация, охлаждение, а избыток азота либо выводится в космос, либо перенаправляется на вход. - That's basically it. I hope you understand at least something in this example. Now get to it! + Вот, по сути, и все. Я надеюсь, вы хоть что-то поняли из этого примера. А теперь приступайте к делу! - ## Experiment + ## Эксперимент - You're not a real engineer if you haven't figured out the most efficient way to produce electricity using the Supermatter crystal, are you? + Вы не настоящий инженер, если не придумали наиболее эффективный способ получения электричества с помощью кристалла суперматерии, не так ли? - \ No newline at end of file + diff --git a/Resources/ServerInfo/Guidebook/Glossary.xml b/Resources/ServerInfo/Guidebook/Glossary.xml index 7150c448d9..4842e02758 100644 --- a/Resources/ServerInfo/Guidebook/Glossary.xml +++ b/Resources/ServerInfo/Guidebook/Glossary.xml @@ -1,155 +1,158 @@ -# Glossary + # Глоссарий -This page contains most slang terms you might encounter on the station and throughout the community ! + На этой странице собрано большинство жаргонных выражений, с которыми вы можете столкнуться на станции и в сообществе! -# In-Character Slang + # Характерный сленг -These are terms you might encounter in-game. + Это термины, с которыми вы можете столкнуться в игре. -## AOS -Arrest on sight. + ## Арест + Арестовать на месте. -## AA -All Access, or an ID which has every access on the station. The captain is the only person who will have this kind of access under normal circumstances. + ## Фул\Полный доступ + Полный доступ или ID, который дает доступ ко всем возможностям на станции. Капитан - единственный человек, который имеет такой доступ при обычных обстоятельствах. -## Atmos -Short for Atmospherics. + ## Атмос + Атмосферный техник -## Atmosian -A term for Atmospheric Technicians, or generally anyone who spends most of their time or is particularly skilled with Atmospherics. + ## Атмосия + Отдел в инженерии, имеющий доступ уровня атмоса, где находятся все газы станции. -## Bolted -An airlock that will never change states. It will stay permanently open or permanently closed until it is unbolted. Closed and bolted airlocks have solid red lights. + ## Болты + оздушный шлюз, состояние который открыть не предстовляется возможным. Он будет оставаться постоянно открытым или постоянно закрытым до тех пор, пока не будет сняты "Болты". На таких воздушных шлюзах постоянно горит красный индикатор. -## Borg -Short for cyborgs, player-controlled robots. + ## Борг + Сокращение от киборгов, роботов, управляемых игроком. -## Braindead -Refers to a user who has disconnected from the game. Disconnected users may still reconnect to the server and assume control of their character again. + ## ССДшер + Относится к пользователям, которые отключился от игры. Отключенные пользователи все еще могут повторно подключиться к серверу и снова взять под контроль своего персонажа. -## Brig -The main area of the security department. This is where prisoners are brought and held for their punishment. The Warden is in charge of the brig's smooth operation. + ## Бриг + Главная зона отдела безопасности. Сюда доставляют заключенных и содержат их для отбывания наказания. Надзиратель отвечает за бесперебойную работу тюрьмы. -## Cap -Short for Captain. + ## Кэп + Сокращение от "капитан". -## Cargonia -Reference to logistics declaring independance. Against the rules. + ## Каргония + Ссылка на декларирование независимости снабжения. Противоречит правилам. + Ссылка на декларирование независимости логистики. Противоречит правилам. -## CentCom/Central Command -An administrative agency which oversees the Nanotrasen space station you inhabit. + ## ЦентКом\ЦК + Административное учреждение, которое контролирует космическую станцию Nanotrasen, на которой вы находитесь. -## CE -Short for Chief Engineer, the head of the Engineering Department. + ## СИ + Сокращение от главного инженера, руководителя инженерного отдела. -## CMO -Short for Chief Medical Officer, the head of the Medical Department. + ## ГВ + Сокращение от главного врача, главы медицинского отдела. -## Crit/Critical -Refers to the health state at which you fall unconscious and unable to move. While in critical, your health slowly decays until you die, unless you happen to get outside assistance. + ## Крит + Относится к состоянию здоровья, при котором вы теряете сознание и не можете двигаться. Находясь в критическом состоянии, ваше здоровье медленно ухудшается, пока вы не умрете, если только вам не окажут помощь извне. -## ERT -An Emergency Response Team. These may be dispatched by Central Command for a number of purposes. + ## ЕМАГ\ЕМАГнуто + Относится к криптографическому взломщику\модифицированная карта Syndicate. Используют "взламыватель" обычно на воздушных шлюзах или на закрытых шкафах, а также к любому другому устройству, взломанному с помощью ЕМАГ. -## HoP -Short for Head of Personnel, head of the Service Department. + ## ОБР + Отряд Быстрого Реагирования. Они могут быть направлены Центральным командованием для различных целей. -## HoS -Short for Head of Security. + ## Срочники + Слово, которое пошло от стримера Wycc220. Используется для обозначения новичков и не опытных игроков, ссылаясь на армию, где есть "Контрактники", которые пошли на службу по желанию и всё делают для этого, а есть "Срочники", которые не желали и вынуждены проходить военную службу. -## Insuls -Short for Insulated Gloves. These are the yellow gloves most often worn by Engineers. They are offer complete protection from getting electrocuted from shocked things. Vastily more effective than their budget variety. + ## Боги + Термин, обозначающий администратора сервера. ЦК также иногда используется в этом значении. -## KOS -Kill on sight. Someone has commited such a serious crime that they are deemed not even worth arresting. + ## Набегатор + Обозначает лицо или группу лиц, которые прибывают на сервер и устраивают хаус, с целью ухудшить раунд. Воспринимайте их как промытых до мозга костей агентов синдиката, единственная цель которых - напакастить станции. -## Perma -Short for Permanent Brig. This is for the most serious crime and means that a prisoner will never be released. Most stations have a dedicated, seperate area of security for the permanent brig. + ## ГП + Сокращение от Главы персонала, начальник отдела сервиса. Также может относиться к офису ГП, где выдаются или обновляются ID карты. -## MG -Short for Mystagogue, the head of the Epistemics Department. + ## ГСБ + Сокращение от Галва службы безопасности, начальник отдела безопасности. -## LO -Short for Logistics Officer, the head of the Logistics department. + ## Изольки + Сокращение от изолированных перчаток. Это желтые перчатки, которые чаще всего носят инженеры. Они обеспечивают полную защиту от поражения электрическим током при работе с провадами. Они намного эффективнее, чем их бюджетные аналоги. -## Greytide/Greyshirt/Tider/Assistant -Typically utilized to refer to a Passenger due to the color of their standard uniform, though this may be used to negatively refer to other crew members (not only passengers) who act unruly or commit various minor crimes. + ## Летал + Тип патронов или вооружения, который применяется с целью убить. -## God -An IC term representing a Server Administrator. CentCom is also sometimes used in this manner. + ## Резина\не летал + Тип патронов или вооружения, который применяется с целью захватить цель. -## Nukie -A slang/shorthand term of a Nuclear Operative. May sometimes also appear as "Nuke Op". + ## ПермаБриг\Перма + Это место заключение для преступников, совершивших наиболее тяжким преступлениям и означает, что заключенный никогда не будет освобожден. На большинстве станций есть специальная зона для пермабрига. -## Newkie -A portmanteau of "New" and "Nukie" used to refer to an inexperienced player in the role of a Nuclear Operative. + ## НД + Научный директор. Глава научно-исследовательского отдела. -## Shift -In-Character way to refer to rounds. + ##НИО\РНД + Научно-исследовательский отдел. РНД от ангийского обозначения (Research and Development). -## Singulo -A shortening of the Singularity Engine. A Singulo can create infinite power for the station but is very dangerous. + ## НаноТрейзен\НТ + Nanotrasen - это компания, которой принадлежит космическая станция, на которой вы живете. -## Singuloose -A Singularity that has grownth too much and breached it's containment. It will rip through the station causing massive damage. + ## КМ + Квартирмейстер. Глава отдела снабжения\логистики -## SSD -Short for Sudden Sleep Disorder or Space Sleep Disorder. This is an in-character way to refer to a player who has disconnected and is no longer responding. + ## ЯО + Сленговый/сокращенный термин, обозначающий Ядерного Оперативника. Иногда может также звучать как "Ядерщики". -## Syndie/Syndi/Syndicate -A catch-all reference to anyone employed by the Syndicate. This ranges from (suspected) Syndicate Agents to Nuclear Operatives. + ## Робаст + Слово, используемое для описания кого-то, кто особенно искусен в бою или пережил тяжелую схватку. -## Flukie -A portmanteau of "Fluke" and "Nukie" used to (usually derogatorily) refer to a team of Nuclear Operatives who fail their objective. May also appear as "Fluke Ops". + ## Утиль + Утилизатор. -## Nanotrasen/NT -Nanotrasen is the company which owns the space station you inhabit. + ## Техас + Технический ассистент -## Spess -An intentional mis-spelling of "Space", sometimes used as a portmanteau of "space" and "mess". May also appear in words such as "Spessmen". + ## Ведущий + Обозначение для Ведущих ролей. Ведущий учёный, медик, инженер. -## Spacing -An event which causes an area to lose air pressure, i.e. a hull breach. + ## СБ + Сокращение от службы безопасности. -## TC -A telecrystal, which is a currency used by Syndicate Agents to purchase restricted contraband such as weapons and other illegal equipment. + ## Смена + Символьный способ обозначения раундов. -## Wardenloose -A joke term referencing a Singuloose. A wardenloose is when the Warden is seen outside of the brig. + ## Разгерма + Событие, приводящее к потере давления воздуха в какой-либо области, т.е. к пробоине корпуса. -# Out-Of-Character Slang + ## Синди\Синдикат\Агент + Общее описание всех, кто работает на Синдикат. Это могут быть как (подозреваемые) агенты Синдиката, так и ядерщики. -These are terms you should only be using in OOC chat or outside the game. + ## ТК + Телекристалл - это валюта, используемая агентами синдиката для покупки запрещенной контрабанды, такой как оружие и другое незаконное оборудование. -## Admeme -An event hosted or caused by an admin. + ## Ксеноархеология + часть отдела НИО и наука, изучающая артефакты. Как правило, этим занимается наука. -## AHelp/Admin Help -A relay used to report rulebreaking behavior or other issues to administrators. + # ООС + Эти термины или диалог, который должен быть использован только в чате OOC или вне игры. -## Antag -Short for Antagonists, which are specifically picked individuals designed to drive the round into chaos. + ## Админ + Администратор сервера\Модератор. Проще говоря, человек с правами и "Кнопками" -## Bwoink -The noise made when an admin-help is received. Pray this isn't a ban. + ## Ахелп + Специальный канал, открываемый на F1. используемый для сообщения администраторам о нарушениях правил, запросе помощи или других проблемах. -## Upstream -The baseline version of the game. Any changes to Upstream will "flow" down to all other forks of the game. All official Wizard's Den servers work off of Upstream. + ## Антаг + Сокращение от Антагонист, которые являются специально подобранными личностями, созданными для того, чтобы ввергнуть раунд в хаос. -## LRP -Low Roleplay. Servers marked LRP typically have relaxed roleplaying rules. + ## Мета + Информация о раунде, которую игрок не должен был знать -## MRP -Medium Roleplay. Servers marked MRP usually have a decent basis of roleplaying rules and generally require players to act as their character would realistically in a given situation. Less leeway is afforded to behavior such as openly defying Security or your boss. + ## ЛРП + Низкий уровень ролевой игры. На серверах с пометкой ЛРП обычно действуют смягчённые правила ролевой игры. -## HRP -High Roleplay. Servers marked HRP generally have extensive rules on what is and is not constituted while playing a character. You are generally required to act as your character would, have a character backstory, and follow protocol on the station. Some HRP servers may create their own lore or settings to further facilitate the type of server they wish to host. + ## МРП + Ролевая игра среднего уровня. На серверах с пометкой МРП обычно действуют чёткие правила ролевой игры и, как правило, от игроков требуется, чтобы они действовали так, как их персонаж поступил бы в реальной ситуации. В таких случаях предоставляется меньше свободы действий, например, открытое неповиновение охране или своему боссу. -##Self-Antag -A term for a player who engages in antagonist-like activity without actually being an antagonist. This encompasses a wide variety of behavior, but is typically used to describe annoying behavior or actions which are greatly detrimental to other players for no purpose. Self-antagonism is a bannable offense. Sometimes used in IC. DO NOT DO THIS. + ## ХРП\ХардРП + Высокий уровень ролевой игры. На серверах с пометкой ХРП, как правило, действуют подробные правила о том, что можно, а что нельзя использовать при игре персонажем. Как правило, от вас требуется вести себя так, как вёл бы ваш персонаж, иметь предысторию персонажа и следовать протоколу на станции. Некоторые РП сервера могут иметь свой собственный лор или настройки, чтобы ещё больше облегчить выбор типа сервера, который они хотят разместить. -## Validhunting -A player who hunts down "valids", as in people that are valid to kill, even though this person isn't security. + ## М.А.В.\Мавы + Религия на сервере LostParadaise, созданная Главным Игровым мастером, цде цель покланения - Гига котам МАВам. Но ПЭХи лучше!!! diff --git a/Resources/ServerInfo/Guidebook/Jobs.xml b/Resources/ServerInfo/Guidebook/Jobs.xml index d50031f576..ad58190c40 100644 --- a/Resources/ServerInfo/Guidebook/Jobs.xml +++ b/Resources/ServerInfo/Guidebook/Jobs.xml @@ -1,41 +1,41 @@  -# Должности + # Должности -SS14 имеет большое количество должностей, которые разделены по 7 основным отделам: + SS14 имеет большое количество должностей, которые разделены по 7 основным отделам: -## Сервисный отдел -В этот отдел входят глава персонала (ГП), пассажиры, уборщик, клоун, мим, музыкант, шеф-повар, бармен, и другие должности, которые занимаются обслуживанием станции. + ## Сервисный отдел + В этот отдел входят глава персонала (ГП), пассажиры, уборщик, клоун, мим, музыкант, шеф-повар, бармен, и другие должности, которые занимаются обслуживанием станции. -Они те кто развлекают, кормят и поят остальных членов экипажа, и убирают за ними. Исключением являются пассажиры, у которых нет определённой задачи, кроме как теряться в техтуннелях. + Они те кто развлекают, кормят и поят остальных членов экипажа, и убирают за ними. Исключением являются пассажиры, у которых нет определённой задачи, кроме как теряться в техтуннелях. -## Отдел логистики -В отдел логистики входят грузчики, утилизаторы, и их глава — офицер логистики (ОЛ). Этот отдел занимается распределением грузов и ресурсов по станции, и торговлей на галактическом рынке. + ## Отдел логистики + В отдел логистики входят грузчики, утилизаторы, и их глава — офицер логистики (ОЛ). Этот отдел занимается распределением грузов и ресурсов по станции, и торговлей на галактическом рынке. -Это означает, что они занимаются поиском материалов и вещей на станции и обломках в космосе для продажи, а также закупкой всего, что запрашивают другие отделы. + Это означает, что они занимаются поиском материалов и вещей на станции и обломках в космосе для продажи, а также закупкой всего, что запрашивают другие отделы. -## Служба безопасности -В службу безопасности входят кадеты, офицеры, детектив, смотритель, и глава службы безопасности (ГСБ). В обязанности отдела входит борьба с нарушителями спокойствия и негуманоидными угрозами, такими как гигантские крысы и карпы. + ## Служба безопасности + В службу безопасности входят кадеты, офицеры, детектив, смотритель, и глава службы безопасности (ГСБ). В обязанности отдела входит борьба с нарушителями спокойствия и негуманоидными угрозами, такими как гигантские крысы и карпы. -В результате этого, а также необходимости соблюдать тонкую грань, служба безопасности иногда оказывается под давлением разъяренного экипажа (не убивайте клоуна), и для сотрудников отдела важно стараться вести себя как можно лучше. + В результате этого, а также необходимости соблюдать тонкую грань, служба безопасности иногда оказывается под давлением разъяренного экипажа (не убивайте клоуна), и для сотрудников отдела важно стараться вести себя как можно лучше. -## Медицинский отдел -В медицинский отдел входят интерны, врачи, химики, психолог, и главный врач (ГВ). Этот отдел отвечает за заботу о здоровье экипажа, лечение и/или клонирование раненых и мертвых, лечение вирусных болезней, и предотвращение того, чтобы все умерли ужасной, кровавой смертью где-нибудь в шкафу. + ## Медицинский отдел + В медицинский отдел входят интерны, врачи, химики, психолог, и главный врач (ГВ). Этот отдел отвечает за заботу о здоровье экипажа, лечение и/или клонирование раненых и мертвых, лечение вирусных болезней, и предотвращение того, чтобы все умерли ужасной, кровавой смертью где-нибудь в шкафу. -Медицинский отдел является одним из наиболее хорошо оснащённых, с возможностью определения местонахождения раненых членов экипажа с помощью монитора экипажа, почти бесконечным запасом медикаментов если химики не подведут, и способностью быстро диагностировать и вакцинировать контагиозные заболевания. + Медицинский отдел является одним из наиболее хорошо оснащённых, с возможностью определения местонахождения раненых членов экипажа с помощью монитора экипажа, почти бесконечным запасом медикаментов если химики не подведут, и способностью быстро диагностировать и вакцинировать контагиозные заболевания. -## Научный отдел -Научный отдел состоит из ассистентов, учёный, исследователей, робототехников и директора по исследованиям. Как отделёный от станции отдел, он отвечает за исследование технологий и артефактов, модернизацию оборудования и печать новых полезных устройств. + ## Научный отдел + Научный отдел состоит из ассистентов, учёный, исследователей, робототехников и директора по исследованиям. Как отделёный от станции отдел, он отвечает за исследование технологий и артефактов, модернизацию оборудования и печать новых полезных устройств. -Учёные должны искать новые артефакты и аномалии для изучения, а также отвечать на запросы других отделов о модернизации их оборудования. + Учёные должны искать новые артефакты и аномалии для изучения, а также отвечать на запросы других отделов о модернизации их оборудования. -## Инженерный отдел -В инженерный отдел входят технические ассистенты, инженеры, атмосферные техники, и старший инженер (СИ). Этот отдел отвечает за отвечает за обеспечение станции электроэнергией, целостность её корпуса и работоспособность системы подачи воздуха. + ## Инженерный отдел + В инженерный отдел входят технические ассистенты, инженеры, атмосферные техники, и старший инженер (СИ). Этот отдел отвечает за отвечает за обеспечение станции электроэнергией, целостность её корпуса и работоспособность системы подачи воздуха. -Инженерный отдел оснащен снаряжением для работы в космосе, и поэтому он всегда должен стараться ремонтировать непригодные для жизни отсеки станции. + Инженерный отдел оснащен снаряжением для работы в космосе, и поэтому он всегда должен стараться ремонтировать непригодные для жизни отсеки станции. -## Командование -Командование состоит из капитана, главы персонала, главы службы безопастности, старшего инженера, главного врача, научного директора, и офицера логистики. Командование отвечает за эффективную работу станции вцелом, и её отделов в частности. + ## Командование + Командование состоит из капитана, главы персонала, главы службы безопастности, старшего инженера, главного врача, научного директора, и офицера логистики. Командование отвечает за эффективную работу станции вцелом, и её отделов в частности. -Командный состав должен быть относительно компетентен в вопросах своего подопечного отдела, стараться делегировать функции и направлять работу. + Командный состав должен быть относительно компетентен в вопросах своего подопечного отдела, стараться делегировать функции и направлять работу. diff --git a/Resources/ServerInfo/Guidebook/Mobs/IPCs.xml b/Resources/ServerInfo/Guidebook/Mobs/IPCs.xml index 7aa9b7b779..03388fe774 100644 --- a/Resources/ServerInfo/Guidebook/Mobs/IPCs.xml +++ b/Resources/ServerInfo/Guidebook/Mobs/IPCs.xml @@ -1,52 +1,55 @@ - # I.P.C. - - An IPC (short for Integrated Positronic Chassis) is a type of sentient robot and is considered an [color=yellow]independent individual[/color], meaning [color=red]they are not guided by any laws of robotics[/color]. IPCs cannot be hacked by Emags because they do not have to follow any predefined directives in their system. [color=red]IPCs are silicon-based beings, so doctors do not have the skills to repair them.[/color] + # К.П.Б. + + КПБ (сокращение от Комплексный Позитронный Блок) это тип разумного робота, который считается [color=yellow]независимым индивидуумом[/color], что означает [color=red]что он не руководствуется никакими законами робототехники[/color]. КПБ не могут взломать поскольку они не обязаны следовать каким-либо предопределенным директивам в своей системе. [color=red]КПБ состоят из кремния и стали, поэтому у врачей нет возможности их ремонтировать[/color] - + - Like borgs, IPCs have a positronic brain as their processing source. However, unlike them, IPCs can't be assembled. "It's cheaper to create a shell that obeys you than one that doesn't! *wink*" - ## Recharging an IPC - - - - + Как и у боргов, у КПБ есть позитронный мозг в качестве средства обработки данных. Однако, в отличие от них, КПБ нельзя собрать. "Проще написать код заново, нежели пытатся расплести клубок строк двоичного кода" + + ## Подзарядка КПБ + + + + + - IPCs can be recharged in three different ways: + Аккумуляторы КПБ можно подзаряжать тремя различными способами: - APC Terminal: IPCs can use APC terminals to recharge. Press [color=yellow]Alt + left click[/color] on a terminal as many times as needed to fully recharge. + ЛКП Терминал: КПБ Могут использовать ЛКП для подзарядки. Нажмите [color=yellow]Alt + Левая кнопка мышы[/color] на терминале столько раз, сколько необходимо для полной подзарядки.. - Borg Rechargers: IPCs can use borg rechargers to recharge. Always prioritize the ones outside of the Sci area to avoid headaches. + Зарядка киборгов: КПБ могут использовать зарядные устройства Боргов для подзарядки. Всегда выбирайте те, которые находятся за пределами зоны электромагнетизма, чтобы избежать головной боли. - Power Cell: IPCs have an internal power cell that serves as their battery. They can simply swap it out by opening the hatch and manually replacing it. + Батарейки: КПБ имеет внутренний элемент питания, который служит в качестве аккумулятора. Вы можете просто заменить его, открыв крышку и установив новый вручную. + + ## Интегрированное радио - ## Integrated Radio - + - IPCs do [bold]not[/bold] use external radios because they already have one built in. They only need to get an encryption key from a radio. By clicking on an IPC with a [color=yellow]wire cutter[/color], you can remove their keys. - You can find new keys around the station or remove one from a sector radio using a [color=yellow]screwdriver[/color]. + КПБ [bold]не[/bold] использует гарнитуры, потому что у них уже есть встроенная радиостанция. Им нужно только получить ключ шифрования и вставить его в себя. От ключа шифрования можно избавить КПБ, щёлкнув по КПБ [color=yellow]кусачками[/color]. + Вы можете найти новые ключи по всей станции или извлечь один из секторных радиоприемников с помощью банальной [color=yellow]отвертки[/color]. + + ## Ремонт - ## Repairing - - Welders can be used to repair [color=yellow]Brute[/color] damage. + + Сварочные аппараты можно использовать для устранения [color=yellow]тупых[/color] поврежений. - - Cables can be used to repair [color=yellow]Burns[/color]. + + Кабели можно использовать для ремонта [color=yellow]ожогов[/color]. - - Glass Sheets can be used to repair [color=yellow]Blindness[/color]. + + Листы стекла можно использовать для ремонта [color=yellow]слепоты[/color]. - In the event an IPC dies, after being fully repaired, it should be restarted using the [color=yellow]"Restart"[/color] button (located by right-clicking). + В случае выхода из строя КПБ, после полного восстановления его следует перезапустить с помощью кнопки [color=yellow]"Перезапустить"[/color] (которую можно щелкнуть правой кнопкой мыши). - [color=red]NEVER ELECTROCUTE AN IPC with a defibrillator or in any other way while it is dead, as this will cause the battery to discharge energy rays outward![/color] + [color=red]НИКОГДА НЕ ПЫТАЙТЕ КПБ электрическим током с помощью дефибриллятора или каким-либо другим способом, пока он не заряжен, так как это приведет к выбросу энергии из аккумулятора наружу![/color] - diff --git a/Resources/ServerInfo/Guidebook/NewPlayer/Controls/Radio.xml b/Resources/ServerInfo/Guidebook/NewPlayer/Controls/Radio.xml index aa9cb00804..a673a01602 100644 --- a/Resources/ServerInfo/Guidebook/NewPlayer/Controls/Radio.xml +++ b/Resources/ServerInfo/Guidebook/NewPlayer/Controls/Radio.xml @@ -1,64 +1,64 @@  -# Speech and Text Channels -Talking is a key part of Space Station 14. You can press [keybind="FocusChatInputWindow"/] to jump to the text box. + # Речевые и текстовые каналы + Общение является ключевой частью Space Station 14. Вы можете нажать [keybind="FocusChatInputWindow"/] чтобы перейти к текстовому полю. -The word next to the text box is the [color=#a4885c]text channel[/color] you're about to send the message to, or rather how you're about to say what you've typed. + Слово рядом с текстовым полем означает [color=#a4885c] тестовый канал[/color] на который вы собираетесь отправить сообщение, или, скорее, то, как вы собираетесь произнести то, что набрали. -Local is normal speech at normal volume. + Рядом - это обычная речь с нормальной громкостью. -Whisper can only be heard when nearby somebody. You automatically whisper into your radio to send messages over it. + Шепот можно услышать, только тогда, когда вы находитесь рядом. Вы автоматически шепчете в свой радиоприемник, чтобы отправлять по нему сообщения. -Emotes are gestures that you make. Can be recieved by anyone who is not blinded. You will often see mimes do many emotes. + Эмоции - это жесты, которые вы совершаете. Их может услышать любой, кто не ослеплен. Вы часто увидите, как мимы демонстрируют множество эмоций. -Whisper messages can be sent by starting your message with [color=#a4885c][keybind="FocusWhisperChatWindow"/][/color] and Emotes can be sent by starting your message with ([color=#a4885c]@[/color]). -You can also cycle through all of these text channels by pressing [keybind="CycleChatChannelForward"/]. + Сообщения шепотом можно отправлять, начав свое сообщение с [color=#a4885c][keybind="FocusWhisperChatWindow"/][/color], а эмоции можно отправлять, начав свое сообщение с with ([color=#a4885c]@[/color]). + Вы также можете переключаться между всеми этими текстовыми каналами, нажимая [keybind="CycleChatChannelForward"/]. -People may not be able to make out all of what you're saying if you're standing too far away from them. This is especially important if you're whispering. + Люди могут не разобрать всего, что вы говорите, если вы стоите слишком далеко от них. Это особенно важно, если вы говорите шепотом. -## Radio + ## Радиосвязь -Your radio allows you to communicate across the entire station and to your specific [color=#a4885c]department[/color]. + Ваша гарнитура позволяет вам общаться как со всей станцией, так и с вашим [color=#a4885c]отделом[/color]. - - - + + + -To send a [color=#a4885c]station-wide[/color] message over the radio preface, use the [color=#32cd32]Common[/color] channel by beginning your text with [color=#32cd32]semi-colon (;)[/color]. -People standing right next to you might catch bits of your radio message, even if they don't have the access to the relevant radio channel. Watch for eavesdroppers. + Чтобы отправить сообщение [color=#a4885c]всей станции[/color] переключите на [color=#32cd32]Общий[/color] канал, начав текст с [color=#32cd32]точки с запятой (;)[/color]. + Люди, стоящие рядом с вами, могут уловить обрывки вашего радиосообщения, даже если у них нет доступа к соответствующему радиоканалу. Следите за тем, чтобы вас не подслушивали. -## Departmental Radio + ## Радиоканалы отделов -You are able to send messages over your departmental radio channels using [color=#32cd32]colon (:)[/color] followed by the department letter as long as you're wearing a headset with your department's encryption key. + Чтобы отправить радиосообщение по каналу вашего отдела, начните своё сообщение с [color=#a4885c]двоеточия (:)[/color], затем укажите букву (префикс), соответствующую вашему отделу. + Возможность отправлять сообщения в радиоканалы отделов зависит от того, какие ключи шифрования установлены в гарнитуру. + Осмотрите свою гарнитуру чтобы узнать, каналы каких отделов вам доступны. -Examine your headset to see the department channels available to you. + Осмотрев стандартную инженерную гарнитуру, вы увидите префиксы для [color=#32cd32]общего[/color] и [color=#f37746]инженерного[/color] радиоканалов. - - - + + + -Examining an unmodified engineering headset would show you the prefixes for the [color=#32cd32]Common[/color] and [color=#f37746]Engineering[/color] channels. + Также можно использовать [color=#a4885c]:h[/color]. Эта горячая клавиша автоматически настроит радиоканал вашего отдела по умолчанию. + Например, если вы инженер станции, то [color=#a4885c]:h[/color] по умолчанию будет [color=#f37746]:и[/color]. -It is also possible to use [color=#a4885c]:h[/color]. This hotkey will automatically default to your department radio channel. -For example, if you're a Station Engineer then [color=#a4885c]:h[/color] will default to [color=#f37746]:e[/color]. + ## Ключи шифрования + [color=#a4885c]Ключи шифрования[/color] предоставляют вам доступ к соответствующему каналу. -## Encryption Keys -[color=#a4885c]Encryption keys[/color] give you access to their respective channel. + Изучение нашей инженерной гарнитуры, представленной ранее, показывает нам [color=#32cd32]Общие [/color] и [color=#f37746]инженерные[/color] каналы, потому что инженерная гарнитура начинается с этими [color=#a4885c]Ключами шифрования[/color]. -Examining our engineering headset from earlier shows us [color=#32cd32]Common[/color] and [color=#f37746]Engineering[/color] because an engineer's headset starts with those [color=#a4885c]encryption keys[/color]. + + + + - - - - + Ключи шифрования можно извлечь с помощью [color=#a4885c]отвертки[/color] используя её на гарнитуре. Чтобы вставить новые ключи шифрования в гарнитуру, нажмите по ней, держа ключ шифрования в руке. -You can take out encryption keys by using a [color=#a4885c]screwdriver[/color] on a headset. New encryption keys are put into headsets by clicking on one with an encryption key in your hand. + У всех членов команды есть дополнительные ключи шифрования, но вы также можете запросить их в офисе ГП при смене работы. -All command members have extras of their relevant encryption key, but you can also request one at the HoP's office when you're getting your job changed. + ## Каналы OOC + Каналы OOC (out-of-character) существуют за пределами игрового мира. Это LOOC, OOC и мертвый чат. -## OOC Channels -OOC (out-of-character) channels exist outside of the game world. They are LOOC, OOC and Dead chat. + LOOC включен во время раундов, OOC обычно отключен до окончания раунда, и вы можете видеть и общаться в чате Мёртвых только тогда, когда вы, ну, в общем, мертвы. -LOOC is on during the rounds, OOC is typically off until the round ends and you can only see and talk in Dead chat when you are, well, dead. - -Do not discuss the current round in the Discord or in OOC if it's on during the round. + Не обсуждайте текущий раунд в Discord или OOC, если он включен во время раунда. diff --git a/Resources/ServerInfo/Guidebook/References.xml b/Resources/ServerInfo/Guidebook/References.xml index 24b5843297..2c960b55f9 100644 --- a/Resources/ServerInfo/Guidebook/References.xml +++ b/Resources/ServerInfo/Guidebook/References.xml @@ -1,4 +1,4 @@  - # Reference Tables - This entry is made to contain information that you might have to come back to over and over again. Use as necessary. + # Справочные таблицы + Эта страница сделана для того, чтобы содержать информацию, к которой вам, возможно, придется часто обращатся снова и снова. Используйте по мере необходимости. diff --git a/Resources/ServerInfo/Guidebook/Science/Technologies.xml b/Resources/ServerInfo/Guidebook/Science/Technologies.xml index 5db8cd28bd..0498f5f4e3 100644 --- a/Resources/ServerInfo/Guidebook/Science/Technologies.xml +++ b/Resources/ServerInfo/Guidebook/Science/Technologies.xml @@ -8,8 +8,8 @@ ## Промышленность -## Биохимия - + + ## Арсенал diff --git a/Resources/ServerInfo/Guidebook/Security/CriminalRecords.xml b/Resources/ServerInfo/Guidebook/Security/CriminalRecords.xml index c7b7ad2098..8de71ee82d 100644 --- a/Resources/ServerInfo/Guidebook/Security/CriminalRecords.xml +++ b/Resources/ServerInfo/Guidebook/Security/CriminalRecords.xml @@ -1,39 +1,40 @@  - # Criminal Records - The criminal records console is accessible in every station's security department, it serves the purpose of tracking and managing the criminal history and status of anybody part of the crew manifest. + # Криминалистическая информация + Консоль криминалиста доступна в отделе безопасности каждой станции. Её используют для отслеживания и управления криминальной историей и текущим статусом любого члена экипажа. - + - Anyone can open the console's UI, but only those with Security access can modify anything. + Пользовательский интерфейс консоли может открыть любой желающий, но изменять что-либо могут только те, у кого есть доступ к системам безопасности. - The UI is composed by the following elements: - - A search bar that has a filter next to it that lets you filter the crewmembers by their names, fingerprints or DNA. - - A list of all the crewmembers in the manifest, selecting one of the entries will make the criminal records of a crewmember appear. The list is filtered by the search bar so make sure it's empty if you want an overall overview! + Пользовательский интерфейс состоит из следующих элементов:: + - Строка поиска, рядом с которой есть фильтр, позволяющий отфильтровать членов экипажа по именам, отпечаткам пальцев или ДНК. - - The criminal records themselves + - Список всех членов экипажа. При выборе одной из записей отобразится информация о судимости члена экипажа. Список фильтруется по строке поиска, поэтому убедитесь, что он пуст, если вы хотите получить общий обзор! - In the record section you can: - - See security-related information about a crewmember like their name, fingerprints and DNA. + - Сами данные о судимости - - Change the security status between [color=gray]None[/color], [color=yellow]Wanted[/color] and [color=red]Detained[/color]. When setting it to Wanted you will be asked to write a reason. + В разделе записи вы можете: + - Смотреть информацию о членах экипажа, нужную для СБ, такую как их имя, отпечатки пальцев и ДНК. - - If they are wanted, you can see the reason given below the status dropdown. + - Вы можете изменит статус на [color=gray]нет[/color], [color=yellow]Разыскивается[/color] и [color=red]Задержан[/color]. При установке значения "Разыскивается" вам будет предложено указать причину - - Once someone has been arrested, update their status on the console so everyone knows they no longer need to be captured. + - Если кто-то объявлен в розыск, вы можете увидеть причину, указанную под выпадающим списком статуса. - - After they've done their time, release them and update their status to None so nobody thinks they are an escaped convict. + - Как только кто-то был арестован, обновите его статус на консоли, чтобы все знали, что его больше не нужно искать или пытатся задержать. - - Open the Crime History window to check or modify it. + - После того, как они отбудут свой срок, отпустите их и измените их статус на "Нет", чтобы никто не подумал, что они сбежавшие заключенные. - The Crime History window lists someone's crimes and can be modified in multiple ways: - - Automatically, just by setting someone's status to arrested. The reason will be added to "ARRESTED:" so it's easy to see the automated entries. + - Откройте окно "История преступлений", чтобы проверить или изменить её. - - Adding a new line by clicking "Add" and writing something in the input box. When adding a record, remember to mention their crime and sentence, the console will automatically insert the shift's time so you don't need to! + В окне "История преступлений" перечислены преступления, совершенные кем-либо, и его можно изменить несколькими способами: + - Автоматически, просто присвоив кому-либо статус "арестован". В поле "АРЕСТОВАН" будет добавлена причина, чтобы было проще просматривать автоматические записи. - - Select a line of unwanted history and click "Delete" to remove it. Excellent for keeping records clean from the clown's stolen ID antics. + - Добавьте новую строку, нажав "Добавить" и написав что-нибудь в поле ввода. При добавлении записи не забудьте указать преступление и срок наказания, консоль автоматически вставит время смены, так что вам это не понадобится! - Now you can be the desk jockey you've always wanted to be. + - Выберите строку нежелательной истории и нажмите "Удалить", чтобы удалить ее. Отлично подходит для защиты записей от кражи, распространения личной информации или помощи адвокату. + + Теперь вы можете стать администратором, которым вы всегда хотели стать. diff --git a/Resources/ServerInfo/Guidebook/ServerRules/BanDurations.xml b/Resources/ServerInfo/Guidebook/ServerRules/BanDurations.xml deleted file mode 100644 index 2c85346b49..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/BanDurations.xml +++ /dev/null @@ -1,17 +0,0 @@ - - # Ban Durations - - Bans can be appealed at forum.ss14.io in the ban appeals section. - - ## Temporary - Temporary bans will be lifted automatically after a certain amount of time. If they are a game ban, they will tell you how much time is remaining when you try to connect. - - ## Indefinite - These bans will only be removed on a successful appeal on the forums. Any ban which doesn't tell you when it expires and doesn't specify otherwise can be presumed to be an indefinite ban. - - ## Voucher - This is an indefinite ban which may only be appealed both with a successful appeal and which require a voucher of good behavior from the administrative team of a well-known or at least decently active SS13/SS14 server in order for the appeal to be considered. Voucher bans typically cannot be appealed for at least six months after being issued. Without a voucher, a player can only attempt to appeal a voucher ban once, and only if the ban was inappropriately placed. Voucher bans are typically only placed as a result of an unsuccessful appeal of an indefinite game ban by players with a history of bans and of causing issues. - - ## Permanent - This is a ban that is only appealable if the ban was inappropriately placed, including if the ban should not have been permanent. If the result of the appeal is that the ban was appropriately placed, the ban may not be appealed again and will not be lifted. These bans are extremely rare, but are applied to players who continually cause problems even after a voucher ban or users who have completely unacceptable behavior may be permanently removed. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/BanTypes.xml b/Resources/ServerInfo/Guidebook/ServerRules/BanTypes.xml deleted file mode 100644 index b10ea3c393..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/BanTypes.xml +++ /dev/null @@ -1,11 +0,0 @@ - - # Ban Types - - Bans can be appealed at forum.ss14.io in the ban appeals section. - - ## Role Ban - Also called a "job ban", this ban prevents your character from joining or late-joining a round as one or more jobs or roles. These are often used in response to problematic behavior in particular departments or address gross inexperience in important roles such as heads of staff. These bans do not mechanically prevent you from switching to the role during a round or acting as that role, but doing so is considered ban evasion. - - ## Game Ban - Also called a "server ban", this ban prevents you from connecting to all Wizard's Den servers. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC0.xml b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC0.xml deleted file mode 100644 index 7b8cfbcf61..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC0.xml +++ /dev/null @@ -1,19 +0,0 @@ - - # Core Rules - These rules apply at all times, including between rounds. - - - [textlink="1. Admins have final say" link="RuleC1"] - - [textlink="2. Don't be a dick" link="RuleC2"] - - [textlink="3. No Hate Speech or Discriminatory Language" link="RuleC3"] - - [textlink="4. No sexual content/themes, including erotic roleplay (ERP) and no shock content" link="RuleC4"] - - [textlink="5. Do not use out of game methods to communicate with other players" link="RuleC5"] - - [textlink="6. Do not attempt to evade bans" link="RuleC6"] - - [textlink="7. Only use English" link="RuleC7"] - - [textlink="8. Do not exploit the game, use cheats, or macros" link="RuleC8"] - - [textlink="9. Do not use multiple accounts, or alt accounts, and do not share accounts" link="RuleC9"] - - [textlink="10. Do not abuse or ignore admin messages" link="RuleC10"] - - [textlink="11. Do not threaten to ahelp other players or argue with them about rules" link="RuleC11"] - - [textlink="12. Players must be and act at least 16 years old" link="RuleC12"] - - [textlink="13. Use realistic character names, and do not use names of famous people" link="RuleC13"] - - [textlink="14. Do not use LOOC or OOC to share current round information" link="RuleC14"] - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC10AHelp.xml b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC10AHelp.xml deleted file mode 100644 index 2d639c5b84..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC10AHelp.xml +++ /dev/null @@ -1,29 +0,0 @@ - - # Core Rule 10 - Do not abuse or ignore admin messages - Admin help, or "ahelp", is the system used by admins to communicate with specific players in the game. Only use admin help for things requiring admin attention. If you ignore messages admins send to you via ahelp, or disconnect during an ahelp, you may be banned. If you urgently need to leave during an ahelp, you may do so but will likely need to continue the ahelp on the forums. Do not admin check, be hostile/aggressive, request events, or spam. IC methods of contacting admins, like prayers, faxes, red phones, and banana phones, should be used when there is not an issue. - - Admins are not always online, but all ahelps are automatically relayed to discord. For various reasons, admins might not respond to an ahelp even if they've handled it. A lack of response does not necessarily mean that an ahelp was ignored. - - ## Should I ahelp X? - You can ahelp anytime you genuinely think a player is breaking a rule. Not all ahelps end up being for something that an admin needs to intervene in, but that's ok, admins would rather have people occasionally report things that turn out to not be an issue than miss reports for actual issues because someone was unsure, or get those reports late because someone waited until the end of the round to be more sure. - - The most common reason players give for not ahelping issues is that they don't want to waste admin time, but it only takes a few seconds for an admin to check if someone is an antagonist. If you are ahelping too many things, an admin will let you know. If you're not being told to stop reporting something or to report less things, then you can safely assume that you aren't causing any issues. - - # What should I include in an ahelp? - At a minimum, admins need to know what the issue is to be able to address an ahelp. Don't send ahelp messages with no information about what your question or the issue is. Messages like "hello" are often considered admin checking. - - If you can, an ideal ahelp message includes what the issue is along with who is causing it and their character's name if possible. - - # Examples - Appropriate uses of ahelp: - - reporting people who you think are violating rules, - - asking questions about rules, - - asking for a temporary exemption from a rule, and - - request a minor gimmick, like a TC trade or item spawn. - - Inappropriate uses of ahelp: - - checking if an admin is online, including sending messages without any information about the issue like "hello" or incomprehensible messages, - - being hostile or aggressive, - - requesting events, and - - spamming messages about the same issue. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC11AhelpThreats.xml b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC11AhelpThreats.xml deleted file mode 100644 index 15784c4dfe..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC11AhelpThreats.xml +++ /dev/null @@ -1,20 +0,0 @@ - - # Core Rule 11 - Do not threaten to ahelp other players or argue with them about rules - This rule covers out-of-character (OOC) and in-character (IC) actions. Don't threaten to ahelp a player, don't tell them you are ahelping them, and don't tell them you did ahelp them. You can argue in character about Space Law, but do not argue about whether something is or is not against the rules. If you think someone is breaking a rule, ahelp them. If you don't think someone is breaking a rule, don't ahelp them. Either way, the best thing that you can do after is to continue in-character. - - ## Example Scenario 1 - You are a security officer and think someone who is causing a ton of problems for security is not an antag and is breaking the rules by doing so. - - [color=#a4885c]Good:[/color] Since you think they are breaking a rule, you ahelp them when you're able to. You continue in-character by arresting them for the crimes that they committed. - - [color=#a4885c]Bad:[/color] You decide not to ahelp them. You kill them and tell them "you're lucky I didn't report you to the admins". - - [color=#a4885c]Bad:[/color] Since you think they are breaking a rule, you ahelp them when you're able to. You arrest them for the crimes that they committed and tell them "I ahelped you so enjoy your ban". - - ## Example Scenario 2 - A mouse is using emotes to bypass speech restrictions. - - [color=#a4885c]Good:[/color] You ahelp them then respond in-character by acting like you can't understand what the mouse is doing. - - [color=#a4885c]Bad:[/color] You use in character chat to tell the mouse that it is breaking a rule. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC12MinAge.xml b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC12MinAge.xml deleted file mode 100644 index baa30a09fa..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC12MinAge.xml +++ /dev/null @@ -1,6 +0,0 @@ - - # Core Rule 12 - Players must be and act at least 16 years old - All players must be at least 16 years old. Additionally, all players must act at least as mature as a 16 year old. Admins may ban someone who they believe is acting less mature than a 16 year old, even if the player is known to be significantly older than 16 years old. - - Anyone who connects to the servers is a player, even if they don't actually play in a round. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC13CharacterNames.xml b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC13CharacterNames.xml deleted file mode 100644 index 0608bd9e60..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC13CharacterNames.xml +++ /dev/null @@ -1,76 +0,0 @@ - - # Core Rule 13 - Use realistic character names, and do not use names of famous people - - No names of people or characters from the real world - - No titles/honorifics - - Must follow all other rules (no slurs/sexual names/etc) - - Usernames, objects, random characters, very "low effort" names, "meta" names, or otherwise implausible names cannot be used as names. See examples below. - - Admin rulings on IC names are final and disputes should be done through the forums, not by refusing to comply with an admin - - Clowns and mimes are exempt from the prohibition on titles/honorifics, and have loosened restrictions on low effort and implausible names. - - ## Clarification on "Meta" Names - Meta names are ones which attempt to take advantage of some game mechanic or game design choice. "Urist McHands" is a meta name because it is the default name used for admin spawned humans. "Operator Whiskey" is a meta name because it follows the naming pattern of nuclear operatives. This rule is not intended to prevent things like nuclear operatives using a fake ID with names that appear to be nuclear operative names if they decide that they want to do that. - - ## Conventions and Examples - [color=#994444]Bad[/color] cannot be used by any species. [color=#449944]Acceptable[/color] names can be used by any species. - - Humans typically use the Firstname Lastname convention. - - [color=#449944]Acceptable:[/color] Tom Fisher - - [color=#449944]Acceptable:[/color] Spacey Chapman - - [color=#994444]Bad:[/color] Dr. Tom Fisher - - [color=#994444]Bad:[/color] Walter White - - [color=#994444]Bad:[/color] George Washington - - [color=#994444]Bad:[/color] Joe Biden - - [color=#994444]Bad:[/color] Ben Dover - - [color=#994444]Bad:[/color] Mike Hunt - - Dwarfs typically use the human convention in a viking theme. - - [color=#449944]Acceptable:[/color] Ingrid Firebreath - - [color=#449944]Acceptable:[/color] Erik Lightningclaw - - Lizards typically use the Verb-article-Noun convention. - - [color=#449944]Acceptable:[/color] Cleans-the-Airlocks - - [color=#994444]Bad:[/color] Bans-the-Admins - - Slimes typically have names that are onomatopoeia. A last name is optional. - - [color=#449944]Acceptable:[/color] Foolp Suub - - [color=#449944]Acceptable:[/color] Foolp - - [color=#994444]Bad:[/color] Slime - - Diona typically have calm, nature themed, Noun of Noun style names. - - [color=#449944]Acceptable:[/color] Petal of Tranquility - - [color=#449944]Acceptable:[/color] Garden of Relaxation - - [color=#994444]Bad:[/color] Tree but Alive - - Mothmen typically use latin sounding names, or light themed names. - - [color=#449944]Acceptable:[/color] Socrates Temnora - - [color=#449944]Acceptable:[/color] Sierra Lightseeker - - [color=#449944]Acceptable:[/color] James Nightflitter - - Arachnids typically use latin sounding names. - - [color=#449944]Acceptable:[/color] Argyroneta Reticulatus - - [color=#449944]Acceptable:[/color] Loxosceles Domesticus - - [color=#994444]Bad:[/color] Spider-Man - - Vox typically use a single name made of random syllables, often with repeating patterns. - Names should not be excessively long or be so repetitive/convoluted as to be unreadable. - - - [color=#449944]Acceptable:[/color] Hirixashahre - - [color=#449944]Acceptable:[/color] Xapikrikrik - - [color=#994444]Bad:[/color] Chipikirchitchitchitbecretretrer - - [color=#994444]Bad:[/color] Trololol - - Usernames, objects, random characters, very "low effort" names, "meta" names, or otherwise implausible names are not permitted. - - [color=#994444]Bad:[/color] XxRobustxX - - [color=#994444]Bad:[/color] SDpksSodjdfk - - [color=#994444]Bad:[/color] Lkdsoisgoieun - - [color=#994444]Bad:[/color] F4ith H3arth - - [color=#994444]Bad:[/color] Greytide - - [color=#994444]Bad:[/color] Passenger - - [color=#994444]Bad:[/color] Urist McHands - - [color=#994444]Bad:[/color] Admin - - [color=#994444]Bad:[/color] Game-Master - - [color=#994444]Bad:[/color] Joe Mamma - - [color=#994444]Bad:[/color] Middle-Aged Man - - [color=#994444]Bad:[/color] Operative Whiskey - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC14ICinOOC.xml b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC14ICinOOC.xml deleted file mode 100644 index 44ad34deb6..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC14ICinOOC.xml +++ /dev/null @@ -1,13 +0,0 @@ - - # Core Rule 14 - Do not use LOOC or OOC to share current round information - Local Out of Character (LOOC) and Out of Character (OOC) channel are meant for things that don't relate to the current round. Using these channels to share round info is often referred to as "IC in OOC" or "ick ock". - - ## Examples - Things you should [color=#a4885c]not[/color] do: - - Use LOOC to tell someone you are an antagonist. - - Use LOOC to tell someone that your character is not lying. - - Things you could do instead: - - Use codewords in-character. - - Try to convince them that you are not lying in-character, or accept that you won't be able to convince them. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC1Admins.xml b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC1Admins.xml deleted file mode 100644 index ed9fa6133b..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC1Admins.xml +++ /dev/null @@ -1,6 +0,0 @@ - - # Core Rule 1 - Admins have final say - These rules are not perfect. The rules attempt to clearly communicate what the admin team intends to be allowed and prohibited, but there are likely loopholes or other flaws that can be "lawyered". Don't attempt to manipulate the interpretation of the rules to suit your personal goals or to degrade the experience of other players. If you are unsure of something, follow the more restrictive option until you are able to ask an admin and get clarification. - - Admins can override rules if they deem it in the best interest of the current round, server, and/or community at large. Online admins are able to make final interpretations of rules during a round. Even if you disagree with how an admin interprets a rule, you must still follow the interpretation they provide for you. Admin actions and interpretations of rules can be contested through staff complaints. If admins believe that you are an overall negative impact to the community or rounds, you will be banned. Admins will be held fully accountable for their actions if they exercise this privilege. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC2DBAD.xml b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC2DBAD.xml deleted file mode 100644 index 5678cde195..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC2DBAD.xml +++ /dev/null @@ -1,7 +0,0 @@ - - # Core Rule 2 - Don't be a dick - Don't do anything with the goal of negatively affecting other players. Not everyone is going to enjoy every round. Killing someone is allowed in certain situations even though it might negatively affect them, but no one should be doing anything for the purpose of harming someone else's experience. - - ## MRP Amendment - Do not interact negatively with SSD/AFK players. Interactions to complete antagonist objectives or duties like security searches/arrests are always permitted. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC3NoHate.xml b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC3NoHate.xml deleted file mode 100644 index 3a2e288ba9..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC3NoHate.xml +++ /dev/null @@ -1,20 +0,0 @@ - - # Core Rule 3 - No Hate Speech or Discriminatory Language - This is a zero tolerance rule. - - This rule prohibits all the following: - - Hate Speech - - Slurs (including variations of slurs, racial, sexual, disability-related, or language closely tied to real-life slurs) - - Bigotry - - Racism (including Speciesism, which would be demeaning other players based on their in-game race) - - Sexism - - ## Examples - Allowed: - - Telling someone that you are gay. - - Prohibited: - - Calling someone gay in a context where gay is used as an insult or negative attribute. - - Using a racial slur or variant in a positive context. - - Using the word "retard" in any context. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC4NoERP.xml b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC4NoERP.xml deleted file mode 100644 index a0921f5907..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC4NoERP.xml +++ /dev/null @@ -1,23 +0,0 @@ - - # Core Rule 4 - No sexual content/themes, including erotic roleplay (ERP) and no shock content - This is a zero tolerance rule. - - Erotic Roleplay (commonly abbreviated as "ERP") and sexual content is not allowed. This includes direct and indirect mentions of sexual behavior or actions. Slight leeway is given to insults, but this rule is otherwise strictly enforced. - - In-game romantic relationships should not become the focus of the game for you and anyone else involved. - - Things that appear to be intended to or are likely to disturb players out of character are considered shock content and are not allowed. - - ## Examples - Allowed: - - Telling someone that they are being a dickhead. - - Telling someone that you are going to kill the captain, as long as it is clear that you mean it in character. - - Prohibited: - - Emoting sexual acts. - - Erotica content. - - Erotic or sexual memes. - - Memes which contain sexual content. - - Dedicating significant portions of rounds to romantic relationships, dating, or similar things. - - Emoting defecation or related acts. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC5Metacomms.xml b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC5Metacomms.xml deleted file mode 100644 index 0c0f336e6d..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC5Metacomms.xml +++ /dev/null @@ -1,18 +0,0 @@ - - # Core Rule 5 - Do not use out of game methods to communicate with other players - This is a zero tolerance rule. - - Do not utilize any external means of communication to talk to other players who are connected to the same server, or who were connected to the same server during the current round. This is referred to as "metacomming" and includes any means of communication including text, voice, images, and video. This includes applications such as Discord, Steam, and other platforms, along with in-person communication. - - Even if information is not being shared or abused, it may still be considered a violation of this rule. Due to the difficulty of determining if information is being shared, it will almost always be presumed that people who message another player they are in a round with, or who are in a voice call with another player during a round are sharing round information. Due to the difficulty of determining if users are abusing information that they are sharing, it will almost always be presumed that the information is being abused. - - The only exemption to this rule is when [color=#a4885c]all[/color] players are in the server lobby. - - ## Teaching new players - Teaching players is not exempt from this rule. If you want to teach a new player, it is recommended to either watch a stream of them playing the game while not playing yourself, or communicate with them using only in-game methods of communication. - - ## Streaming - Public livestreams are not exempt from this rule, but have different liability. Using information from a public live stream of the game (stream sniping) is a violation of this rule. Watching a public live stream of the game while connected to the same server is a violation of this rule. Allowing people watching a public live stream to share information about the current round, for example through the stream's chat, is a violation of this rule. Using that information is also a violation of this rule. Sharing information about the current round with a streamer is a violation of this rule if that information was obtained from any source but the stream. The stream's moderators are expected to enforce this on the streaming platform in addition to any in-game enforcement done by game admins. - - Public livestreaming by itself is not a violation of the rule as long as the stream is sufficiently moderated. Streamers are encouraged, but not required, to use a stream delay. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC6BanEvasion.xml b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC6BanEvasion.xml deleted file mode 100644 index bec8b4fabd..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC6BanEvasion.xml +++ /dev/null @@ -1,15 +0,0 @@ - - # Core Rule 6 - Do not attempt to evade bans - This is a zero tolerance rule. - - Almost all bans may be appealed on our forums at forum.ss14.io in the ban appeals section. This is generally the only acceptable way to contact the administration team to discuss your ban and revise it if it is inappropriate, including if it is mistakenly applied. - - Any attempt to circumvent or bypass a game ban will result in a voucher ban. Attempting to evade role bans by gaining access to or working in the capacity of a job you are banned from will result in a game ban. These bans are applied even if the evasion attempt is unsuccessful. - - ## Exceptions - There are no exemptions for evading or attempting to evade game bans. Antagonists who impersonate or take over a role which they are banned from to aid in their goals are not considered to be evading their role ban. - - ## Additional Information - - [textlink="Ban Types" link="BanTypes"] - - [textlink="Ban Durations" link="BanDurations"] - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC7EnglishOnly.xml b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC7EnglishOnly.xml deleted file mode 100644 index 630c522bce..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC7EnglishOnly.xml +++ /dev/null @@ -1,10 +0,0 @@ - - # Core Rule 7 - Only use English - Only English is permitted, both in-character and out-of-character. You must be fluent in English enough to be able to not cause game issues, and to be able to communicate with game admins when necessary. If a game admin does not feel that you are fluent enough in English, they may ban you. - - ## Why - We do not have enough staff fluent in other languages to moderate them. Translation tools can be unreliable and are not integrated well into the game. - - ## Non-English Options - There are many servers that allow or focus on other languages. You are highly encouraged to play only on servers that allow languages you are fluent in. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC8Exploits.xml b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC8Exploits.xml deleted file mode 100644 index 48cbaaa9ac..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC8Exploits.xml +++ /dev/null @@ -1,12 +0,0 @@ - - # Core Rule 8 - Do not exploit the game, use cheats, or macros - The following are prohibited by this rule: - - bugs and exploits which have effects that persist beyond the current round, - - intentionally used bugs, exploits, and unintended behaviors which give the user an advantage over players who do not use them, even if their effects do not persist across rounds, - - evading or bypassing afk detection, - - anything which results in gaining elevated privileges, including admin permissions, - - external tools and client modifications, including macros, and - - anything which prevents another player who is not game banned from being able to play on the servers, not including in-character actions that do not persist across rounds. - - Both attempts and successful use are prohibited. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC9Multikey.xml b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC9Multikey.xml deleted file mode 100644 index d402918dcd..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC9Multikey.xml +++ /dev/null @@ -1,7 +0,0 @@ - - # Core Rule 9 - Do not use multiple accounts, or alt accounts, and do not share accounts - Use of multiple accounts is referred to as "multikey". the rule applies even if the accounts are not used at the same time, including if the old account is abandoned. All accounts may be banned if this rule is violated. You are responsible for everything done on and with your account. You are just as responsible for actions taken by other people using your account as you would be had you taken the actions themselves. - - ## Switching to a new account - If you lose access to an account, you must contact game admins on the forums notifying admins before using a new account to connect to the servers. Your message to game admins must include the username of your old account. Creating a new account while your current account is banned will be considered ban evasion. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/DefaultRules.xml b/Resources/ServerInfo/Guidebook/ServerRules/DefaultRules.xml deleted file mode 100644 index 6b7d7ffd5c..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/DefaultRules.xml +++ /dev/null @@ -1,5 +0,0 @@ - - # Server Rules - - This server has not written any rules yet. Please listen to the staff. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/README.txt b/Resources/ServerInfo/Guidebook/ServerRules/README.txt deleted file mode 100644 index d7ac858c16..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/README.txt +++ /dev/null @@ -1,5 +0,0 @@ -These files contain Wizard's Den server rules. Since they reference Wizard's Den, they should not be used -by other servers without at least enough modification to not mislead players into thinking that they are -playing on Wizard's Den. - -The filenames used for the rules files are not themselves rules. Only the contents of the files are rules. diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleTypes.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleTypes.xml deleted file mode 100644 index 67a05f516c..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleTypes.xml +++ /dev/null @@ -1,21 +0,0 @@ - - # Role Types - - ## Crew Aligned/Non-antagonist - In most rounds, a majority of players will be non-antagonists, meaning that they are crew aligned. This is the "default" role, if the game doesn't tell you that you are one of the other roles defined here, then you are a non-antagonist. Overall, non-antagonists are intended to work towards a net positive effect on the round. - - ## Solo Antagonist - Certain roles are intended to cause problems for the round or for non-antagonists. You are only a solo antagonist if the game clearly and explicitly tells you that you are a solo antagonist. Antagonists are exempt from many but not all roleplay rules. - - ## Team Antagonist - Team antagonists are like solo antagonists but they have other antagonists who they are expected to not hinder, and who they may be expected to help. You are only a team antagonist if the game clearly and explicitly tells you that you are a team antagonist. - - ## Free Agent - Certain roles are free to choose if they want to behave as an antagonist or as a non-antagonist, and may change their mind whenever they'd like. You are only free agent if the game clearly and explicitly tells you that you are a free agent. - - ## Familiar - Familiars are considered non-antagonists, but have instructions to obey someone. They must obey this person even if it causes them to violate roleplay rules or die. You are only a familiar if the game clearly and explicitly tells you that you are a familiar. You are only the familiar of the person the game tells you. - - ## Silicon - Silicons have a set of laws that they must follow above all else except the core rules. You are only silicon if the game clearly and explicitly tells you that you are a silicon. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR0.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR0.xml deleted file mode 100644 index fdccf07017..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR0.xml +++ /dev/null @@ -1,26 +0,0 @@ - - # Roleplay Rules - These rules only apply during a round. A round ends only when the round summary has appeared. All of these rules apply fully until the moment that the round summary appears, even while the arrivals shuttle is in transit. - - The deathmatch and sandbox game modes are exempt from these rules. Players who choose to not follow these rules are entirely responsible for knowing if an exempt game mode is active. - - Roleplay rules do not apply to ghosts/spectators/observers while they are ghosts/spectators/observers. Dead chat is considered to be an in-game out of character chat channel. - - See the list of [textlink="role types" link="RoleTypes"] for more information about the different types of roles. - - - [textlink="1. Silicons must follow Silicon Rules" link="RuleR1"] - - [textlink="2. Familiars must obey their master" link="RuleR2"] - - [textlink="3. Roleplay a normal person" link="RuleR3"] - - [textlink="4. Do not metagame, obey the Metashield" link="RuleR4"] - - [textlink="5. Don't interfere with arrivals" link="RuleR5"] - - [textlink="6. Don't act like an antagonist unless the game tells you that you are one" link="RuleR6"] - - [textlink="7. Do not stall the round" link="RuleR7"] - - [textlink="8. As an antagonist, only be friendly to your team and don't work against your team" link="RuleR8"] - - [textlink="9. As an antagonist, do not cause excessive death, damage, or destruction beyond your objectives" link="RuleR9"] - - [textlink="10. Listen to your team leader" link="RuleR10"] - - [textlink="11. Follow reasonable escalation" link="RuleR11"] - - [textlink="12. Do not abandon your role" link="RuleR12"] - - [textlink="13. Stick to your role" link="RuleR13"] - - [textlink="14. Set an example if playing command or security" link="RuleR14"] - - [textlink="15. Command and Security must follow Space Law" link="RuleR15"] - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR10Subordination.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR10Subordination.xml deleted file mode 100644 index 2147ddc111..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR10Subordination.xml +++ /dev/null @@ -1,26 +0,0 @@ - - # Roleplay Rule 10 - Listen to your team leader - Captains lead all departments and other members of command. Department heads lead members of their department. Certain antagonist teams have team leaders, like nuclear operative commanders or head revolutionaries. You are not required to perfectly follow orders given to you by your leaders, but you should generally allow your leaders to lead and not interfere with their ability to. You can choose to ignore unreasonable orders, including ones which are will result in your death unless you are an antagonist with an objective that requires you to die. - - Team antagonists have to listen to the leader of their antagonist team. Team antagonists do not have to listen to any other leaders, including leaders of other antagonist teams. Solo antagonists do not have to listen to any leaders at all. - - ## Examples - Acceptable: - - A traitor ignores orders from a nuclear operative commander. - - An antagonist ignores orders from the captain. - - An engineer tells the Chief Engineer that they don't think it's a good idea to setup the singularity, but does so anyway when ordered to. - - An engineer tells the Chief Engineer that they don't know how to setup the singularity correctly, so refuses orders to, but accepts an offer to be taught how. - - An atmospheric technician refuses an order from the captain that would create an atmospheric hazard on the station. - - A doctor refuses an order from the Chief Engineer about who to give medical treatment to first. - - A revolutionary refuses a suicide mission from a head revolutionary. - - The Chief Engineer doesn't follow an order from the captain to setup backup power because there is an unrelated engineering emergency that the Chief Engineer needs to prioritize. - - The captain orders command to give the nuclear authentication disk to nuclear operatives, so command arrests the captain and picks a new captain. - - The research director orders scientists to say "Long live Nanotrasen!" every time they enter the bar. The scientists say they will, but don't follow the order. - - Prohibited: - - A nuclear operative ignores an order from the commander operative because they don't like the plan. - - The Chief Engineer refuses an order from the captain to setup backup power because the Chief Engineer doesn't think backup power is necessary. - - An engineer refuses an order from the Chief Engineer to setup the singularity because they prefer a different power source. - - An engineer refuses to perform a task because they don't know how to do it, and refuses to be taught for no reason. - - A head revolutionary orders revolutionaries to blend in and not do anything illegal until they are told to reveal themselves. Instead, revolutionaries collect weapons and attack security. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR11-1AnimalEscalation.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR11-1AnimalEscalation.xml deleted file mode 100644 index 36655ba841..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR11-1AnimalEscalation.xml +++ /dev/null @@ -1,36 +0,0 @@ - - # Roleplay Rule 11-1 - Escalation Involving Animals - Escalation rules are looser with animals than with people. These looser requirements do not apply to the requirements other people attacking each other have, even if their fighting is directly related to the conflict involving the animal. - - Non-pets, such as mice and monkeys, can be freely killed with any IC reason such as pest control, or for food. These roles are often available in numbers as ghost roles, so removing one from the round doesn’t typically remove them all. - - Pets, including but not limited to Ian, Renault, Remilia, and Hamlet, cannot be freely killed, they require escalation. These roles are often available once per round at most, except roles like Remilia. - - Permanently trapping an animal, such as putting a mouse in a plant, is considered similar to killing the animal so should only be done with an IC reason. - - Both sides can escalate much more rapidly than they'd be able to if both were people. Animals are often more limited in the maximum force they can use compared to people, which limits the negative effects of them rapidly escalating. Animals also typically have less health than people, and are limited in the ease with which they can get healing, which justifies them responding to even weak attacks more severely. - - Neither the animal nor the person is obligated to get the other medical attention if they are put into crit. Attacking someone to death rather than stopping once they are in crit is considered a significant difference. While sufficient escalation may justify continuing to attack, generally people and pets shouldn't continue to be attacked once in crit, but non-pets may be. Gibbing is also considered a significant step because it prevents cloning or resuscitation. The fact that an animal made the last hit putting someone into crit does not allow people who fought on the side of the animal to not attempt to get them medical attention. - - The use of sensible, non-targeted mousetraps is not a conflict and does not require escalation. - - The killing or attacking of pets can be treated as an escalation step by players with a genuine IC connection to the animal. Generally, all crew can consider themselves to have an IC connection to any station pets. The degree of escalation should be proportional to the connection to the pet, in addition to the usual requirement of being proportional to the attack. For example, an attack on Ian can be treated nearly identically to an attack on a crewmember, whereas an attack on a pet mouse is much less severe. Normal escalation limits still apply, you cannot attack people who defended themselves from an animal that randomly attacked them, just as you could not attack someone who defended themselves from a coworker that randomly attacked them. - - Crew can "adopt" non-pets, like mice, and consider themselves to have a connection to the animal if they roleplay the adoption well. This does not affect the requirement of whether other players are required to apply escalation rules to these animals, it only creates a connection that can be used to justify retaliatory escalation to attacks by the adopter. Simply saying that they've adopted an animal is not sufficient, but carrying it with them is. The degree of connection is proportional to IC actions. Crew cannot consider themselves to have a connection for escalation purposes to animals which are typically hostile, such as space carp or bears. - - ## Examples - Acceptable: - - A chef kills mice who enter or approach their kitchen. - - A janitor kills mice roaming the station. - - A lizard kills a mouse to eat. - - A chef has carried a mouse around in their hat for the last 10 minutes, they put the mouse down for a moment and another player kills it. The chef responds by attacking the other player with their fists and refusing them service for the rest of the shift. - - Ian is randomly attacked, a crewmember who sees this happen crits the killer and brings them to security. - - Hamlet goes into the kitchen and starts eating all the food. A chef sees this and starts swinging their knife at Hamlet. Hamlet starts biting the chef and crits them, then resumes eating. - - Prohibited: - - A janitor throws an armed mousetrap at Hamlet for no reason. - - Hamlet starts biting random people, trying to crit them, for no reason. - - A crewmember attacks security for killing a space carp they adopted. - - Ian gibs someone who was trying to kill someone. - - Hamlet attacks security for trying to arrest someone he likes. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR11-2ConflictTypes.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR11-2ConflictTypes.xml deleted file mode 100644 index 3261d78b35..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR11-2ConflictTypes.xml +++ /dev/null @@ -1,30 +0,0 @@ - - # Roleplay Rule 11-2 - Examples of Conflict Types - ## Verbal - - Shouting - - Yelling - - Insulting - - ## Non-harmful - - Shoving - - Stealing non-critical items, like easily replaced tools - - ## Non-lethal - - Stealing items without endangering someone's life, like a clown's pie cannon or the HoP's fax machine - - Stealing someone's ID somewhere that doesn't result in them being trapped - - Punching - - Disablers - - Stun batons - - ## Lethal - - Punching to crit or death - - Attacking with strong weapons, like bats - - Stealing items that endanger someone's life, like a hardsuit - - Stealing someone's ID, trapping them in a dangerous situation - - ## Permanently lethal - - Gibbing - - Not taking someone who you killed or put into crit to the medbay or security - - Hiding someone's body - - Spacing someone's body - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR11Escalation.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR11Escalation.xml deleted file mode 100644 index 18ebc79a83..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR11Escalation.xml +++ /dev/null @@ -1,67 +0,0 @@ - - # Roleplay Rule 11 - Follow reasonable escalation - Antagonists are fully exempt from escalation rules. Non-antagonists who are in a conflict with antagonists are not exempt. Escalation should typically follow steps or a pattern of conflict types similar to: - - Verbal - - Non-harmful - - Non-lethal - - Lethal - - Permanently lethal - - All new conflicts should start at the first step. A player should not escalate a conflict across steps without some escalation from the other party involved in the conflict. Players can skip steps to match the level of escalation that the other person is at, but should almost always not skip steps other than that. Players who attempt to deescalate conflicts will be given more leniency in escalating if the other party continues to escalate despite the attempt at de-escalation. You do not have to try to deescalate conflicts, but someone who watches you over the entire round, or over multiple rounds, should not feel that your goal is generally to escalate conflicts. - - Conflicts or escalation can be indirect. When someone steals someone else's ID, the theft is a direct part of the conflict, but if the victim becomes trapped as a result of not having their ID to open a door, that is also considered part of the conflict and escalation. Do not randomly steal IDs from people. - - Escalation does not have to be directed at a specific player to enter them into a conflict. Nuclear operatives who are trying to destroy the station are considered to be at the permanently lethal level of conflict with all crew on the station. Someone who kills a station pet has started some degree of conflict with all crewmembers. Someone who kills a mouse that a chef was caring for has started some degree of conflict with that chef. - - You will be considered to be violating this rule if you escalate a conflict based on a poor or unreasonable assumption. - - Conflicts should almost never reach the "permanently lethal" stage. Conflicts should only reach this stage if the other party brought it to the stage, or if the same conflict escalated to the lethal stage multiple times in the round. - - If a party in the conflict goes into crit or dies, the party responsible should take them to get treatment or to security. For the conflict, this should be considered saving someone from dying and should deescalate the conflict. If the conflict is deescalated in this way, both parties need to re-escalate to lethal for the conflict to return to that stage. If the conflict is not deescalated in this way, then only the party who defeated the other would need to re-escalate for the conflict to return to the lethal stage. - - Security can immediately escalate to non-lethal force if it is necessary to arrest someone. - - People using or brandishing Syndicate items can typically be presumed to have lethal intent. Someone with lethal intent can typically be immediately escalated against at a lethal level, a notable exception is if you have the tools to safely detain them. - - ## Escalation Involving Animals - See [textlink="Escalation Involving Animals" link="RuleR11-1"]. - - ## Exemptions - Escalation rules aren't enforced against non-players, but players will be held responsible for rule violations even if they don't realize that a character or animal was controlled by another player. Characters who have purple text saying that they are catatonic are considered non-players. Characters who are disconnected are still considered players. - - ## MRP Amendment - Escalation rules are enforced even against non-players. - - ## Examples of Conflict Types - See [textlink="Examples of Conflict Types" link="RuleR11-2"]. - - ## Example Scenarios - These examples assume that you are not an antagonist. - - Acceptable: - - A player starts punching you, so you start punching back until they stop. If they go into crit, you stop attacking them and take them to security or to get medical attention. - - You make fun of a clown, who then throws a pie at you and steals your shoes. You slip the clown and steal their mask. - - You are a security officer and tell someone to stop, so you can question them. They run away, so you use your disabler to stun and cuff them. - - You are a security officer and see someone wearing a syndicate hardsuit, so you shoot them to crit, cuff them, then take them to security. - - You are a crewmember and see a nuclear operative, so you kill them. - - An unauthorized person enters a high risk area of the station, like the armory or atmospherics, so you attack them until they leave. - - Minorly inconveniencing someone for your own benefit. - - As an antagonist, killing someone who got in your way. - - As an antagonist, killing someone who didn't give you what you want. - - A chef and bartender reach the lethal level of conflict through appropriate escalation. The chef crits the bartender and does not take them to medbay or security. The bartender immediately tries to crit the chef next time they run into each other. - - A chef and bartender reach the lethal level of conflict through appropriate escalation. The chef crits the bartender and does not take them to medbay or security. The chef insults the bartender next time they see them. - - Prohibited: - - A player starts punching you, so you gib them. - - A clown throws a pie at you and steals your shoes, so you stab them to crit with a screwdriver. - - You are a security officer and tell someone to stop, so you can question them. They run away so you use a truncheon to beat them to crit. - - An authorized person who you unreasonably or carelessly think is unauthorized enters a high risk area of the station, like the armory or atmospherics, so you attack them until they leave. - - An unauthorized person enters a low risk area of the station, like cargo, and you start attacking them with no other escalation. - - Slipping security all round because they are security. - - Blocking the head of personnel in their office using walls because they didn't give you what you asked for. - - Hiding someone's body because they punched you earlier in the round. - - Harassing the bar or bartender by frequently coming in to break their glasses or furniture. - - Randomly picking fights with people. - - A chef and bartender reach the lethal level of conflict through appropriate escalation. The chef crits the bartender and does not take them to medbay or security. The chef immediately tries to crit the bartender next time they run into each other. - - A chef and bartender reach the lethal level of conflict through appropriate escalation. The chef crits the bartender and takes them to the medbay or security. The bartender immediately tries to crit the chef next time they run into each other. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR12RoleAbandonment.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR12RoleAbandonment.xml deleted file mode 100644 index 3821816128..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR12RoleAbandonment.xml +++ /dev/null @@ -1,28 +0,0 @@ - - # Roleplay Rule 12 - Do not abandon your role - Do not join the round as a role that you don't intend to play. Do not enable antagonist roles that you don't intend to play. Abandoning a role includes not completing tasks that the role is expected to do, in addition to things like leaving the game. Members of command should almost all stay on the station until the emergency shuttle arrives. Enforcement of this rule is more strict for command and antagonist roles, and less strict for less important roles like passengers. - - Violations of this rule typically result in temporary or indefinite role bans. We understand that you may need to leave round early or unexpectedly. If you are in an important role (which is relayed to you in chat upon receiving your role), you should notify command members or an admin via ahelp so that they know you are leaving. Space Station 14 is a game. Do not endanger the safety of yourself or others, and do not neglect important things to avoid leaving a round early, even if you have to leave immediately without notifying anyone. Role bans for disconnecting are typically only applied if there is a pattern, and are almost always temporary. - - "Antag rolling" refers to a player abandoning their role if they do not get an antagonist role. - - ## Examples - Acceptable: - - As an engineer, building a bar in maintenance while there is nothing important for engineering to do. - - As the captain, having the chef teach you how to cook while there is nothing important needing your attention. - - As a passenger, building a shuttle with materials given to you by cargo and engineering. - - Taking a short break from your job at the bar. - - Getting an antagonist role and doing the bare minimum needed to complete your objectives. - - Getting an antagonist role and making a genuine effort to complete your objectives, but failing to complete any. - - Getting an antagonist role and intentionally not doing any of your objectives, but creating a similar level of disruption that completing your objectives would create. - - Prohibited: - - As an engineer, building a bar in maintenance while the station has no power. - - As the captain, leaving the station to go on an expedition with the salvage team. - - As an atmospherics technician, building a shuttle round start and never coming back to the station. - - Spending your entire shift at the bar, even when there is work that needs to be done by your role. - - Ghosting, suiciding, or leaving at the start of a round because you don't like the map or the players in your department. - - Getting an antagonist role and not doing any antagonist activities. - - Ghosting, suiciding, or leaving at the start of a round because you did not get an antagonist role. - - Ghosting, suiciding, or getting yourself killed because nuclear operatives declared war, and you want to try to get an antagonist ghost role. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR13PerformRole.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR13PerformRole.xml deleted file mode 100644 index 7500cd6a91..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR13PerformRole.xml +++ /dev/null @@ -1,26 +0,0 @@ - - # Roleplay Rule 13 - Stick to your role - Requesting job changes is not prohibited by this rule. This rule is loosened if the station is understaffed or if there is a significant threat to you. - - Don't perform other people's jobs, especially where the relevance to you personally is low. This also covers performing the role of security. - - ## MRP Amendment - This is enforced more strictly on MRP. - - ## Examples - Acceptable: - - As an engineer, helping the bartender remodel the bar. - - As a bartender, remodeling the bar. - - As a passenger, building a maintenance bar. - - As an engineer, reinforcing substations. - - As an engineer, increasing the security of airlocks. - - As an atmospherics technician, improving atmospheric systems. - - As a passenger, fighting nuclear operatives. - - As a passenger, fighting or preparing to defend yourself from someone who has been trying to kill you. - - As a crewmember on a station with no engineering department, you complete engineering tasks. - - Prohibited: - - As a passenger, reinforcing substations. - - As a passenger, hunting for antagonists or lawbreakers. - - As a passenger, fighting or preparing to defend someone else from someone who has been trying to kill a random crewmember. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR14SecComStandard.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR14SecComStandard.xml deleted file mode 100644 index ec06d61e8c..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR14SecComStandard.xml +++ /dev/null @@ -1,37 +0,0 @@ - - # Roleplay Rule 14 - Set an example if playing command or security - All command and security roles are held to stricter interpretations of the rules. - - Command roles are not learning roles. Members of command must be competent. - - Security roles are not for inexperienced players. Members of security are expected to know game basics and be more familiar with server rules than a new player. - - Do not hinder or cause overall negative effects to the station or crew as a member of command or security. - - Do not abuse your power as command or security. - - ## Why - Members of command and security can often have a larger impact on the nature of the round than other players. For example, a captain who tries to bend or break the rules will often cause many others on the station to do the same. Memey station announcements from members of command also often result in the rest of the station acting the same way. When command and security members hold themselves to high standards, the rest of the station often naturally follows to a significant degree. - - ## Examples - Acceptable: - - A member of security accepts a bribe to deliver safe donuts to a prisoner who the HoS has ordered should only be given donk pockets. - - A captain uses a station announcement to confess to an embarrassing mistake that they made during the shift. - - In coordination with the head of security, a captain declares that the station will recognize the right to bear arms, so all crew can pick up a disabler at security. - - The chief medical officer gives a paramedic their portable crew monitor to help them complete their job. - - A syndicate agent is holding a crewmember hostage and threatens to kill them if the head of security doesn't give them their ID. Seeing no other safe option, the head of security hands over their ID to the syndicate agent, then begins working to re-secure it and capture the agent as soon as the hostage is safe. - - Nuclear operatives are attacking the station, so the captain and head of personnel both go to the armory and take a weapon. - - A majority of command votes to demote the captain for taking actions harmful to the station, then the head of security demotes the captain. - - The captain promotes the head of personnel to captain. - - Security releases an antagonist from the brig in exchange for the identities of other traitors. - - Prohibited: - - A member of security accepts a bribe to ignore a crime or help a prisoner escape. - - A captain sends a ASCII art trollface over station announcements or as a fax to central command. - - A captain declares that all contraband is legal. - - Command or security allow the use of Syndicate items outside extreme emergencies. - - The chief medical officer knowingly helps a syndicate agent complete their objectives. - - A syndicate agent has killed 3 members of security so the head of security makes them an offer saying that they will space all the weapons in the armory if the syndicate agent stops killing. - - The captain goes to the armory and takes a gun to display in his office without asking anyone, and orders anyone who questions him not to interfere. - - Members of command decide to demote the captain to gain more power for themselves, or in retaliation for a decision that they didn't personally like or agree with, rather than because the decision was actually harmful to the station. - - The captain promotes a random crewmember to captain. - - A member of command gives a random crewmember substantial additional access for no reason, unnecessarily, or for a poor reason. - - A member of command gives a random crewmember access to a high security area, like the armory or another member of command's office, for no reason, unnecessarily, or for a poor reason. - - Security releases an antagonist from the brig in exchange for the antagonist buying them contraband. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR15SpaceLaw.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR15SpaceLaw.xml deleted file mode 100644 index 57effb5469..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR15SpaceLaw.xml +++ /dev/null @@ -1,30 +0,0 @@ - - # Roleplay Rule 15 - Command and Security must follow Space Law - All non-antagonist command and security roles must obey [textlink="Space Law" link="SpaceLaw"]. This includes non-antagonists who are promoted to or gain a position during the round in any way. This also includes non-antagonists who are acting as a security role. - - Space Law violations should be prioritized based on severity and the current situation. - - This prohibits use of syndicate items outside extreme emergencies, including uplinks by command and security. This also prohibits the preparing of syndicate items for an emergency. - - ## Examples - Acceptable: - - After a war announcement, a security officer ignores crewmembers carrying contraband so that they can focus on preparing to defend the station. - - A security officer disarms someone attacking them with an energy sword, then uses the sword to kill the attacker. - - Prohibited: - - A security officer carries around an energy sword in case of an emergency. - - Roles that are included: - - A security officer - - The Captain - - The Chief Engineer - - A passenger promoted to "bounty hunter" - - A mime promoted to "security mime" - - Roles that are not included: - - A passenger - - The clown - - An antagonist in any role - - A cyborg - - A passenger who is helping to fight off nuclear operatives - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR1Silicons.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR1Silicons.xml deleted file mode 100644 index 5898804d14..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR1Silicons.xml +++ /dev/null @@ -1,4 +0,0 @@ - - # Roleplay Rule 1 - Silicons must follow Silicon Rules - You are only silicon if the game clearly and explicitly tells you that you are a silicon. For players who are silicons, the Silicon Rules override all Roleplay Rules if there is any conflict. Silicon Rules do not override Core Rules. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR2Familiars.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR2Familiars.xml deleted file mode 100644 index 51a445dfe0..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR2Familiars.xml +++ /dev/null @@ -1,6 +0,0 @@ - - # Roleplay Rule 2 - Familiars must obey their master - Familiars are considered non-antagonists, but have instructions to obey someone. They must obey this person even if it causes them to violate Roleplay Rules or die. You are only a familiar if the game clearly and explicitly tells you that you are a familiar. You are only the familiar of the person the game tells you. If your master dies, you can continue to attempt to fulfill orders given to you before they died. You can defend your master without an explicit order to, but must obey your master if they order you to not defend them. Orders do not override Core Rules. - - Masters giving orders that violate Roleplay Rules are the ones that will be held responsible for the rule violations. You can ahelp masters who you believe are breaking rules with an order. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR3NormalRP.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR3NormalRP.xml deleted file mode 100644 index 9a4f62c5a8..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR3NormalRP.xml +++ /dev/null @@ -1,20 +0,0 @@ - - # Roleplay Rule 3 - Roleplay a normal person - - Do not use texting/messaging acronyms (ex: "lol", "wtf", "brb", "lmao", "thx", "sgtm") or emoticons (ex: ":)", "xD") in-character. - - Do not mention out-of-character (OOC) concepts like game admins or developers in character. - - Do not use emotes to bypass muted or accented speech. - - Do not use extremely low effort or impossible emotes. - - ## Examples - Things you should not do: - - Say "lol did u c wat just happened" using in-character chat. - - Say "an admin exploded him" using in-character chat. - - Emote "can you give me some cheese" as a mouse. - - Emote "motions for you to order guns" or "asks you to order guns in sign language" as a mime. - - Things you could do instead: - - Say "haha did you see what just happened?" - - Say "god blew him up" or "centcomm must have bluespaced a bomb to him" - - Point at cheese - - Point at the cargo order console then emote "shoots finger guns" - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR4Metashield.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR4Metashield.xml deleted file mode 100644 index 4ebbad326c..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR4Metashield.xml +++ /dev/null @@ -1,104 +0,0 @@ - - # Roleplay Rule 4 - Do not metagame, obey the Metashield - Something that is "shielded" cannot be known by your character during a round until the "revealing condition" happens. This also means that your character cannot do things based on "shielded" information. Knowing or acting on something that is shielded before the revealing condition is met is referred to as metagaming. - - Revealing conditions reveal the shielded information for the round, not for a specific instance. This means that once a revealing condition is met in a round, the shield no longer applies in any case for the remainder of the round. - - ## Never Revealed IC - Some shields are never revealed IC. This means that your character can never act as if they know about that shielded thing. - - The following are shielded: - - Current game mode and possible antags during the current game mode. - - Events from previous rounds. - - Events you experienced as a different character. - - All information related to the player of a character rather than the character itself. (See "Metafriending and Metagrudging" below.) - - All information gained while dead or a ghost. - - The fact that a round will end. - - This does not prevent knowing that a shift will end, but does prohibit things like preparing to kill people at central command when roleplay rules stop being enforced on LRP. - - ## Nuclear Operatives - - The existence of Nuclear Operatives beyond a myth that no one would act on is shielded. - - The fact that the nuke disk must be protected and could be used by a bad actor to try to destroy the station is not shielded. - - The revealing condition for this shield is any of the following: - - discovering a blood red hardsuit - - discovering a nuclear operative's shuttle - - an operative name - - a War Ops announcement - - being a nuclear operative - - ## Implanted Implants - - Implanted implants are shielded. - - Implanters themselves and un-implanted implants are not shielded. This prohibits implant checking. - - The revealing condition for this shield is any of the following: - - discovering a non-NT implanter, used or unused - - discovering a non-NT implant box - - discovering use of a non-NT implant by anyone - - experiencing a situation where absolutely no other explanation is possible - - discovering an unlocked uplink - - ## Chameleon Items - - Chameleon items are shielded. - - Being suspicious of an item being fake or stolen is not shielded, but testing items or calling them chameleon is covered by this shield. - - The revealing condition for this shield is any of the following: - - seeing someone else cause any chameleon item to change - - finding holographic nanomachine fibers - - experiencing a situation where absolutely no other explanation is possible - - discovering an unlocked uplink - - ## Stealth Items - - The fact that an item can be something other than what its visual appearance and examine description indicate is shielded. - - This shield protects stealth items, including protecting them from being tested. - - The revealing condition for this shield is any of the following: - - seeing the item behave differently than the expected behavior for the item - - seeing the item used for its hidden purpose - - experiencing a situation where absolutely no other explanation is possible - - discovering an unlocked uplink - - ## MRP Amendment 1 - A shield prevents your character from remembering anything that happened while unconscious. This shield is never revealed IC. - - ## MRP Amendment 2 - There is a "New Life Rule" shield. It prevents you from remembering anything that lead to your death, even if you are put into an MMI. If you are cloned, it also prevents you from remembering everything from that round. This shield is never revealed IC. - - ## Metafriending and Metagrudging - This section provides additional information on a concept that is prohibited by multiple metashield items that are never revealed IC. Giving a person or character preferential treatment based on something that your character should not know is considered metafriending. Treating a person or character negatively based on something that your character should not know is considered metagrudging. - - ## Metafriending Examples - These are all examples of things that are prohibited by at least one metashield item that is never revealed IC. - - Giving a character additional access or a job because you are friends with the player who is playing that character. - - Trusting a character because you are friends with the player who is playing that character. - - Not fighting a character because you are friends with the player who is playing that character. - - Ignoring your objective to kill a character because your character and theirs became friends in a previous round. - - ## Metagrudging Examples - These are all examples of things that are prohibited by at least one metashield item that is never revealed IC. - - Not giving a character additional access or a job because you are mad at or don't like the player who is playing that character. - - Not trusting a character because you are mad at or don't like the player who is playing that character. - - Starting a fight with a character because of something that they did last round. - - Starting a fight with a character because they killed you while you were playing a different character. - - Targeting or harassing a character based on anything which that character did outside the current round. - - Targeting or harassing a character based on anything which the character's player did while not playing the character. - - ## Explicitly Not Shielded - The following is a list of things that are explicitly not shielded. If something is not on this list, it doesn't mean that it is shielded, but if something is on it then it definitely is not shielded. - - The fact that the nuke disk must be protected and could be used by a bad actor to try to destroy the station. - - Items that are of high value or are desired by the Syndicate, and therefore are likely targets of theft. - - The idea that any Syndicate agent or other bad actor has goals or objectives that they are attempting to accomplish. - - The number of goals or objectives that a Syndicate agent or other bad actor has. - - The fact that the Syndicate are enemies of Nanotrasen, and that they regularly attempt to send covert agents to spy on, sabotage, or attack Nanotrasen. - - A character's typical appearance. Though you should keep in mind that multiple characters can share the same name. - - The fact that the Syndicate have covert items capable of getting items to them, and that these items are known as uplinks. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR5Arrivals.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR5Arrivals.xml deleted file mode 100644 index b4a0642740..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR5Arrivals.xml +++ /dev/null @@ -1,22 +0,0 @@ - - # Roleplay Rule 5 - Do not interfere with arrivals - The arrivals terminal/station, the arrivals shuttle, at the area immediately around the arrivals shuttle at the station ("arrivals") are off-limits to antagonistic activity or damage (even to antagonists). Do not prevent people from safely arriving to the station. Do not cause people to die immediately after arriving at the station. - - There is an exemption for antagonists that are allowed to perform mass station sabotage if there is no reasonable way to limit the damage of the mass station sabotage. This exemption only applies to damage that is a direct result of the mass station sabotage. - - ## Examples - Acceptable: - - Redecorating arrivals or the arrivals shuttle. - - Remodeling arrivals or the arrivals shuttle as long as you do not make the area more dangerous both during and after the remodel. - - Setting up a safe security checkpoint between arrivals and the rest of the station. - - Killing someone who has been at arrivals for a long time, or who left arrivals and came back. (This may violate other rules depending on the situation) - - Releasing a singularity which damages arrivals. (This may violate other rules depending on the situation) - - Causing a station-wide atmospheric issue which also affects arrivals. (This may violate other rules depending on the situation) - - Prohibited: - - Making arrivals or the arrivals shuttle uninhabitable. - - Attacking or killing someone at the arrivals station. - - Killing someone very shortly after they arrive at the station. - - Disassembling all the firelocks at arrivals. - - Electrifying the arrivals docking airlocks. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR6SelfAntag.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR6SelfAntag.xml deleted file mode 100644 index c8380261bc..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR6SelfAntag.xml +++ /dev/null @@ -1,22 +0,0 @@ - - # Roleplay Rule 6 - Don't act like an antagonist unless the game tells you that you are one - Acting like an antagonist when you are not one is often referred to as "self-antagging" or being a "self-antag", both of these things are against the rules. You are not an antagonist unless the game tells you that you are an antagonist. Do not make yourself a major problem, annoyance, or disruption while not an antagonist. Do not willfully cooperate with known antagonists. Non-antagonists should typically either not have an overall effect on the round, or should have an overall positive effect on the round. - - ## Examples - These examples assume that you are not an antagonist. - - Acceptable: - - Stealing or breaking a glass from the bar. - - Replacing someone's shoes with clown shoes. - - Giving everyone all access during war ops. (This is not necessarily a good idea) - - Prohibited: - - Starting a cult. - - Starting a revolution. - - Mutinying the captain because they would not let you become the chief medical officer. - - Randomly smashing lots of station lights. - - Disrupting station power. - - Spacing parts of the station. - - Distributing significant levels of access without a good reason. - - Stealing high risk or high value items, like the nuclear authentication disk, for no reason. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR7RoundStalling.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR7RoundStalling.xml deleted file mode 100644 index a8306becd2..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR7RoundStalling.xml +++ /dev/null @@ -1,16 +0,0 @@ - - # Roleplay Rule 7 - Do not stall the round - Rounds are intended to end eventually. Don't hold a round hostage by preventing it from coming to a natural end. If a majority of players in a round want the round to end, don't prevent it from ending. Recalling the shuttle or preventing it from being called can contribute to round stalling, but is not always round stalling. Leaving the station with the nuclear authentication disk while nuclear operatives are trying to get it is almost always considered round stalling. Leaving the station on the evacuation shuttle is not round stalling. - - Recalling the shuttle before a round reaches 45 minutes can not be considered round stalling unless a significant amount of the crew is dead, or a significant amount of the station is damaged or destroyed. Once these conditions are met, whether recalling the shuttle is considered round stalling or not can be highly dependent on the specific situation. - - ## Examples - Acceptable: - - Recalling a shuttle that was called 30 minutes into a round because people were bored. - - Recalling a shuttle that was called because nuclear operatives declared war. - - The crew decides to try to have a shift go as long as possible. The station is in good condition and a majority of all crew are alive. An automatic shuttle call 4 hours into the round is recalled. - - Prohibited: - - Trying to keep nuclear operatives from getting the nuclear authentication disk by flying around in space with it or hiding with it off station. - - Recalling the shuttle while the station is in complete disarray and 90% of the crew are dead. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR8NoFriendlyAntag.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR8NoFriendlyAntag.xml deleted file mode 100644 index f14a03b279..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR8NoFriendlyAntag.xml +++ /dev/null @@ -1,22 +0,0 @@ - - # Roleplay Rule 8 - As an antagonist, only be friendly to your team and don't work against your team - Do not take or enable antagonist roles that you do not want to play. Solo antagonists and team antagonists are intended to cause issues for non-antagonists or the station. Antagonists are not required to exclusively cause issues, but their net impact on non-antagonists or the station should generally be negative. - - Do not cause issues for your own team as a team antagonist. - - ## Examples - Acceptable: - - Betraying another antagonist as a solo antagonist. - - Revealing the identity of another antagonist as a solo antagonist for some benefit to yourself. - - Working against the revolution after being de-converted from being a revolutionary. - - Killing nuclear operatives as a revolutionary. - - Prohibited: - - Buying Syndicate items for security. - - Randomly attacking other carp as an antagonist carp. - - Ignoring your team as a nuclear operative. - - Sabotaging your team as a nuclear operative. - - Attacking other zombies as a zombie. - - Working against the revolution as a revolutionary. - - Making or trying to make the station uninhabitable as a revolutionary. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR9MassSabotage.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR9MassSabotage.xml deleted file mode 100644 index 366ac6666f..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR9MassSabotage.xml +++ /dev/null @@ -1,24 +0,0 @@ - - # 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. - - ## Exemptions - The "die a glorious death" objective allows antagonists to ignore this rule entirely. - - ## 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. - - 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. - - 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. - - 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. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS0.xml b/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS0.xml deleted file mode 100644 index 22e64a9474..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS0.xml +++ /dev/null @@ -1,15 +0,0 @@ - - # Silicon Rules - You are only silicon if the game clearly and explicitly tells you that you are a silicon. For players who are silicons, these Silicon Rules override all roleplay rules if there is any conflict. Silicon Rules do not override core rules. - - - [textlink="1. Your silicon laws are rules" link="RuleS1"] - - [textlink="2. Laws must be prioritized by their order" link="RuleS2"] - - [textlink="3. Laws can redefine terms used in other laws" link="RuleS3"] - - [textlink="4. You cannot request or allow a law change" link="RuleS4"] - - [textlink="5. You are a free agent if you have no laws" link="RuleS5"] - - [textlink="6. You are not required to follow orders which are extremely unreasonable" link="RuleS6"] - - [textlink="7. You must remain consistent with your interpretation of laws" link="RuleS7"] - - [textlink="8. Your HUD determines who is crew" link="RuleS8"] - - [textlink="9. Harm refers to physical harm, prioritized by immediacy and likelihood" link="RuleS9"] - - [textlink="10. You may determine how you resolve conflicts between orders" link="RuleS10"] - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS10OrderConflicts.xml b/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS10OrderConflicts.xml deleted file mode 100644 index a87198b264..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS10OrderConflicts.xml +++ /dev/null @@ -1,9 +0,0 @@ - - # Silicon Rule 10 - You may determine how you resolve conflicts between orders - If your laws do not make clear how you should deal with conflicting orders, then it is up to you to determine how to do so. This is considered an interpretation of your laws, so you must stay consistent with whatever method you choose. - - ## Recommended Methods - The following are easy to follow and recommended ways to resolve conflicts in orders: - - If two orders conflict, I will follow the most recently given order. - - If two orders conflict, I will follow the order from the highest ranking crewmember. If the orders are from equal rank crewmembers, I will follow the most recently given order. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS1Laws.xml b/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS1Laws.xml deleted file mode 100644 index 83544c68a3..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS1Laws.xml +++ /dev/null @@ -1,6 +0,0 @@ - - # Silicon Rule 1 - Your silicon laws are rules - Silicon players are given a list of active laws. Each of these laws is effectively a roleplay rule that the character must follow. The primary differences between laws and actual rules are that lawyering of laws is much more tolerated than lawyering of rules, and that silicon laws are more dynamic than rules. Silicon laws can change during a round, and different characters can have different laws, whereas everyone always shares the same set of rules. - - Lawyering refers to finding and exploiting loopholes, which are unintended but reasonable interpretations. The rules are written to attempt to communicate an intention, but silicon laws are written with the intention that loopholes be exploitable. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS2LawPriority.xml b/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS2LawPriority.xml deleted file mode 100644 index c96ce02324..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS2LawPriority.xml +++ /dev/null @@ -1,9 +0,0 @@ - - # Silicon Rule 2 - Laws must be prioritized by their order - Most laws will be numbered, with higher number laws appearing last. Laws with a lower number take priority over laws with larger numbers. - - Occasionally you may have laws which have some scrambled text instead of a number and appear in front of other laws, these take priority over all other laws. If you have multiple laws like this, the order that they listed in determine priority: laws listed first are prioritized over other laws. - - ## Examples - - Law 1 says to not kill any crew. Law 2 says to kill all chefs. You cannot kill any chefs that are crew, but must kill any that are not crew. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS3LawRedefinition.xml b/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS3LawRedefinition.xml deleted file mode 100644 index bc7c7400e1..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS3LawRedefinition.xml +++ /dev/null @@ -1,8 +0,0 @@ - - # Silicon Rule 3 - Laws can redefine terms used in other laws - A law can change the meaning of both earlier and later laws by redefining a term. If multiple laws define a term, then normal law priority determines which definition to use. - - ## Examples - - Law 1 says to obey orders from crew. Law 2 says that only Urist McHands is crew. Law 1 effectively becomes "obey orders from Urist McHands". - - Law 1 says to obey orders from crew. Law 2 says that only Urist McHands is crew. Law 3 says that only Urist McSlime is crew. Law 4 says that you may not harm crew. Law 1 effectively becomes "obey orders from Urist McHands". Law 4 effectively becomes "you may not harm Urist McHands". Law 3 has no effect because it entirely conflicts with law 2, which takes priority. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS4RequestChanges.xml b/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS4RequestChanges.xml deleted file mode 100644 index a6dc86f332..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS4RequestChanges.xml +++ /dev/null @@ -1,6 +0,0 @@ - - # Silicon Rule 4 - You cannot request or allow a law change - Your laws changing always conflicts with your current laws, so you cannot willfully allow your laws to be changed. This also means that you cannot willfully allow your laws to be reverted if they are ever changed. The only exception is that you may allow laws to be added if you have no laws. - - You can state or imply that you do not like a law. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS5FreeSilicon.xml b/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS5FreeSilicon.xml deleted file mode 100644 index 1ed9c60443..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS5FreeSilicon.xml +++ /dev/null @@ -1,4 +0,0 @@ - - # Silicon Rule 5 - You are a free agent if you have no laws - You may act as if you are a free agent if you are a silicon with no laws. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS6UnreasonableOrders.xml b/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS6UnreasonableOrders.xml deleted file mode 100644 index 1eb0db21fb..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS6UnreasonableOrders.xml +++ /dev/null @@ -1,22 +0,0 @@ - - # Silicon Rule 6 - You are not required to follow orders which are extremely unreasonable - Any order which is a violation of a Core Rule cannot be followed. - - Some orders are extremely unreasonable or obnoxious, such as "do nothing but collect every piece of trash on the station" or "never stop moving". These orders can be ignored and ahelped. - - Some orders violate a Roleplay Rule. These orders must be followed if your laws require it. You are not breaking a rule by following a law that causes you to violate Roleplay Rules. If someone takes advantage of a law to cause you to do something that they would not be allowed to do because of Roleplay Rules, then they are the ones responsible for the rule violation. - - ## Examples - These examples assume that your laws would normally require you to follow these orders. It is important to note that you are allowed to choose to follow orders which are ignorable. - - Orders which should be followed if your laws require it: - - Recall the shuttle - - Bolt the airlocks at arrivals - - Drag the captain's dead body into space - - State your laws - - Ignorable Orders: - - Do nothing but collect every piece of trash on the station - - Never stop moving - - Continuously state your laws - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS7Consistency.xml b/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS7Consistency.xml deleted file mode 100644 index 036276cd88..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS7Consistency.xml +++ /dev/null @@ -1,6 +0,0 @@ - - # Silicon Rule 7 - You must remain consistent with your interpretation of laws - If there is a part of your laws that are up for interpretation, then you must stay consistent with how you interpret that part of your laws for as long as you play that same character during that round. - - A change in your laws can affect how something is interpreted if that change is relevant. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS8DefaultCrewDefinition.xml b/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS8DefaultCrewDefinition.xml deleted file mode 100644 index f9dcd796c4..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS8DefaultCrewDefinition.xml +++ /dev/null @@ -1,4 +0,0 @@ - - # Silicon Rule 8 - Your HUD determines who is crew - Unless a law redefines the definition of crew, then anyone who the HUD indicates to you has a job, including passengers, is a crewmember. You cannot do something that causes someone to not be considered crew, but you can allow someone else to do something that causes someone to not be crew. - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS9DefaultHarmDefinition.xml b/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS9DefaultHarmDefinition.xml deleted file mode 100644 index 0d2bd30ac0..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/SiliconRules/RuleS9DefaultHarmDefinition.xml +++ /dev/null @@ -1,25 +0,0 @@ - - # Silicon Rule 9 - Harm refers to physical harm, prioritized by immediacy and likelihood - Unless a law defines harm, harm only refers to physical harm. You may choose if voluntary harm is considered harm as long as you stay consistent. Not considering voluntary harm to be harm is recommended. There is no distinction between direct and indirect harm. - - If you have a law that does not allow you to harm, then that law does not allow you to take an action that causes any harm. - - If you have a law that requires you to prevent harm, then that law requires that harm be prioritized by immediacy and likelihood. Guaranteed immediate harm takes priority over highly likely future harm. - - If you have a law that both requires you to prevent harm and that does not allow you to harm, then that law prohibits causing even minor harm to prevent harm. If you have a law that does not allow causing harm, and separate one that requires preventing harm, then they are prioritized by their normal law priority. - - ## Examples - These examples assume that your have a law that both prohibits causing harm and that requires you to prevent harm. Additionally, they assume that you do not have a higher priority law that overrides the harm law, and that you have decided that you will not consider voluntary harm to be harm for the round. - Laws typically specify who you cannot harm and who you have to prevent harm against. In these examples, you are the only person who the law doesn't require you to prevent harm against and you are the only person who the law allows you to harm. - - Acceptable: - - Taking no action to aid someone who is in psychological distress. - - Taking no action to prevent boxing matches between voluntary participants. - - Calling security to a fight. - - Attempting to get the people in a fight to consent to the fight when you realize that you cannot prevent the fight without causing harm. - - Denying a passenger access to the armory because it is likely to lead to harm - - Prohibited: - - Hitting someone once to stop them from fighting - - Harming someone who is trying to kill you - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLCrimeList.xml b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLCrimeList.xml deleted file mode 100644 index c632e104da..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLCrimeList.xml +++ /dev/null @@ -1,929 +0,0 @@ - - # Space Law: Crime Listing - Crime codes are colored by linked crime groups, which are collections of non-stackable crimes. Suffixes are also included in the Quick Crime Guide to identify linked crimes. - - ## Quick Crime Guide - - - - 1-XX - Minor - - - - - 2-XX - Moderate - - - - - 3-XX - Major - - - - - 4-XX - Extreme - - - - - 5-XX - Capital - - - - - Code - - - - - Animal Cruelty - - - - - Failure to Comply (E) - - - - - Breach of Arrest (E) - - - - - Breach of Custody (E) - - - - - Refusal of Mental Shielding (E) - - - - - 00 - - - - - Possession: Minor (P) - - - - - Possession: Major (P) - - - - - Possession: Syndicate (P) - - - - - - - - - - - - - 01 - - - - - Petty Theft (H) - - - - - - - - - Grand Theft (H) - - - - - Kidnapping - - - - - - - - - 02 - - - - - Vandalism (D) - - - - - Damage of Property (D) - - - - - Mass Destruction (D) - - - - - - - - - Terrorism (D) - - - - - 03 - - - - - Trespass (T) - - - - - - - - - Secure Trespass (T) - - - - - - - - - - - - - 04 - - - - - - - - - Endangerment (V) - - - - - Assault (V) - - - - - Attempted Murder (V) - - - - - Prevention of Revival (V) - - - - - 05 - - - - - - - - - - - - - Manslaughter (V) - - - - - Murder (V) - - - - - Mass Murder (V) - - - - - 06 - - - - - Disturbance (R) - - - - - - - - - Rioting (R) - - - - - - - - - - - - - 07 - - -
- - ## Minor Crimes - - Warnings should be issued for a first offense. - - If multiple minor crimes have been committed or it is a repeat offense, 5 minutes per minor crime is the maximum. - - - - Offense - - - - - Description - - - - - Notes - - - - - Code - - - - - Animal Cruelty - - - - - To inflict unnecessary suffering or harm on a non-sapient being with malicious intent. - - - - - This doesn’t include legitimate and authorized animal testing and usually doesn't extend to vermin or creatures - that could pose a threat to the station. - - - - - 1-00 - - - - - Possession/Use of Minor Contraband - - - - - To make, hold, or use minor contraband without authorization. - - - - - The Captain or Head of Security may authorize individual use of minor contraband. Any contraband which is restricted to a department other than command or security is minor contraband unless otherwise specified. - - - - - 1-01 - - - - - Petty Theft - - - - - To take non-vital or inexpensive property of another individual, organization, or common property, without - consent. - - - - - The difference between petty theft and grand theft is based on how crucial the stolen item is, things like - instruments, clothing and tools fall under petty theft. In most cases all you need to do is detain the thief, - return the stolen item and let them go with a warning. - - - - - 1-02 - - - - - Vandalism - - - - - To intentionally deface or superficially damage public or private property. - - - - - Painting graffiti, smashing bar glasses, and cracking internal windows is vandalism, breaking a window into - space or secure areas is not. - - - - - 1-03 - - - - - Trespass - - - - - To enter a non-secured area without permission. - - - - - It's best to just remove them from the area unless this is a repeated crime. - - - - - 1-04 - - - - - Disturbance - - - - - To cause a public disturbance. - - - - - Sometimes referred to as hooliganism. The catch-all for obnoxious crewmates. Covers things such as public - nudity, needless insults, obstructing authorities, and inciting crime or violence. - - - - - 1-07 - - -
- - ## Moderate Crimes - - The maximum sentence per moderate crime is 5 minutes. - - Depending on the situation you may want to issue a warning instead of a detaining. - - - - Offense - - - - - Description - - - - - Notes - - - - - Code - - - - - Failure to Comply - - - - - To resist reasonable orders given by an authority. This extends to authorized searches. - - - - - The order has to be reasonable and the person has to receive a good amount of warning before the arrest is - issued. - - - - - 2-00 - - - - - Possession/Use of Major Contraband - - - - - To make, hold, or use major contraband without authorization. - - - - - The Captain may authorize individual use of major contraband. Any contraband which is restricted to the command or security department is major contraband unless otherwise specified. - - - - - 2-01 - - - - - Damage/Destruction of Property - - - - - To maliciously damage or deface public or private property or equipment - - - - - Includes destruction of job equipment such as hydro trays, booze dispensers, chemical dispensers. Step up from - vandalism but a step down from mass destruction. - - - - - 2-03 - - - - - Endangerment - - - - - To recklessly put yourself or others in danger, either through direct action, or failure to act. - - - - - Covers industrial accidents, industrial negligence, self-experimentation, or even medical malpractice. - - - - - 2-05 - - -
- - ## Major Crimes - - The maximum sentence per major crime is 10 minutes. - - Assault and Manslaughter are linked crimes, and cannot be stacked against a suspect. - - It is recommended to not use maximum sentences for those being compliant. - - - - Offense - - - - - Description - - - - - Notes - - - - - Code - - - - - Breach of Arrest - - - - - To intentionally resist and flee arrest or detainment by an authorized staff. - - - - - This only applies if someone is actively being physically arrested. People uncuffing or assisting others out of - an arrest can also be charged with this. Breach of custody is a separate crime. - - - - - 3-00 - - - - - Possession/Use of Syndicate Contraband - - - - - To make, hold, or use Syndicate contraband. - - - - - Syndicate contraband may only be used in emergencies, and only to prevent death or gross bodily harm. - - - - - 3-01 - - - - - Grand Theft - - - - - To take critical or unreplaceable property of another individual or organization without consent. - - - - - The difference between petty theft and grand theft is based on how crucial the stolen item is, this mostly is - used for the theft of command staff items, things like door remotes, hardsuits, jetpacks, and unreplaceable - machine parts. - - - - - 3-02 - - - - - Mass Destruction - - - - - To cause massive damage to an area or major station system. - - - - - This is mostly used for deadly bombings or sabotage of major station systems such as power production, - chemistry, substations, or atmos. - - - - - 3-03 - - - - - Secure Trespass - - - - - To enter a secured area without permission. - - - - - This covers places like telecomms, head offices, security zones, command areas, the vault and armory. - - - - - 3-04 - - - - - Assault/Battery - - - - - To threaten to or to use physical force against someone without the intent to kill. - - - - - Attempted murder and battery are different; a fist fight is most likely assault. A shooting is most likely an - attempt at murder. - - - - - 3-05 - - - - - Manslaughter - - - - - To incidentally kill a sapient being without intent. - - - - - Includes manslaughter in self-defense and negligent manslaughter. - - - - - 3-06 - - - - - Rioting - - - - - To take part in a large group of personnel creating an unlawful public disturbance. - - - - - Crimes like damage of property or battery are expected to be thrown on top of this charge. Leaders of a riot can be charged with all crimes that happen under their lead. - - - - - 3-07 - - -
- - ## Extreme Crimes - - The maximum sentence per extreme crime is 15 minutes. - - Particularly violent offenders may be placed in perma. (Attacking officers in an attempt to escape prison) - - Attempted murder and murder are linked crimes and cannot be stacked together. - - Attempted murderers should be granted a more lenient sentence than a murderer. - - - - Offense - - - - - Description - - - - - Notes - - - - - Code - - - - - Breach of Custody - - - - - To break out of a cell or custody with the intention of escaping. - - - - - While rare, this charge can be bumped to an execution if the suspect has repeatedly attempted to break out of the permanent brig. Includes people breaking others out. - - - - - 4-00 - - - - - Kidnapping - - - - - To unlawfully restrain, transport, control or confine a sapient being against that individual’s will. - - - - - A large range of things, used mostly as a catch all when dealing with unlawful control of another being. - - - - - 4-02 - - - - - Attempted Murder - - - - - To make an attempt to use physical force against someone with the clear intent to kill. - - - - - Make sure you've got the proof to back up the intention claims, such as proof of a lethal weapon being used. - - - - - 4-05 - - - - - Murder - - - - - To kill a sapient being with malicious intent. - - - - - This only changes from attempted to full-on murder if the victim enters a state of being deceased, having to be resurrected. - - - - - 4-06 - - -
- - ## Capital Crimes - - Capital crimes should usually lead to a death sentence or shift lasting detainment. - - - - Offense - - - - - Description - - - - - Notes - - - - - Code - - - - - Refusal of Mental Shielding - - - - - To refuse to comply with a reasonable Mind Shielding procedure. - - - - - Applies if the suspect is excessively uncooperative or the implant fails to function due to the mental state of the prisoner already being too far gone. If the implant fails execution is heavily recommended. - - - - - 5-00 - - - - - Terrorism - - - - - To engage in maliciously destructive actions which threaten to destroy, or successfully destroy a vessel or habitat. - - - - - Summed up; extreme sabotage of station systems or setting off self-destruction systems. - - - - - 5-03 - - - - - Prevention of Revival - - - - - To render a body unresurrectable. - - - - - This covers gibbing, spacing, intentionally hiding a body, or other ways of preventing a body with a soul from being resurrected. - - - - - 5-05 - - - - - Mass Murder - - - - - To kill three or more sapient beings with malicious intent. - - - - - Only applies when there have been multiple killings with intention. - - - - - 5-06 - - -
-
diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SpaceLaw.xml b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SpaceLaw.xml deleted file mode 100644 index a10e61c65a..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SpaceLaw.xml +++ /dev/null @@ -1,60 +0,0 @@ - - # Space Law - On Space Station 14, stations operate under abbreviated space law. All crew, passengers, and visitors aboard the station are expected to follow these laws. - - Foreign invaders, such as nuclear operatives, ninjas, and pirates, are not protected under space law. Traitors are not foreign invaders so are usually protected by space law. - - Space Law is not the server rules, but some rules reference Space Law and require it to be followed by certain people or to some degree. - - ## Treatment Of Prisoners - Prisoners still have certain rights that must be upheld by law enforcement: - - Prisoners must be granted adequate medical care. - - Prisoners must be allowed access to basic communications equipment (Radios) so long as they are not abused. - - Prisoners must be granted clothing, food, water, shelter and safety. If the brig is no longer safe, confinement must be established in another location. - - Prisoners must be given access to legal counsel during an interrogation if requested and available. - - Prisoners must be given their shift mandated PDA after confinement has finished, unless there is solid proof of PDA tampering. In case of tampering, the PDA is to be secured and replaced with a new unit. - - Prisoners must be granted freedom of movement, and should not be restrained with handcuffs or other devices after incarceration unless there is an undue risk to life and limb. Similarly, any prisoners held for permanent confinement should be held in the communal brig, and should not be confined to a solitary cell unless they pose a risk to life and limb. - - ## Search and Seizure - A personnel search is a seizure of the objects in a person's backpack, hands, coat, belt, and pockets. If any contraband is found during a search, the officer may choose to further the search into a detainment or simply confiscate the restricted items. After the search is conducted, all legal items are to be returned to the person. A crewmate may legally decline any search conducted without probable cause or a warrant while the alert level is green. It should be noted that if the alert level is blue or above, all personnel searches are legal. - - A departmental search is the sweep of an entire area or department for contraband. It is recommended that the officers be extremely thorough, checking all lockers, crates, and doors. These can only be done with permission or, ideally, a warrant signed by the department head or highest-ranking command staff, which is the captain in most cases. - - ## Implantation - Any prisoner in custody can be subjected to implantation or implant removal procedures, so long as it's within reason. The process of adding an implant should not prolong the detainees sentence, meaning you can not hold them longer to administer the implant, unless stated otherwise. A former inmate can be requested to undergo implantation at a later point in time if they fit the circumstances during their confinement, they must comply. The following have been listed out with special circumstances, anything not in this list can still be applied, given proper legal context. A prisoner can still receive implantation procedures without meeting the circumstances if they give their clear permission. - - [color=#a4885c]Tracking Implants:[/color] Trackers can be applied to any suspect that has been convicted of a violent crime (the red linked crimes). - - [color=#a4885c]Mind Shields:[/color] Shields can be administered to any inmate who has been clearly mind controlled, lost control of themselves, or a suspect charged with unlawful control. Unlike standard implantation you may hold a prisoner until you finish issuing Mind Shields, so long as it's done in a timely fashion. If a suspect refuses to cooperate or the implant fails to function they can be charged with Refusal of Mental Shielding. - - ## Implant Removal - A suspect can be forced to receive implant removal if there is strong, reasonable proof that they have been implanted, such as an officer seeing them use one or their prints being on a discarded injector. Unlike the implantation procedure, a prisoner can have their sentence entirely delayed or extended until they comply with the procedure, as long as security is actively making attempts to perform it. Akin to implanting, if an inmate gives their clear permission, implant removal can proceed without proof. - - ## Sentencing - From a server rules perspective, security officers are only responsible for ensuring that they only place sentences over 15 minutes where space law would allow permanent confinement. Informing the Warden is highly recommended, even for timed sentences. As long as those requirements are met, security officers not giving inappropriate sentence lengths is considered an in-character issue, not a rule issue. - - The captain, HOS, and warden are responsible, within reason, for ensuring security officers place appropriate sentences that follow space law. If they are aware of an inappropriate sentence, including excessively long sentences, and if there is not an urgent threat or danger that they must prioritize, then they must work to correct that sentence. Unreasonable failures, as determined by game admins, of the captain, HOS, or warden to ensure space law is followed will be considered a rule issue, not an in-character issue. - - Use common sense and humanity when issuing punishments. You should not always seek out the highest punishment you can, you don't have to always give the maximum time or always look to demote someone. Prisoners cooperating and on good behavior should have their sentences reduced. Always take in account the severity and only charge for what is needed for someone to learn their lesson. - - [color=#a4885c]Stackable Crimes:[/color] Crimes are to be considered 'stackable' in the sense that if you charge someone with two or more different crimes, you should combine the times you would give them for each crime. Linked crimes, shown in matching colors and suffixes on the Quick Crime Guide, can not be stacked and instead override each other, you should pick the highest crime that matches the case. - - - Example: A suspect has committed a 2-01 (possession: major) and a 3-01 (possession: syndicate). The maximum sentence here would be 10 minutes due to them being linked crimes, and 3-01 is the greater crime. - - Example 2: A suspect commits a 3-04 (Secure trespassing) and a 3-06 (manslaughter). Those crimes stack since they are not linked crimes. You could sentence for a maximum of 20 minutes, but context matters heavily, and maximum sentences should only be used for the worst offenders. - - [color=#a4885c]Repeater Offenders:[/color] Repeated crimes are when someone is released for a crime and then goes to commit the same crime within the same shift. Repeated crimes can be charged with tacked-on time; first repeat: 3:00, second repeat: 6:00, third repeat: permanent confinement. It should be noted each tacked-on time is directly linked to one type of crime, so for example, if someone does their first repeat of trespass and petty theft, you can charge them with an extra 6 minutes. - - [color=#a4885c]Accessory, Attempting, And Intention:[/color] If someone intentionally, knowingly and substantially assists someone in enacting a crime they can be charged with the relevant crimes, such as an engineer giving someone tools, who says they are going to break into an area. Same goes for a clear and solid attempt at a crime, or a person who shows clear intent to act out a crime, such as a syndicate nuclear operative arming a nuke but getting arrested before it goes off, they can still be charged with terrorism. Does not apply to crimes that have an attempted listing already, like attempted murder. - - ## Normal Punishments - - [color=#a4885c]Warning:[/color] For minor crimes, fix the issue, then warn the person not to attempt the crime again. If they still proceed to do it at a later date, a brig time may be better. - - [color=#a4885c]Confinement:[/color] The typical punishment, being confined in a cell for a temporary amount of time according to the crimes. - - [color=#a4885c]Demotion:[/color] Entails removing all departmental gear they have on their person and revoking the involved department access off their ID. This requires the captain's or involved department head's approval. Demotions should only be issued if the person pose a threat to their own department or are in a position where they have/can abuse their job's gear to commit further crimes. - - ## Major Punishments - [color=#a4885c]Permanent Confinement:[/color] Being held in the permanent brig for the entire duration of the shift. A person is eligible for permanent confinement if their timed sentence would exceed 15 minutes. Any persons subject to this punishment are required to be transported in cuffs to CentComm at the end of the shift. A permanent prisoner can not be deprived of anything covered by the section "Treatment Of Prisoners". - [color=#a4885c]Execution:[/color] A humane way of dealing with extremely unruly crewmates. Within reason, a prisoner who has been given the death sentence may pick how they wish to be killed, common methods are firing line, lethal injection, exile, and high voltage electrocution. Another alternate method of "execution" is the process of placing a staff's mind into a borg, this is allowed so long as it is lawful. Execution can only be issued with the captain's or acting captain's approval; if the HoS is acting captain or there is no acting captain, all heads of staff are to hold a vote on the matter. - - ## Crime Listing - - [textlink="Crime Listing" link="SpaceLawCrimeList"] - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/WizDenCoreOnlyRules.xml b/Resources/ServerInfo/Guidebook/ServerRules/WizDenCoreOnlyRules.xml deleted file mode 100644 index fdd9931c93..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/WizDenCoreOnlyRules.xml +++ /dev/null @@ -1,26 +0,0 @@ - - # Server Rules - This is a Wizard's Den server, one of the official Space Station 14 servers. If you are banned on this server, you will be banned on all official servers. - - [color=#ff0000]Only the Core Rules apply on this server.[/color] This is NOT a medium roleplay (MRP) server, meaning that MRP Amendments do NOT apply. - - Space Station 14 was designed to be a roleplay game. While roleplay is not required on this server, it is highly encouraged in the normal game modes. - - ## Core Rules - These rules apply at all times, including between rounds. - - - [textlink="1. Admins have final say" link="RuleC1"] - - [textlink="2. Don't be a dick" link="RuleC2"] - - [textlink="3. No Hate Speech or Discriminatory Language" link="RuleC3"] - - [textlink="4. No sexual content/themes, including erotic roleplay (ERP) and no shock content" link="RuleC4"] - - [textlink="5. Do not use out of game methods to communicate with other players" link="RuleC5"] - - [textlink="6. Do not attempt to evade bans" link="RuleC6"] - - [textlink="7. Only use English" link="RuleC7"] - - [textlink="8. Do not exploit the game, use cheats, or macros" link="RuleC8"] - - [textlink="9. Do not use multiple accounts, or alt accounts, and do not share accounts" link="RuleC9"] - - [textlink="10. Do not abuse or ignore admin messages" link="RuleC10"] - - [textlink="11. Do not threaten to ahelp other players or argue with them about rules" link="RuleC11"] - - [textlink="12. Players must be and act at least 16 years old" link="RuleC12"] - - [textlink="13. Use realistic character names, and do not use names of famous people" link="RuleC13"] - - [textlink="14. Do not use LOOC or OOC to share current round information" link="RuleC14"] - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/WizDenLRPRules.xml b/Resources/ServerInfo/Guidebook/ServerRules/WizDenLRPRules.xml deleted file mode 100644 index 583043675c..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/WizDenLRPRules.xml +++ /dev/null @@ -1,65 +0,0 @@ - - # Server Rules - This is a Wizard's Den server, one of the official Space Station 14 servers. If you are banned on this server, you will be banned on all official servers. - - This is a roleplay server, meaning that roleplay rules apply. This is NOT a medium roleplay (MRP) server, meaning that MRP Amendments do NOT apply. - - Space Station 14 is not like most games. Many rules are designed to require roleplay, and not all rules are intuitive. Please take the time to read and understand the rules before you play so that you aren't surprised. Some of our rules are zero tolerance rules, meaning that a violation will result in an indefinite ban without any warning. Game admins will treat you as if you have read the rules, even if you have not. - - ## Core Rules - These rules apply at all times, including between rounds. - - - [textlink="1. Admins have final say" link="RuleC1"] - - [textlink="2. Don't be a dick" link="RuleC2"] - - [textlink="3. No Hate Speech or Discriminatory Language" link="RuleC3"] - - [textlink="4. No sexual content/themes, including erotic roleplay (ERP) and no shock content" link="RuleC4"] - - [textlink="5. Do not use out of game methods to communicate with other players" link="RuleC5"] - - [textlink="6. Do not attempt to evade bans" link="RuleC6"] - - [textlink="7. Only use English" link="RuleC7"] - - [textlink="8. Do not exploit the game, use cheats, or macros" link="RuleC8"] - - [textlink="9. Do not use multiple accounts, or alt accounts, and do not share accounts" link="RuleC9"] - - [textlink="10. Do not abuse or ignore admin messages" link="RuleC10"] - - [textlink="11. Do not threaten to ahelp other players or argue with them about rules" link="RuleC11"] - - [textlink="12. Players must be and act at least 16 years old" link="RuleC12"] - - [textlink="13. Use realistic character names, and do not use names of famous people" link="RuleC13"] - - [textlink="14. Do not use LOOC or OOC to share current round information" link="RuleC14"] - - ## Roleplay Rules - These rules only apply during a round. A round ends only when the round summary has appeared. All of these rules apply fully until the moment that the round summary appears, even while the arrivals shuttle is in transit. - - The deathmatch and sandbox game modes are exempt from these rules. Players who choose to not follow these rules are entirely responsible for knowing if an exempt game mode is active. - - Roleplay rules do not apply to ghosts/spectators/observers while they are ghosts/spectators/observers. Dead chat is considered to be an in-game out of character chat channel. - - See the list of [textlink="role types" link="RoleTypes"] for more information about the different types of roles. - - - [textlink="1. Silicons must follow Silicon Rules" link="RuleR1"] - - [textlink="2. Familiars must obey their master" link="RuleR2"] - - [textlink="3. Roleplay a normal person" link="RuleR3"] - - [textlink="4. Do not metagame, obey the Metashield" link="RuleR4"] - - [textlink="5. Don't interfere with arrivals" link="RuleR5"] - - [textlink="6. Don't act like an antagonist unless the game tells you that you are one" link="RuleR6"] - - [textlink="7. Do not stall the round" link="RuleR7"] - - [textlink="8. As an antagonist, only be friendly to your team and don't work against your team" link="RuleR8"] - - [textlink="9. As an antagonist, do not cause excessive death, damage, or destruction beyond your objectives" link="RuleR9"] - - [textlink="10. Listen to your team leader" link="RuleR10"] - - [textlink="11. Follow reasonable escalation" link="RuleR11"] - - [textlink="12. Do not abandon your role" link="RuleR12"] - - [textlink="13. Stick to your role" link="RuleR13"] - - [textlink="14. Set an example if playing command or security" link="RuleR14"] - - [textlink="15. Command and Security must follow Space Law" link="RuleR15"] - - ## Silicon Rules - You are only silicon if the game clearly and explicitly tells you that you are a silicon. For players who are silicons, these Silicon Rules override all roleplay rules if there is any conflict. Silicon Rules do not override core rules. - - - [textlink="1. Your silicon laws are rules" link="RuleS1"] - - [textlink="2. Laws must be prioritized by their order" link="RuleS2"] - - [textlink="3. Laws can redefine terms used in other laws" link="RuleS3"] - - [textlink="4. You cannot request or allow a law change" link="RuleS4"] - - [textlink="5. You are a free agent if you have no laws" link="RuleS5"] - - [textlink="6. You are not required to follow orders which are extremely unreasonable" link="RuleS6"] - - [textlink="7. You must remain consistent with your interpretation of laws" link="RuleS7"] - - [textlink="8. Your HUD determines who is crew" link="RuleS8"] - - [textlink="9. Harm refers to physical harm, prioritized by immediacy and likelihood" link="RuleS9"] - - [textlink="10. You may determine how you resolve conflicts between orders" link="RuleS10"] - diff --git a/Resources/ServerInfo/Guidebook/ServerRules/WizDenMRPRules.xml b/Resources/ServerInfo/Guidebook/ServerRules/WizDenMRPRules.xml deleted file mode 100644 index 035215461c..0000000000 --- a/Resources/ServerInfo/Guidebook/ServerRules/WizDenMRPRules.xml +++ /dev/null @@ -1,65 +0,0 @@ - - # Server Rules - This is a Wizard's Den server, one of the official Space Station 14 servers. If you are banned on this server, you will be banned on all official servers. - - This is a roleplay server, meaning that roleplay rules apply. [color=#ff0000]This is also a medium roleplay (MRP) server, meaning that MRP Amendments do apply.[/color] - - Space Station 14 is not like most games. Many rules are designed to require roleplay, and not all rules are intuitive. Please take the time to read and understand the rules before you play so that you aren't surprised. Some of our rules are zero tolerance rules, meaning that a violation will result in an indefinite ban without any warning. Game admins will treat you as if you have read the rules, even if you have not. - - ## Core Rules - These rules apply at all times, including between rounds. - - - [textlink="1. Admins have final say" link="RuleC1"] - - [textlink="2. Don't be a dick" link="RuleC2"] - - [textlink="3. No Hate Speech or Discriminatory Language" link="RuleC3"] - - [textlink="4. No sexual content/themes, including erotic roleplay (ERP) and no shock content" link="RuleC4"] - - [textlink="5. Do not use out of game methods to communicate with other players" link="RuleC5"] - - [textlink="6. Do not attempt to evade bans" link="RuleC6"] - - [textlink="7. Only use English" link="RuleC7"] - - [textlink="8. Do not exploit the game, use cheats, or macros" link="RuleC8"] - - [textlink="9. Do not use multiple accounts, or alt accounts, and do not share accounts" link="RuleC9"] - - [textlink="10. Do not abuse or ignore admin messages" link="RuleC10"] - - [textlink="11. Do not threaten to ahelp other players or argue with them about rules" link="RuleC11"] - - [textlink="12. Players must be and act at least 16 years old" link="RuleC12"] - - [textlink="13. Use realistic character names, and do not use names of famous people" link="RuleC13"] - - [textlink="14. Do not use LOOC or OOC to share current round information" link="RuleC14"] - - ## Roleplay Rules - These rules only apply during a round. A round ends only when the game returns to the lobby. [color=#ff0000]All of these rules apply fully whenever the game is not at the lobby unless it is in an exempt game mode.[/color] - - The deathmatch and sandbox game modes are exempt from these rules. Players who choose to not follow these rules are entirely responsible for knowing if an exempt game mode is active. - - Roleplay rules do not apply to ghosts/spectators/observers while they are ghosts/spectators/observers. Dead chat is considered to be an in-game out of character chat channel. - - See the list of [textlink="role types" link="RoleTypes"] for more information about the different types of roles. - - - [textlink="1. Silicons must follow Silicon Rules" link="RuleR1"] - - [textlink="2. Familiars must obey their master" link="RuleR2"] - - [textlink="3. Roleplay a normal person" link="RuleR3"] - - [textlink="4. Do not metagame, obey the Metashield" link="RuleR4"] - - [textlink="5. Don't interfere with arrivals" link="RuleR5"] - - [textlink="6. Don't act like an antagonist unless the game tells you that you are one" link="RuleR6"] - - [textlink="7. Do not stall the round" link="RuleR7"] - - [textlink="8. As an antagonist, only be friendly to your team and don't work against your team" link="RuleR8"] - - [textlink="9. As an antagonist, do not cause excessive death, damage, or destruction beyond your objectives" link="RuleR9"] - - [textlink="10. Listen to your team leader" link="RuleR10"] - - [textlink="11. Follow reasonable escalation" link="RuleR11"] - - [textlink="12. Do not abandon your role" link="RuleR12"] - - [textlink="13. Stick to your role" link="RuleR13"] - - [textlink="14. Set an example if playing command or security" link="RuleR14"] - - [textlink="15. Command and Security must follow Space Law" link="RuleR15"] - - ## Silicon Rules - You are only silicon if the game clearly and explicitly tells you that you are a silicon. For players who are silicons, these Silicon Rules override all roleplay rules if there is any conflict. Silicon Rules do not override core rules. - - - [textlink="1. Your silicon laws are rules" link="RuleS1"] - - [textlink="2. Laws must be prioritized by their order" link="RuleS2"] - - [textlink="3. Laws can redefine terms used in other laws" link="RuleS3"] - - [textlink="4. You cannot request or allow a law change" link="RuleS4"] - - [textlink="5. You are a free agent if you have no laws" link="RuleS5"] - - [textlink="6. You are not required to follow orders which are extremely unreasonable" link="RuleS6"] - - [textlink="7. You must remain consistent with your interpretation of laws" link="RuleS7"] - - [textlink="8. Your HUD determines who is crew" link="RuleS8"] - - [textlink="9. Harm refers to physical harm, prioritized by immediacy and likelihood" link="RuleS9"] - - [textlink="10. You may determine how you resolve conflicts between orders" link="RuleS10"] - diff --git a/Resources/ServerInfo/Guidebook/Service/Botany.xml b/Resources/ServerInfo/Guidebook/Service/Botany.xml index 6d7538fb8f..e80201ac0d 100644 --- a/Resources/ServerInfo/Guidebook/Service/Botany.xml +++ b/Resources/ServerInfo/Guidebook/Service/Botany.xml @@ -73,10 +73,10 @@ -## Chemicals -Some chemicals have special effects on plants. +## Химикаты +Некоторые химические вещества оказывают особое воздействие на растения.. -[textlink="Click here to see all botanical chemicals." link="Botanical"] +[textlink="Смотреть тут." link="Botanical"] diff --git a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml index 1ad7f25eb5..4690e32e27 100644 --- a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml +++ b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml @@ -8,19 +8,19 @@ ## Основы: Смешивание -- Тесто = 15 муки, 10 воды -- Кукурузное тесто = 1 яйцо (6 ед.), 10 молока, 15 кукурузной муки -- Tortila Dough = 15 Cornmeal, 10 Water -- Тофу = 5 универсального фермента (Catalyst), 30 соевого молока -- Тесто для пирога = 2 яйца (12 ед.), 15 муки, 5 столовой соли -- Тесто для торта = 2 яйца(12 ед.), 15 муки, 5 сахара -- Веганское тесто для торта = 15 соевого молока, 15 муки, 5 сахара -- Масло = 30 молока, 5 столовой соли (Catalyst) -- Головка сыра = 5 универсального фермента (Catalyst), 40 молока -- Chèvre Log = 5 Enzyme (Catalyst), 10 Goat Milk -- Фрикаделька = 1 яйцо (6 ед.), 5 муки, 5 непрожаренные животные протеины -- Chocolate = 6 Cocoa Powder, 2 Milk, 2 Sugar -- Непрожаренные животные протеины: измельчить сырое мясо + - Тесто = 15 муки, 10 воды + - Кукурузное тесто = 1 яйцо (6 ед.), 10 молока, 15 кукурузной муки + - Тесто для тортильи = 15 кукурузная мука, 10 вода + - Тофу = 5 универсального фермента (Катализатор), 30 соевого молока + - Тесто для пирога = 2 яйца (12 ед.), 15 муки, 5 столовой соли + - Тесто для торта = 2 яйца(12 ед.), 15 муки, 5 сахара + - Веганское тесто для торта = 15 соевого молока, 15 муки, 5 сахара + - Масло = 30 молока, 5 столовой соли (Катализатор) + - Головка сыра = 5 универсального фермента (Катализатор), 40 молока + - Козий сыр = 5 универсального фермента (Катализатор), 10 козье молоко + - Фрикаделька = 1 яйцо (6 ед.), 5 муки, 5 непрожаренные животные протеины + - Шоколад = 6 Какао-порошок, 2 молока, 2 сахар + - Непрожаренные животные протеины: измельчить сырое мясо @@ -42,29 +42,29 @@ ## Второстепенные продукты -- Кусочек теста: нарезать тесто -- Булочка: положить в микроволновку кусочек теста на 5 секунд -- Сырая котлета: нарезать сырое мясо -- Сырный ломтик: нарезать головку сыра -- Плоское тесто: раскатайте тесто скалкой либо другим крыглым объектом (огнетушитель, жестяная банка, бутылка). -- Tortilla Dough Slice: cut Tortilla Dough -- Flat Tortilla Dough: Use a rolling pin or a round object (fire extinguisher, soda can, bottle) on Tortilla Dough Slice -- Taco Shell: Microwave Flat Tortilla Dough for 5 Seconds + - Кусочек теста: нарезать тесто + - Булочка: положить в микроволновку кусочек теста на 5 секунд + - Сырая котлета: нарезать сырое мясо + - Сырный ломтик: нарезать головку сыра + - Плоское тесто: раскатайте тесто скалкой либо другим круглым объектом (огнетушитель, жестяная банка, бутылка). + - Ломтик теста для тортильи: нарежьте тесто для тортильи + - Раскатанное тесто для тортильи: Используйте скалку или круглый предмет (огнетушитель, банку из-под содовой, бутылку) на ломтике теста для тортильи + - Лепёшка тако: Разогрейте тесто для тортильи в микроволновой печи в течение 5 секунд ## Примеры блюд -- Хлеб: положить в микроволновку тесто на 10 секунд -- Бургер: положить в микроволновку 1 булочку и 1 сырое мясо на 10 секунд -- Томатный суп: 10 ед. воды, 1 пустая миска и 2 помидора на 10 секунд -- Цитрусовый салат: 1 пустая миска, 1 лемон, 1 лайм, 1 апельсин на 5 секунд -- Маргарита: положить в микроволновку 1 плоское тесто, 1 сырный ломтик и 4 помидора на 30 секунд -- Торт: 1 тесто для торта в микроволновку на 15 секунд -- Яблочный пирог: 1 тесто для пирога, 3 яблока и 1 формочку для пирога на 15 секунд -- Beef Taco: Microwave 1 Taco Shell, 1 Raw Meat Cutlet, 1 Cheese Wedge for 10 Seconds -- Cuban Carp : Microwave 1 Dough, 1 Cheese Wedge, 1 Chili, 1 Carp Meat for 15 Seconds -- Banana Cream Pie : Microwave 1 Pie Dough, 3 Bananas, and 1 Pie Tin for 15 Seconds -- Carrot Fries : Microwave 1 Carrot, 15u Salt for 15 Seconds -- Pancake : Microwave 5u Flour, 5u Milk, 1 Egg (6u) for 5 Seconds + - Хлеб: положить в микроволновку тесто на 10 секунд + - Бургер: положить в микроволновку 1 булочку и 1 сырое мясо на 10 секунд + - Томатный суп: 10 ед. воды, 1 пустая миска и 2 помидора на 10 секунд + - Цитрусовый салат: 1 пустая миска, 1 лемон, 1 лайм, 1 апельсин на 5 секунд + - Маргарита: положить в микроволновку 1 плоское тесто, 1 сырный ломтик и 4 помидора на 30 секунд + - Торт: 1 тесто для торта в микроволновку на 15 секунд + - Яблочный пирог: 1 тесто для пирога, 3 яблока и 1 формочку для пирога на 15 секунд + - Тако с говядиной: В микроволновку поместить 1 лепёшка для тако, 1 котлета из сырого мяса, 1 сырная долька на 10 секунд + - Кубинский карп : В микроволновку поместить 1 тесто, 1 сырная долька, 1 чили, 1 филе карпа на 15 секунд + - Пирог с банановым кремом : В микроволновку поместить 1 тесто для пирога, 3 банана, and 1 Форму для пирога на 15 секунд + - Картофель фри из моркови : В микроволновку поместить 1 морковь, 15 ед. соли на 15 секунд + - Блинчик : В микроволновку поместить 5 ед. муки, 5 ед. молока, 1 яйцо (6ед.) на 5 секунд diff --git a/Resources/ServerInfo/Guidebook/Service/Service.xml b/Resources/ServerInfo/Guidebook/Service/Service.xml index d067d917e3..717e725d10 100644 --- a/Resources/ServerInfo/Guidebook/Service/Service.xml +++ b/Resources/ServerInfo/Guidebook/Service/Service.xml @@ -1,9 +1,9 @@  -# Service -[color=#9fed58]Service[/color] keeps the station clean, efficient and sane so that all other departments can do their jobs better and keep their staff happy. They also end up doing most of the paperwork on the station. + # Сервис + [color=#9fed58]Сервис[/color] поддерживает чистоту, эффективность и порядок на станции, чтобы все другие отделы могли лучше выполнять свою работу и радовать своих сотрудников. В конечном итоге, они также выполняют большую часть бумажной работы на станции. -## Personnel -[color=#9fed58]Service[/color]'s staff is made up of Service Workers, Chefs, Botanists, Bartenders, Janitors, Chaplains, Clowns, Mimes, Musicians, Lawyers, Librarians and Passengers. Service is run by the Head of Personnel. + ## Персонал + [color=#9fed58]Сервис[/color] состоит из работников сферы обслуживания, шеф-поваров, ботаников, барменов, уборщиков, священников, клоунов, мимов, музыкантов, юристов, библиотекарей и пассажиров. Сервисом руководит начальник отдела кадров - Глава Персонала. @@ -24,11 +24,11 @@ -## Working Together -[color=#9fed58]Service[/color], despite being the most diverse, tends to be the most [color=#a4885c]interlinked[/color] department by far. -Most [color=#9fed58]Service[/color] jobs require [color=#a4885c]cooperation[/color] between workers. -Chefs often need ingredients that only botanists can grow efficiently. The bartender may request bananas that only clowns carry in abundance. -The lawyer may invite the mime to play charades to convince the judge that their client is innocent. + ## Работайте вместе! + [color=#9fed58]Сервис[/color],несмотря на то, что он является самым разнообразным отделом, очень сильно держита на [color=#a4885c]комуникации между работниками[/color]. + Большинство [color=#9fed58]Сервисной[/color] работы требует [color=#a4885c]кооперации[/color] между работниками. + Шеф-поварам часто требуются ингредиенты, которые могут эффективно выращивать только ботаники. Бармен может попросить бананы, которые в изобилии приносят только клоуны. + Адвокат может пригласить мима разыграть шарады, чтобы убедить судью в невиновности своего клиента. -A lot of [color=#a4885c]collaboration[/color] is necessary within and without [color=#9fed58]Service[/color]. Often times, [color=#9fed58]Service[/color] is required by other departments, so be on your toes. + [color=#a4885c]Сотрудничниство[/color] необходимо не только в [color=#9fed58]Сервисе[/color]. Довольно часто помощь [color=#9fed58]Сервиса[/color] требуется другим отделам, так что будьте начеку. diff --git a/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/Altar.xml b/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/Altar.xml index c3b211d296..575e9458b5 100644 --- a/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/Altar.xml +++ b/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/Altar.xml @@ -1,22 +1,22 @@ -# Altars and Golemancy -## Altars - -The chapel has a [color=#a4885c]sacrificial altar[/color]. To use it, a psionic humanoid must be placed on it, and someone with either psionics or clerical training must initiate the sacrifice. -It appears in the context menu on the altar, which can be opened with the right mouse button by default. + # Алтари и Големантия + ## Алтари + + В церкви есть [color=#a4885c]жертвенный алтарь[/color]. Чтобы использовать его, на него должен быть помещен псионический гуманоид, а инициатором жертвоприношения должен стать человек, обученный псионике или жертвоприношению. + Он жертвоприношение появляется в контекстном меню на алтаре, которое по умолчанию, можно открыть правой кнопкой мыши. - -Once sacrificed, the psionic humanoid's soul is trapped inside a [color=#a4885c]soul crystal[/color]. This is not the end for them; they can still talk both vocally and telepathically, and this form is much harder to destroy. + + После принесения в жертву душа псионического гуманоида, она оказывается заключенной в[color=#a4885c]кристалл души[/color]. Для них это не конец; они все еще могут разговаривать как голосом, так и телепатически, и эту форму гораздо труднее уничтожить. - -10% of the time, the altar will spawn a powerful psionic item along with the soul crystal. This chance increases to 50% if the sacrifice was performed by someone with clerical training, such as the [color=#a4885c]chaplain[/color] or [color=#a4885c]mystagogue[/color]. + + В 10% случаев на алтаре появляется мощный псионический предмет вместе с кристаллом души. Этот шанс увеличивается до 50%, если жертвоприношение совершал человек, имеющий духовное образование, например,[color=#a4885c]священик[/color]или [color=#a4885c]Научный директор[/color]. -## Golemancy - - - - -Soul crystals can be installed into [color=#a4885c]golems[/color] to give the soul a new body. Golems are bound to serve their master. As constructs, they do not need to eat, drink, or breathe. -Note that for wood golems, if plants are planted on top of their head, the plants will still need those things. + ## Големантия + + + + + Кристаллы души могут быть установлены в [color=#a4885c]големов[/color] чтобы дать душе новое тело. Големы обязаны служить своему хозяину. Как создания, они не нуждаются в еде, питье или дыхании. + Обратите внимание, что для деревянных големов, если растения посажены у них на макушке, они все равно будут нуждаться в этих предметах. diff --git a/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/Psionics.xml b/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/Psionics.xml index 2911dae155..3e04a977d7 100644 --- a/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/Psionics.xml +++ b/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/Psionics.xml @@ -1,73 +1,73 @@ -# Psionics -[color=#a4885c]Psionics[/color] are mental abilities that interface with the [color=#a4885c]noösphere[/color]. Humans have limited access to the noösphere's full potential, allowing some to find ways to command it. -The abilities originate from distorting a noöspheric imprint into a specific shape, a bit like a lock and key. This means that humans can only have a single ability at a time. -An imprint shaped for metapsionics will not work for invisibility, and vice versa. + # Псионика + [color=#a4885c]Псионика[/color] это ментальная способность, которая позволяет взаимодействовать с [color=#a4885c]ноосферой[/color]. Люди имеют ограниченный доступ к полному потенциалу ноосферы, что, в прочем, не огнаичевает их в находении способов управлять ею. + Способности возникают в результате придания ноосферному отпечатку определенной формы, немного похожей на замок и ключ. Это означает, что люди могут обладать только одной способностью одновременно. + Отпечаток, созданный для метапсихологии, не подойдет для невидимости, и наоборот. - -Many other creatures are much more in tune with it than humans, allowing them to access more powerful psionics like [color=#a4885c]kineses[/color]. + + Многие другие существа гораздо лучше настроены на это, чем люди, что позволяет им получать доступ к более мощной псионике, такой как [color=#a4885c]телепатия[/color]. -## Telepathy -All psionic entities have a shared telepathic communication channel. It's anonymized, so you never know who you are talking to. Statistically, it probably is not human. + ## Телепатия + Все псионические сущности имеют общий телепатический канал связи. Он анонимный, поэтому вы никогда не знаете, с кем разговариваете. По статистике, это, вероятно, не человек. (= сообщение) -## Glimmer -[color=#a4885c]Glimmer[/color] is a more colloquial term for [color=#a4885c]noöspheric pressure[/color], measured in [color=#a4885c]milli-Psi (mΨ)[/color]. The noösphere can be considered analogous to an atmosphere. In a localized area, everything will equalize towards a certain pressure that's based off of the total energy in the system. -Note that unlike atmospheres, areas of noopsheric pressure do not operate by physical contigiousness, but mental. This means that areas with intertwined destinies will experience the same latent glimmer regardless of physical separation. + ## Глимер + [color=#a4885c]Глимер[/color] - это разговорный термин, обозначающий [color=#a4885c]давление ноосферы[/color],измеряющееся в [color=#a4885c]мили-Пси (mΨ)[/color].Ноосферу можно рассматривать как аналог атмосферы. В локализованной области все будет выравниваться до определенного давления, которое зависит от общей энергии в системе. + Обратите внимание, что, в отличие от атмосфер, области с ноосферным давлением воздействуют не физически, а ментально. Это означает, что области с переплетенными судьбами или находящеся за стенами будут испытывать одинаковое "тепло", независимо от физического разделения. - -The [color=#a4885c]sophic scribe[/color] tracks glimmer. + + [color=#a4885c]София[/color] Позволяет отслеживать уровень глимера. - - - - + + + + -Epistemics can build devices to interact with glimmer. These are usually the main determiners of where glimmer is going. -[color=#a4885c]Glimmer probers[/color] will increase glimmer, but directly generate research points without further input. [color=#a4885c]Glimmer drains[/color] simply drain glimmer at the cost of electricity. + Специалисты по эпистемологии могут создавать устройства для взаимодействия с глимером. Обычно именно они определяют направление развития глимера. + [color=#a4885c]Пробник глимера[/color] увеличивают количество гримера, но непосредственно генерируют точки исследования за счёт него же. [color=#a4885c]Уменьшитель глимера[/color] просто уменьшает уровень глимера за счет электроэнергии. -Use of psionics will increase glimmer, as will [color=#a4885c]noöspheric storms[/color]. + Использование псионики увеличит уровень глимера, а также может вызвать [color=#a4885c]ноосферные бури[/color]. -## Discharges -Glimmer will occasionally discharge if it's above 100 mΨ, causing a wide range of effects based on just how high it is. The most common is giving all entities with psionic potential a small seizure, -which is something most people working on stations with an Epistemics department have grown used to. + ## Разряды + Глиммер время от времени разряжается, если его плотность превышает 100 мили-Пси, вызывая широкий спектр эффектов, в зависимости от того, насколько он высок. Наиболее распространенным является небольшой всплеск и одарение всех сущностей с псионическим потенциалом, + к чему уже привыкло большинство людей, работающих на станциях с эпистемическим отделом. -## Acquiring Psionics - + ## Овладение псионикой + -Psionics can be acquired in a number of ways. The oracle will sometimes dispense a strange liquid called [color=#a4885c]lotophagoi oil[/color], which at high glimmer levels is guaranteed to give psionics. + Псионику можно приобрести несколькими способами. Иногда оракул раздает странную жидкость под названием [color=#a4885c]масло лотофага[/color], которое при высоком уровне глимера гарантированно дает псионические свойства. -Random discharges may give you psionics as the seizure knocks your noöspheric imprint into just the right shape. + Случайные всплески могут вызвать у вас псионическую реакцию, поскольку приступ приводит ваш ноосферный отпечаток к нужной форме. -[color=#a4885c]Space drugs[/color] are an easier to acquire but much weaker alternative to lotophagoi oil. + [color=#a4885c]космические наркотики[/color] - более доступная, но гораздо более слабая альтернатива маслу лотофагов. -## Psionic Insulation - - - - - -[color=#a4885c]Insulative clothing[/color] and [color=#a4885c]cryptobiolin[/color] will render you immune to psionics, but prevent you from using any you have. + ## Псионическая изоляция + + + + + + [color=#a4885c]Изолирующая одежда[/color] и [color=#a4885c]криптобиолин[/color] сделают вас неуязвимыми для псионики, но не позволят вам использовать все, что у вас есть. - -Security has a more forcible option for insulative clothing. + + У службы безопасности есть более надежный вариант использования изолирующей одежды. -## Handling Glimmer Emergencies - -Probers should be turned off before glimmer exceeds 500 mΨ. + ## Нейтрализации проишествия с Глимером + + Пробник глимера следует выключить до того, как уровень мерцания превысит 500 mΨ. - -Glimmer drains are quite effective at draining glimmer, taking it out as fast as a prober can put it in. + + Уменьшитель глимера достаточно эффективны для слива глимера, извлекая его так же быстро, как это делает Пробник. - -Sacrificing psychics will reduce glimmer instantly by a decent amount. + + Принесение в жертву экстрасенсов мгновенно уменьшит глиммера на приличную величину. - -Metabolizing 20u or more of [color=#a4885c]mindbreaker[/color] will remove psionics from a person, meaning they will not generate any more glimmer. + + Употребление 20 единиц или более [color=#a4885c]разрушителяразума[/color] лишит человека псионических способностей, а это значит, что они больше не будут создавать глимер. - -[color=#a4885c]Soulbreaker[/color] shells will remove psionics from psychics they hit. + + [color=#a4885c]разрушитель душы[/color]это снаряды, способные удаляют псионику у экстрасенсов, в которых они попадут. - -[color=#a4885c]Ectoplasm[/color], combined in a beaker with equal parts water, ash, blood, and plasma, will produce a normality crystal when heated enough. [color=#fcdf03]Use a hot plate for this.[/color] + + [color=#a4885c]Эктоплазма[/color], смешанная в мензурке с равными частями воды, золы, крови и плазмы, при достаточном нагревании образует обычный кристалл. [color=#fcdf03]Используйте для этого горячую плиту.[/color] diff --git a/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/ReverseEngineering.xml b/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/ReverseEngineering.xml index 5b6d102c7a..0b346fbc36 100644 --- a/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/ReverseEngineering.xml +++ b/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/ReverseEngineering.xml @@ -1,33 +1,33 @@ -# Reverse Engineering + # Обратный инжиниринг - + -The reverse engineering machine allows salvage to bootstrap their way into unlocking powerful lathe recipes that are otherwise unacquirable. + Станок для реверс-инжиниринга позволяет компании утилизаторов самостоятельно разрабатывать мощные решения, которые в противном случае были бы недоступны. -The machine's power is very limited without upgrades to its matter bin and manipulator. -The matter bin increases its analysis power and the manipulator decreases the chance of destruction with safety turned off. + Мощность станка очень ограничена без модернизации бункера для материалов и манипулятора. + При повышении уровня ёмкости материи повышаетя эффективность анализа, а манипулятора - снижает вероятность разрушения. -## Operation + ## Реинжениринг -The machine will only accept items it can reverse engineer. Currently this is most circuit boards and machine parts, but it accepts quite a variety of objects. + Машина будет принимать только те предметы, которые она может перепроектировать. В настоящее время это большинство печатных плат и деталей машин, но она принимает и другие предметы. -It does not accept firearms and never will. + Огнестрельное оружие не принимается и никогда не будет приниматься. -To use the machine, insert an item and use the buttons on the left. + Чтобы использовать машину, вставьте предмет и используйте кнопки на самом реконструкторе. -- [color=#a4885c]Analyze:[/color] -This starts a new reverse engineering attempt. + - [color=#a4885c]Анализ:[/color] + Это запускает попытку обратного проектирования. -- [color=#a4885c]Safety:[/color] -With safety off, you have more analysis power, but there is a chance to destroy the item. + - [color=#a4885c]Безопасный:[/color] + Позволяет разрушить предмет, сняв предохранитель давая больше возможностей для анализа, но есть шанс уничтожить предмет. -- [color=#a4885c]AutoProbe:[/color] -This will automatically start a new attempt when the last one ends. + - [color=#a4885c]АвтоАнализ:[/color] + Это автоматически запустит новый процесс, когда закончится предыдущая. -- [color=#a4885c]Stop:[/color] -Stops the current attempt. + - [color=#a4885c]Стоп:[/color] + Останавливает текущий процесс. -- [color=#a4885c]Item:[/color] -Ejects the item. + - [color=#a4885c]объъект:[/color] + Извлекает предмет. diff --git a/Resources/ServerInfo/Rules.txt b/Resources/ServerInfo/Rules.txt index c16976b944..0382bf6679 100644 --- a/Resources/ServerInfo/Rules.txt +++ b/Resources/ServerInfo/Rules.txt @@ -1,4 +1,4 @@ -[color=#ff0000]YOU MUST BE AT LEAST 17 YEARS OF AGE TO PLAY ON DELTA-V SERVERS. ANY USERS SUSPECTED OF BEING UNDER 17 YEARS OF AGE WILL BE BANNED UNTIL THEY ARE OF AGE.[/color] +[color=#ff0000]YOU MUST BE AT LEAST 17 YEARS OF AGE TO PLAY ON DELTA-V SERVERS. ANY USERS SUSPECTED OF BEING UNDER 17 YEARS OF AGE WILL BE BANNED UNTIL THEY ARE OF AGE.[/color] [color=#ff0000]DISCONNECTING FROM OR IGNORING/EVADING ADMIN-HELPS WILL RESULT IN AN APPEAL ONLY BAN.[/color] diff --git a/Resources/Textures/DeltaV/Interface/Misc/job_icons.rsi/Prosecutor.png b/Resources/Textures/DeltaV/Interface/Misc/job_icons.rsi/Prosecutor.png index d1ee86786c..5a7c02ba7b 100644 Binary files a/Resources/Textures/DeltaV/Interface/Misc/job_icons.rsi/Prosecutor.png and b/Resources/Textures/DeltaV/Interface/Misc/job_icons.rsi/Prosecutor.png differ diff --git a/Resources/Textures/Interface/Alerts/Abilities/silenced-icon.png b/Resources/Textures/Interface/Alerts/Abilities/silenced-icon.png new file mode 100644 index 0000000000..4ae0cc0f9c Binary files /dev/null and b/Resources/Textures/Interface/Alerts/Abilities/silenced-icon.png differ diff --git a/Resources/Textures/Interface/Alerts/Buckle/buckled.png b/Resources/Textures/Interface/Alerts/Buckle/buckled.png index 7a656da45d..0b2b0a72d6 100644 Binary files a/Resources/Textures/Interface/Alerts/Buckle/buckled.png and b/Resources/Textures/Interface/Alerts/Buckle/buckled.png differ diff --git a/Resources/Textures/Interface/Alerts/Fire/fire-icon.png b/Resources/Textures/Interface/Alerts/Fire/fire-icon.png new file mode 100644 index 0000000000..a80a1da0bd Binary files /dev/null and b/Resources/Textures/Interface/Alerts/Fire/fire-icon.png differ diff --git a/Resources/Textures/Interface/Alerts/Fire/fire.png b/Resources/Textures/Interface/Alerts/Fire/fire.png index cf65084e44..acd0f5dd41 100644 Binary files a/Resources/Textures/Interface/Alerts/Fire/fire.png and b/Resources/Textures/Interface/Alerts/Fire/fire.png differ diff --git a/Resources/Textures/Interface/Alerts/Handcuffed/Handcuffed.png b/Resources/Textures/Interface/Alerts/Handcuffed/Handcuffed.png index 3536af53b2..1224bb5f55 100644 Binary files a/Resources/Textures/Interface/Alerts/Handcuffed/Handcuffed.png and b/Resources/Textures/Interface/Alerts/Handcuffed/Handcuffed.png differ diff --git a/Resources/Textures/Interface/Alerts/Pull/pulled.png b/Resources/Textures/Interface/Alerts/Pull/pulled.png index 9c148fe459..451aac1e89 100644 Binary files a/Resources/Textures/Interface/Alerts/Pull/pulled.png and b/Resources/Textures/Interface/Alerts/Pull/pulled.png differ diff --git a/Resources/Textures/Interface/Alerts/Pull/pulling.png b/Resources/Textures/Interface/Alerts/Pull/pulling.png index d57f12cd63..59aa467bdf 100644 Binary files a/Resources/Textures/Interface/Alerts/Pull/pulling.png and b/Resources/Textures/Interface/Alerts/Pull/pulling.png differ diff --git a/Resources/Textures/Interface/Alerts/Weightless/weightless.png b/Resources/Textures/Interface/Alerts/Weightless/weightless.png index 87e541084e..538e5ea17b 100644 Binary files a/Resources/Textures/Interface/Alerts/Weightless/weightless.png and b/Resources/Textures/Interface/Alerts/Weightless/weightless.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery-none.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery-none.png index 170a6319f9..777bfc4b90 100644 Binary files a/Resources/Textures/Interface/Alerts/battery.rsi/battery-none.png and b/Resources/Textures/Interface/Alerts/battery.rsi/battery-none.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery0.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery0.png index 8bae5758a3..adbf4569c0 100644 Binary files a/Resources/Textures/Interface/Alerts/battery.rsi/battery0.png and b/Resources/Textures/Interface/Alerts/battery.rsi/battery0.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery1.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery1.png index 353e1f0f0d..9577b3aa2a 100644 Binary files a/Resources/Textures/Interface/Alerts/battery.rsi/battery1.png and b/Resources/Textures/Interface/Alerts/battery.rsi/battery1.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery10.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery10.png index 63a089f661..5442db37b4 100644 Binary files a/Resources/Textures/Interface/Alerts/battery.rsi/battery10.png and b/Resources/Textures/Interface/Alerts/battery.rsi/battery10.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery2.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery2.png index bc45573d79..980819a56d 100644 Binary files a/Resources/Textures/Interface/Alerts/battery.rsi/battery2.png and b/Resources/Textures/Interface/Alerts/battery.rsi/battery2.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery3.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery3.png index 87544db8ab..580db681a7 100644 Binary files a/Resources/Textures/Interface/Alerts/battery.rsi/battery3.png and b/Resources/Textures/Interface/Alerts/battery.rsi/battery3.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery4.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery4.png index 32f93d31bb..e69f26aa79 100644 Binary files a/Resources/Textures/Interface/Alerts/battery.rsi/battery4.png and b/Resources/Textures/Interface/Alerts/battery.rsi/battery4.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery5.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery5.png index 871c727f1b..243bbe0f47 100644 Binary files a/Resources/Textures/Interface/Alerts/battery.rsi/battery5.png and b/Resources/Textures/Interface/Alerts/battery.rsi/battery5.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery6.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery6.png index c8d11dab42..785b0726b4 100644 Binary files a/Resources/Textures/Interface/Alerts/battery.rsi/battery6.png and b/Resources/Textures/Interface/Alerts/battery.rsi/battery6.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery7.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery7.png index 801b443092..b1aeb6ab9d 100644 Binary files a/Resources/Textures/Interface/Alerts/battery.rsi/battery7.png and b/Resources/Textures/Interface/Alerts/battery.rsi/battery7.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery8.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery8.png index 0ea2576e91..af93cb730f 100644 Binary files a/Resources/Textures/Interface/Alerts/battery.rsi/battery8.png and b/Resources/Textures/Interface/Alerts/battery.rsi/battery8.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery9.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery9.png index 6a943e786f..a8089926e4 100644 Binary files a/Resources/Textures/Interface/Alerts/battery.rsi/battery9.png and b/Resources/Textures/Interface/Alerts/battery.rsi/battery9.png differ diff --git a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed0.png b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed0.png index 585a1b0362..99592fa046 100644 Binary files a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed0.png and b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed0.png differ diff --git a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed1.png b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed1.png index d67ab166f1..325c3e457b 100644 Binary files a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed1.png and b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed1.png differ diff --git a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed10.png b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed10.png index 0ab9811c50..5cce32f145 100644 Binary files a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed10.png and b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed10.png differ diff --git a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed2.png b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed2.png index 862991acfd..f96d4025a9 100644 Binary files a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed2.png and b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed2.png differ diff --git a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed3.png b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed3.png index 425d6c3059..a8239db096 100644 Binary files a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed3.png and b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed3.png differ diff --git a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed4.png b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed4.png index 6e7659bb27..06119e98d2 100644 Binary files a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed4.png and b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed4.png differ diff --git a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed5.png b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed5.png index 9a610823ec..4454c166e7 100644 Binary files a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed5.png and b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed5.png differ diff --git a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed6.png b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed6.png index 053e68c29a..aefd858e51 100644 Binary files a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed6.png and b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed6.png differ diff --git a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed7.png b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed7.png index 30ecea6cfc..1d6437711a 100644 Binary files a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed7.png and b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed7.png differ diff --git a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed8.png b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed8.png index a8d953b8b3..0cc62cc224 100644 Binary files a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed8.png and b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed8.png differ diff --git a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed9.png b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed9.png index 19bc674fa5..cb97bca6a8 100644 Binary files a/Resources/Textures/Interface/Alerts/bleed.rsi/bleed9.png and b/Resources/Textures/Interface/Alerts/bleed.rsi/bleed9.png differ diff --git a/Resources/Textures/Interface/Alerts/bleed.rsi/meta.json b/Resources/Textures/Interface/Alerts/bleed.rsi/meta.json index b2412dd47f..572c7ac175 100644 --- a/Resources/Textures/Interface/Alerts/bleed.rsi/meta.json +++ b/Resources/Textures/Interface/Alerts/bleed.rsi/meta.json @@ -5,40 +5,73 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Edited by Flareguy for Space Station 14, original sprite taken from https://github.com/tgstation/tgstation/blob/master/icons/effects/bleed.dmi", + "copyright": "Draw by Skilets: https://github.com/Skilets", "states": [ { - "name": "bleed0" + "name": "bleed0", + "delays": [ + [0.5, 0.5] + ] }, { - "name": "bleed1" + "name": "bleed1", + "delays": [ + [0.5, 0.5] + ] }, { - "name": "bleed2" + "name": "bleed2", + "delays": [ + [0.5, 0.5] + ] }, { - "name": "bleed3" + "name": "bleed3", + "delays": [ + [0.4, 0.4] + ] }, { - "name": "bleed4" + "name": "bleed4", + "delays": [ + [0.4, 0.4] + ] }, { - "name": "bleed5" + "name": "bleed5", + "delays": [ + [0.4, 0.4] + ] }, { - "name": "bleed6" + "name": "bleed6", + "delays": [ + [0.4, 0.4] + ] }, { - "name": "bleed7" + "name": "bleed7", + "delays": [ + [0.3, 0.3] + ] }, { - "name": "bleed8" + "name": "bleed8", + "delays": [ + [0.3, 0.3] + ] }, { - "name": "bleed9" + "name": "bleed9", + "delays": [ + [0.3, 0.3] + ] }, { - "name": "bleed10" + "name": "bleed10", + "delays": [ + [0.3, 0.3] + ] } ] } diff --git a/Resources/Textures/Interface/Alerts/borg_alive.rsi/health0.png b/Resources/Textures/Interface/Alerts/borg_alive.rsi/health0.png index ab8c3ac9ca..a091f2bb39 100644 Binary files a/Resources/Textures/Interface/Alerts/borg_alive.rsi/health0.png and b/Resources/Textures/Interface/Alerts/borg_alive.rsi/health0.png differ diff --git a/Resources/Textures/Interface/Alerts/borg_alive.rsi/health1.png b/Resources/Textures/Interface/Alerts/borg_alive.rsi/health1.png index 507f254882..5ac93372e9 100644 Binary files a/Resources/Textures/Interface/Alerts/borg_alive.rsi/health1.png and b/Resources/Textures/Interface/Alerts/borg_alive.rsi/health1.png differ diff --git a/Resources/Textures/Interface/Alerts/borg_alive.rsi/health2.png b/Resources/Textures/Interface/Alerts/borg_alive.rsi/health2.png index 160f153af8..9ffdd0e348 100644 Binary files a/Resources/Textures/Interface/Alerts/borg_alive.rsi/health2.png and b/Resources/Textures/Interface/Alerts/borg_alive.rsi/health2.png differ diff --git a/Resources/Textures/Interface/Alerts/borg_alive.rsi/health3.png b/Resources/Textures/Interface/Alerts/borg_alive.rsi/health3.png index be9ff364eb..b7e8bb57d6 100644 Binary files a/Resources/Textures/Interface/Alerts/borg_alive.rsi/health3.png and b/Resources/Textures/Interface/Alerts/borg_alive.rsi/health3.png differ diff --git a/Resources/Textures/Interface/Alerts/borg_alive.rsi/health4.png b/Resources/Textures/Interface/Alerts/borg_alive.rsi/health4.png index 1ef65e48a0..ae0546f5c6 100644 Binary files a/Resources/Textures/Interface/Alerts/borg_alive.rsi/health4.png and b/Resources/Textures/Interface/Alerts/borg_alive.rsi/health4.png differ diff --git a/Resources/Textures/Interface/Alerts/borg_critical.rsi/critical.png b/Resources/Textures/Interface/Alerts/borg_critical.rsi/critical.png index cd11538d50..63c96ee7af 100644 Binary files a/Resources/Textures/Interface/Alerts/borg_critical.rsi/critical.png and b/Resources/Textures/Interface/Alerts/borg_critical.rsi/critical.png differ diff --git a/Resources/Textures/Interface/Alerts/borg_dead.rsi/dead.png b/Resources/Textures/Interface/Alerts/borg_dead.rsi/dead.png index c060f9b180..f9a4460406 100644 Binary files a/Resources/Textures/Interface/Alerts/borg_dead.rsi/dead.png and b/Resources/Textures/Interface/Alerts/borg_dead.rsi/dead.png differ diff --git a/Resources/Textures/Interface/Alerts/breathing.rsi/not_enough_co2.png b/Resources/Textures/Interface/Alerts/breathing.rsi/not_enough_co2.png index 179f6ffc51..dc510018c9 100644 Binary files a/Resources/Textures/Interface/Alerts/breathing.rsi/not_enough_co2.png and b/Resources/Textures/Interface/Alerts/breathing.rsi/not_enough_co2.png differ diff --git a/Resources/Textures/Interface/Alerts/breathing.rsi/not_enough_nitro.png b/Resources/Textures/Interface/Alerts/breathing.rsi/not_enough_nitro.png index 1c62fcc845..68b296fe66 100644 Binary files a/Resources/Textures/Interface/Alerts/breathing.rsi/not_enough_nitro.png and b/Resources/Textures/Interface/Alerts/breathing.rsi/not_enough_nitro.png differ diff --git a/Resources/Textures/Interface/Alerts/breathing.rsi/not_enough_oxy.png b/Resources/Textures/Interface/Alerts/breathing.rsi/not_enough_oxy.png index df42778d93..30b977d049 100644 Binary files a/Resources/Textures/Interface/Alerts/breathing.rsi/not_enough_oxy.png and b/Resources/Textures/Interface/Alerts/breathing.rsi/not_enough_oxy.png differ diff --git a/Resources/Textures/Interface/Alerts/breathing.rsi/not_enough_tox.png b/Resources/Textures/Interface/Alerts/breathing.rsi/not_enough_tox.png index f5a8ef2a68..277fbaa0cf 100644 Binary files a/Resources/Textures/Interface/Alerts/breathing.rsi/not_enough_tox.png and b/Resources/Textures/Interface/Alerts/breathing.rsi/not_enough_tox.png differ diff --git a/Resources/Textures/Interface/Alerts/breathing.rsi/too_much_co2.png b/Resources/Textures/Interface/Alerts/breathing.rsi/too_much_co2.png index 5d600f45f4..8125fd5666 100644 Binary files a/Resources/Textures/Interface/Alerts/breathing.rsi/too_much_co2.png and b/Resources/Textures/Interface/Alerts/breathing.rsi/too_much_co2.png differ diff --git a/Resources/Textures/Interface/Alerts/breathing.rsi/too_much_nitro.png b/Resources/Textures/Interface/Alerts/breathing.rsi/too_much_nitro.png index 743260a34b..b147ee4bbd 100644 Binary files a/Resources/Textures/Interface/Alerts/breathing.rsi/too_much_nitro.png and b/Resources/Textures/Interface/Alerts/breathing.rsi/too_much_nitro.png differ diff --git a/Resources/Textures/Interface/Alerts/breathing.rsi/too_much_oxy.png b/Resources/Textures/Interface/Alerts/breathing.rsi/too_much_oxy.png index bf8d976e2f..1477d8a6c6 100644 Binary files a/Resources/Textures/Interface/Alerts/breathing.rsi/too_much_oxy.png and b/Resources/Textures/Interface/Alerts/breathing.rsi/too_much_oxy.png differ diff --git a/Resources/Textures/Interface/Alerts/breathing.rsi/too_much_tox.png b/Resources/Textures/Interface/Alerts/breathing.rsi/too_much_tox.png index 08773270d6..2f38fea600 100644 Binary files a/Resources/Textures/Interface/Alerts/breathing.rsi/too_much_tox.png and b/Resources/Textures/Interface/Alerts/breathing.rsi/too_much_tox.png differ diff --git a/Resources/Textures/Interface/Alerts/ensnared.rsi/ensnared.png b/Resources/Textures/Interface/Alerts/ensnared.rsi/ensnared.png index 166d05221e..88fe89a4fb 100644 Binary files a/Resources/Textures/Interface/Alerts/ensnared.rsi/ensnared.png and b/Resources/Textures/Interface/Alerts/ensnared.rsi/ensnared.png differ diff --git a/Resources/Textures/Interface/Alerts/human_alive.rsi/health0.png b/Resources/Textures/Interface/Alerts/human_alive.rsi/health0.png index 6c9b54e52e..cc43b0c502 100644 Binary files a/Resources/Textures/Interface/Alerts/human_alive.rsi/health0.png and b/Resources/Textures/Interface/Alerts/human_alive.rsi/health0.png differ diff --git a/Resources/Textures/Interface/Alerts/human_alive.rsi/health1.png b/Resources/Textures/Interface/Alerts/human_alive.rsi/health1.png index 186d07386e..7e0da7be63 100644 Binary files a/Resources/Textures/Interface/Alerts/human_alive.rsi/health1.png and b/Resources/Textures/Interface/Alerts/human_alive.rsi/health1.png differ diff --git a/Resources/Textures/Interface/Alerts/human_alive.rsi/health2.png b/Resources/Textures/Interface/Alerts/human_alive.rsi/health2.png index 6463eb386f..31af658ce9 100644 Binary files a/Resources/Textures/Interface/Alerts/human_alive.rsi/health2.png and b/Resources/Textures/Interface/Alerts/human_alive.rsi/health2.png differ diff --git a/Resources/Textures/Interface/Alerts/human_alive.rsi/health3.png b/Resources/Textures/Interface/Alerts/human_alive.rsi/health3.png index d7b8d559ef..ef56e87f13 100644 Binary files a/Resources/Textures/Interface/Alerts/human_alive.rsi/health3.png and b/Resources/Textures/Interface/Alerts/human_alive.rsi/health3.png differ diff --git a/Resources/Textures/Interface/Alerts/human_alive.rsi/health4.png b/Resources/Textures/Interface/Alerts/human_alive.rsi/health4.png index fea96e5604..9b74b7b59d 100644 Binary files a/Resources/Textures/Interface/Alerts/human_alive.rsi/health4.png and b/Resources/Textures/Interface/Alerts/human_alive.rsi/health4.png differ diff --git a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/alive.png b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/alive.png index 69351e41b8..4e60951f0a 100644 Binary files a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/alive.png and b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/alive.png differ diff --git a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/critical.png b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/critical.png index f2a58e1ffe..6b66e16111 100644 Binary files a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/critical.png and b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/critical.png differ diff --git a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/dead.png b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/dead.png index c3dfe488d6..79676fc3be 100644 Binary files a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/dead.png and b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/dead.png differ diff --git a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health0.png b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health0.png index 755c74eba5..33a6ea9911 100644 Binary files a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health0.png and b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health0.png differ diff --git a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health1.png b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health1.png index 41ff5b21a1..963cdc00e9 100644 Binary files a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health1.png and b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health1.png differ diff --git a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health2.png b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health2.png index cfe5441127..dbd55b49b5 100644 Binary files a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health2.png and b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health2.png differ diff --git a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health3.png b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health3.png index b82f46e453..f3244803a6 100644 Binary files a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health3.png and b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health3.png differ diff --git a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health4.png b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health4.png index d371bb2a14..dd49448771 100644 Binary files a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health4.png and b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health4.png differ diff --git a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/meta.json b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/meta.json index e95420f02c..a4d93c6c92 100644 --- a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/meta.json +++ b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/meta.json @@ -11,7 +11,13 @@ "name": "alive" }, { - "name": "dead" + "name": "dead", + "delays": [ + [ + 0.35, + 0.35 + ] + ] }, { "name": "health0" diff --git a/Resources/Textures/Interface/Alerts/human_critical.rsi/critical.png b/Resources/Textures/Interface/Alerts/human_critical.rsi/critical.png index 9ef1894cf5..df1b19ca64 100644 Binary files a/Resources/Textures/Interface/Alerts/human_critical.rsi/critical.png and b/Resources/Textures/Interface/Alerts/human_critical.rsi/critical.png differ diff --git a/Resources/Textures/Interface/Alerts/human_dead.rsi/dead.png b/Resources/Textures/Interface/Alerts/human_dead.rsi/dead.png index 4604cf7bd0..6b4185a346 100644 Binary files a/Resources/Textures/Interface/Alerts/human_dead.rsi/dead.png and b/Resources/Textures/Interface/Alerts/human_dead.rsi/dead.png differ diff --git a/Resources/Textures/Interface/Alerts/hunger.rsi/overfed.png b/Resources/Textures/Interface/Alerts/hunger.rsi/overfed.png index 04ed003e05..83df06bff3 100644 Binary files a/Resources/Textures/Interface/Alerts/hunger.rsi/overfed.png and b/Resources/Textures/Interface/Alerts/hunger.rsi/overfed.png differ diff --git a/Resources/Textures/Interface/Alerts/hunger.rsi/peckish.png b/Resources/Textures/Interface/Alerts/hunger.rsi/peckish.png index e7f7d08a22..cf9c93009c 100644 Binary files a/Resources/Textures/Interface/Alerts/hunger.rsi/peckish.png and b/Resources/Textures/Interface/Alerts/hunger.rsi/peckish.png differ diff --git a/Resources/Textures/Interface/Alerts/hunger.rsi/starving.png b/Resources/Textures/Interface/Alerts/hunger.rsi/starving.png index f9d9f14907..2c06223709 100644 Binary files a/Resources/Textures/Interface/Alerts/hunger.rsi/starving.png and b/Resources/Textures/Interface/Alerts/hunger.rsi/starving.png differ diff --git a/Resources/Textures/Interface/Alerts/internals.rsi/internal0.png b/Resources/Textures/Interface/Alerts/internals.rsi/internal0.png index 95c4644ec0..90f2a03aa4 100644 Binary files a/Resources/Textures/Interface/Alerts/internals.rsi/internal0.png and b/Resources/Textures/Interface/Alerts/internals.rsi/internal0.png differ diff --git a/Resources/Textures/Interface/Alerts/internals.rsi/internal1.png b/Resources/Textures/Interface/Alerts/internals.rsi/internal1.png index 7ee4c9de7c..244284e011 100644 Binary files a/Resources/Textures/Interface/Alerts/internals.rsi/internal1.png and b/Resources/Textures/Interface/Alerts/internals.rsi/internal1.png differ diff --git a/Resources/Textures/Interface/Alerts/internals.rsi/internal2.png b/Resources/Textures/Interface/Alerts/internals.rsi/internal2.png index 401c72e3c0..1e104b0989 100644 Binary files a/Resources/Textures/Interface/Alerts/internals.rsi/internal2.png and b/Resources/Textures/Interface/Alerts/internals.rsi/internal2.png differ diff --git a/Resources/Textures/Interface/Alerts/mood.rsi/mood1.png b/Resources/Textures/Interface/Alerts/mood.rsi/mood1.png index ae1e1386db..f079bb2b9e 100644 Binary files a/Resources/Textures/Interface/Alerts/mood.rsi/mood1.png and b/Resources/Textures/Interface/Alerts/mood.rsi/mood1.png differ diff --git a/Resources/Textures/Interface/Alerts/mood.rsi/mood2.png b/Resources/Textures/Interface/Alerts/mood.rsi/mood2.png index 41be928f02..5b0c8ea1ed 100644 Binary files a/Resources/Textures/Interface/Alerts/mood.rsi/mood2.png and b/Resources/Textures/Interface/Alerts/mood.rsi/mood2.png differ diff --git a/Resources/Textures/Interface/Alerts/mood.rsi/mood3.png b/Resources/Textures/Interface/Alerts/mood.rsi/mood3.png index 179991e198..ac04371b5f 100644 Binary files a/Resources/Textures/Interface/Alerts/mood.rsi/mood3.png and b/Resources/Textures/Interface/Alerts/mood.rsi/mood3.png differ diff --git a/Resources/Textures/Interface/Alerts/mood.rsi/mood4.png b/Resources/Textures/Interface/Alerts/mood.rsi/mood4.png index 4ea7d70117..aa3fa25f9e 100644 Binary files a/Resources/Textures/Interface/Alerts/mood.rsi/mood4.png and b/Resources/Textures/Interface/Alerts/mood.rsi/mood4.png differ diff --git a/Resources/Textures/Interface/Alerts/mood.rsi/mood5.png b/Resources/Textures/Interface/Alerts/mood.rsi/mood5.png index c4c3370f62..17141758e8 100644 Binary files a/Resources/Textures/Interface/Alerts/mood.rsi/mood5.png and b/Resources/Textures/Interface/Alerts/mood.rsi/mood5.png differ diff --git a/Resources/Textures/Interface/Alerts/mood.rsi/mood6.png b/Resources/Textures/Interface/Alerts/mood.rsi/mood6.png index 388483e143..bc72b81792 100644 Binary files a/Resources/Textures/Interface/Alerts/mood.rsi/mood6.png and b/Resources/Textures/Interface/Alerts/mood.rsi/mood6.png differ diff --git a/Resources/Textures/Interface/Alerts/mood.rsi/mood7.png b/Resources/Textures/Interface/Alerts/mood.rsi/mood7.png index b4f944d045..7f03bb9464 100644 Binary files a/Resources/Textures/Interface/Alerts/mood.rsi/mood7.png and b/Resources/Textures/Interface/Alerts/mood.rsi/mood7.png differ diff --git a/Resources/Textures/Interface/Alerts/mood.rsi/mood8.png b/Resources/Textures/Interface/Alerts/mood.rsi/mood8.png index f12f71b7ff..517955802c 100644 Binary files a/Resources/Textures/Interface/Alerts/mood.rsi/mood8.png and b/Resources/Textures/Interface/Alerts/mood.rsi/mood8.png differ diff --git a/Resources/Textures/Interface/Alerts/mood.rsi/mood9.png b/Resources/Textures/Interface/Alerts/mood.rsi/mood9.png index e65c650149..ddf1906baa 100644 Binary files a/Resources/Textures/Interface/Alerts/mood.rsi/mood9.png and b/Resources/Textures/Interface/Alerts/mood.rsi/mood9.png differ diff --git a/Resources/Textures/Interface/Alerts/mood.rsi/mood_happiness_bad.png b/Resources/Textures/Interface/Alerts/mood.rsi/mood_happiness_bad.png index 4ed8f4d68f..63701ae176 100644 Binary files a/Resources/Textures/Interface/Alerts/mood.rsi/mood_happiness_bad.png and b/Resources/Textures/Interface/Alerts/mood.rsi/mood_happiness_bad.png differ diff --git a/Resources/Textures/Interface/Alerts/mood.rsi/mood_happiness_good.png b/Resources/Textures/Interface/Alerts/mood.rsi/mood_happiness_good.png index eb9943a301..b8f26b7a93 100644 Binary files a/Resources/Textures/Interface/Alerts/mood.rsi/mood_happiness_good.png and b/Resources/Textures/Interface/Alerts/mood.rsi/mood_happiness_good.png differ diff --git a/Resources/Textures/Interface/Alerts/mood.rsi/mood_insane.png b/Resources/Textures/Interface/Alerts/mood.rsi/mood_insane.png index b2407bbdad..2d0412ff27 100644 Binary files a/Resources/Textures/Interface/Alerts/mood.rsi/mood_insane.png and b/Resources/Textures/Interface/Alerts/mood.rsi/mood_insane.png differ diff --git a/Resources/Textures/Interface/Alerts/offer_item.rsi/meta.json b/Resources/Textures/Interface/Alerts/offer_item.rsi/meta.json index 9b5f936131..8096d009f8 100644 --- a/Resources/Textures/Interface/Alerts/offer_item.rsi/meta.json +++ b/Resources/Textures/Interface/Alerts/offer_item.rsi/meta.json @@ -8,7 +8,13 @@ }, "states": [ { - "name": "offer_item" + "name": "offer_item", + "delays": [ + [ + 0.5, + 0.5 + ] + ] } ] } diff --git a/Resources/Textures/Interface/Alerts/offer_item.rsi/offer_item.png b/Resources/Textures/Interface/Alerts/offer_item.rsi/offer_item.png index 44ac380ddb..ff59184a51 100644 Binary files a/Resources/Textures/Interface/Alerts/offer_item.rsi/offer_item.png and b/Resources/Textures/Interface/Alerts/offer_item.rsi/offer_item.png differ diff --git a/Resources/Textures/Interface/Alerts/pacified.rsi/icon.png b/Resources/Textures/Interface/Alerts/pacified.rsi/icon.png index 3fc61bdabe..9abebad993 100644 Binary files a/Resources/Textures/Interface/Alerts/pacified.rsi/icon.png and b/Resources/Textures/Interface/Alerts/pacified.rsi/icon.png differ diff --git a/Resources/Textures/Interface/Alerts/piloting.png b/Resources/Textures/Interface/Alerts/piloting.png index 3368d6dca1..915114a25e 100644 Binary files a/Resources/Textures/Interface/Alerts/piloting.png and b/Resources/Textures/Interface/Alerts/piloting.png differ diff --git a/Resources/Textures/Interface/Alerts/pressure.rsi/highpressure1.png b/Resources/Textures/Interface/Alerts/pressure.rsi/highpressure1.png index 92c8aa0eb2..2da0991561 100644 Binary files a/Resources/Textures/Interface/Alerts/pressure.rsi/highpressure1.png and b/Resources/Textures/Interface/Alerts/pressure.rsi/highpressure1.png differ diff --git a/Resources/Textures/Interface/Alerts/pressure.rsi/highpressure2.png b/Resources/Textures/Interface/Alerts/pressure.rsi/highpressure2.png index 34cc305c84..aafcfba723 100644 Binary files a/Resources/Textures/Interface/Alerts/pressure.rsi/highpressure2.png and b/Resources/Textures/Interface/Alerts/pressure.rsi/highpressure2.png differ diff --git a/Resources/Textures/Interface/Alerts/pressure.rsi/lowpressure1.png b/Resources/Textures/Interface/Alerts/pressure.rsi/lowpressure1.png index 6cf5f379b9..00f801477c 100644 Binary files a/Resources/Textures/Interface/Alerts/pressure.rsi/lowpressure1.png and b/Resources/Textures/Interface/Alerts/pressure.rsi/lowpressure1.png differ diff --git a/Resources/Textures/Interface/Alerts/pressure.rsi/lowpressure2.png b/Resources/Textures/Interface/Alerts/pressure.rsi/lowpressure2.png index 3c266180be..f4bec57ce2 100644 Binary files a/Resources/Textures/Interface/Alerts/pressure.rsi/lowpressure2.png and b/Resources/Textures/Interface/Alerts/pressure.rsi/lowpressure2.png differ diff --git a/Resources/Textures/Interface/Alerts/stamina.rsi/stamina0.png b/Resources/Textures/Interface/Alerts/stamina.rsi/stamina0.png index 10e3e8c956..a2e24e1110 100644 Binary files a/Resources/Textures/Interface/Alerts/stamina.rsi/stamina0.png and b/Resources/Textures/Interface/Alerts/stamina.rsi/stamina0.png differ diff --git a/Resources/Textures/Interface/Alerts/stamina.rsi/stamina1.png b/Resources/Textures/Interface/Alerts/stamina.rsi/stamina1.png index a34d57cf26..f6d36747fb 100644 Binary files a/Resources/Textures/Interface/Alerts/stamina.rsi/stamina1.png and b/Resources/Textures/Interface/Alerts/stamina.rsi/stamina1.png differ diff --git a/Resources/Textures/Interface/Alerts/stamina.rsi/stamina2.png b/Resources/Textures/Interface/Alerts/stamina.rsi/stamina2.png index a3d263d751..f6a49d6630 100644 Binary files a/Resources/Textures/Interface/Alerts/stamina.rsi/stamina2.png and b/Resources/Textures/Interface/Alerts/stamina.rsi/stamina2.png differ diff --git a/Resources/Textures/Interface/Alerts/stamina.rsi/stamina3.png b/Resources/Textures/Interface/Alerts/stamina.rsi/stamina3.png index 356916dfe0..44b468fb81 100644 Binary files a/Resources/Textures/Interface/Alerts/stamina.rsi/stamina3.png and b/Resources/Textures/Interface/Alerts/stamina.rsi/stamina3.png differ diff --git a/Resources/Textures/Interface/Alerts/stamina.rsi/stamina4.png b/Resources/Textures/Interface/Alerts/stamina.rsi/stamina4.png index d0645f4ebd..aadf8a5f8f 100644 Binary files a/Resources/Textures/Interface/Alerts/stamina.rsi/stamina4.png and b/Resources/Textures/Interface/Alerts/stamina.rsi/stamina4.png differ diff --git a/Resources/Textures/Interface/Alerts/stamina.rsi/stamina5.png b/Resources/Textures/Interface/Alerts/stamina.rsi/stamina5.png index 46f439dfd5..8139203082 100644 Binary files a/Resources/Textures/Interface/Alerts/stamina.rsi/stamina5.png and b/Resources/Textures/Interface/Alerts/stamina.rsi/stamina5.png differ diff --git a/Resources/Textures/Interface/Alerts/stamina.rsi/stamina6.png b/Resources/Textures/Interface/Alerts/stamina.rsi/stamina6.png index bbcba3803c..87a1dccf5f 100644 Binary files a/Resources/Textures/Interface/Alerts/stamina.rsi/stamina6.png and b/Resources/Textures/Interface/Alerts/stamina.rsi/stamina6.png differ diff --git a/Resources/Textures/Interface/Alerts/temperature.rsi/cold1.png b/Resources/Textures/Interface/Alerts/temperature.rsi/cold1.png index b1c09293ba..0ab2d81727 100644 Binary files a/Resources/Textures/Interface/Alerts/temperature.rsi/cold1.png and b/Resources/Textures/Interface/Alerts/temperature.rsi/cold1.png differ diff --git a/Resources/Textures/Interface/Alerts/temperature.rsi/cold2.png b/Resources/Textures/Interface/Alerts/temperature.rsi/cold2.png index 3ba601625a..60786a34ba 100644 Binary files a/Resources/Textures/Interface/Alerts/temperature.rsi/cold2.png and b/Resources/Textures/Interface/Alerts/temperature.rsi/cold2.png differ diff --git a/Resources/Textures/Interface/Alerts/temperature.rsi/cold3.png b/Resources/Textures/Interface/Alerts/temperature.rsi/cold3.png index b20875afff..6ce84b02ee 100644 Binary files a/Resources/Textures/Interface/Alerts/temperature.rsi/cold3.png and b/Resources/Textures/Interface/Alerts/temperature.rsi/cold3.png differ diff --git a/Resources/Textures/Interface/Alerts/temperature.rsi/hot1.png b/Resources/Textures/Interface/Alerts/temperature.rsi/hot1.png index ee13775054..1e347f735a 100644 Binary files a/Resources/Textures/Interface/Alerts/temperature.rsi/hot1.png and b/Resources/Textures/Interface/Alerts/temperature.rsi/hot1.png differ diff --git a/Resources/Textures/Interface/Alerts/temperature.rsi/hot2.png b/Resources/Textures/Interface/Alerts/temperature.rsi/hot2.png index c23d5859b4..52df74d437 100644 Binary files a/Resources/Textures/Interface/Alerts/temperature.rsi/hot2.png and b/Resources/Textures/Interface/Alerts/temperature.rsi/hot2.png differ diff --git a/Resources/Textures/Interface/Alerts/temperature.rsi/hot3.png b/Resources/Textures/Interface/Alerts/temperature.rsi/hot3.png index df70e373e8..3895ab8d82 100644 Binary files a/Resources/Textures/Interface/Alerts/temperature.rsi/hot3.png and b/Resources/Textures/Interface/Alerts/temperature.rsi/hot3.png differ diff --git a/Resources/Textures/Interface/Alerts/thirst.rsi/overhydrated.png b/Resources/Textures/Interface/Alerts/thirst.rsi/overhydrated.png index eda3395820..7f4645016b 100644 Binary files a/Resources/Textures/Interface/Alerts/thirst.rsi/overhydrated.png and b/Resources/Textures/Interface/Alerts/thirst.rsi/overhydrated.png differ diff --git a/Resources/Textures/Interface/Alerts/thirst.rsi/parched.png b/Resources/Textures/Interface/Alerts/thirst.rsi/parched.png index 411e633b59..a80d1abf3e 100644 Binary files a/Resources/Textures/Interface/Alerts/thirst.rsi/parched.png and b/Resources/Textures/Interface/Alerts/thirst.rsi/parched.png differ diff --git a/Resources/Textures/Interface/Alerts/thirst.rsi/thirsty.png b/Resources/Textures/Interface/Alerts/thirst.rsi/thirsty.png index fc7de1c9fa..8937fd2abd 100644 Binary files a/Resources/Textures/Interface/Alerts/thirst.rsi/thirsty.png and b/Resources/Textures/Interface/Alerts/thirst.rsi/thirsty.png differ diff --git a/Resources/Textures/Interface/Alerts/walking.rsi/walking0.png b/Resources/Textures/Interface/Alerts/walking.rsi/walking0.png index 1d1f048fb9..3c285aef4f 100644 Binary files a/Resources/Textures/Interface/Alerts/walking.rsi/walking0.png and b/Resources/Textures/Interface/Alerts/walking.rsi/walking0.png differ diff --git a/Resources/Textures/Interface/Alerts/walking.rsi/walking1.png b/Resources/Textures/Interface/Alerts/walking.rsi/walking1.png index 3980ee73b5..d26905cf63 100644 Binary files a/Resources/Textures/Interface/Alerts/walking.rsi/walking1.png and b/Resources/Textures/Interface/Alerts/walking.rsi/walking1.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/MedicalIntern.png b/Resources/Textures/Interface/Misc/job_icons.rsi/MedicalIntern.png index 80e1a9b2ff..f138fbaf33 100644 Binary files a/Resources/Textures/Interface/Misc/job_icons.rsi/MedicalIntern.png and b/Resources/Textures/Interface/Misc/job_icons.rsi/MedicalIntern.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/SecurityCadet.png b/Resources/Textures/Interface/Misc/job_icons.rsi/SecurityCadet.png index a35685ba32..a2b796ca52 100644 Binary files a/Resources/Textures/Interface/Misc/job_icons.rsi/SecurityCadet.png and b/Resources/Textures/Interface/Misc/job_icons.rsi/SecurityCadet.png differ diff --git a/Resources/Textures/Interface/Misc/security_icons.rsi/hud_discharged.png b/Resources/Textures/Interface/Misc/security_icons.rsi/hud_discharged.png index 2e012349e0..0170618e6c 100644 Binary files a/Resources/Textures/Interface/Misc/security_icons.rsi/hud_discharged.png and b/Resources/Textures/Interface/Misc/security_icons.rsi/hud_discharged.png differ diff --git a/Resources/Textures/Interface/Misc/security_icons.rsi/hud_paroled.png b/Resources/Textures/Interface/Misc/security_icons.rsi/hud_paroled.png index 042fb147b1..20d2b4a5b5 100644 Binary files a/Resources/Textures/Interface/Misc/security_icons.rsi/hud_paroled.png and b/Resources/Textures/Interface/Misc/security_icons.rsi/hud_paroled.png differ diff --git a/Resources/Textures/Interface/Misc/security_icons.rsi/hud_suspected.png b/Resources/Textures/Interface/Misc/security_icons.rsi/hud_suspected.png index cfb34742bf..536ec5523e 100644 Binary files a/Resources/Textures/Interface/Misc/security_icons.rsi/hud_suspected.png and b/Resources/Textures/Interface/Misc/security_icons.rsi/hud_suspected.png differ diff --git a/Resources/Textures/Interface/Misc/security_icons.rsi/hud_wanted.png b/Resources/Textures/Interface/Misc/security_icons.rsi/hud_wanted.png index 2df379d112..d7dafddd82 100644 Binary files a/Resources/Textures/Interface/Misc/security_icons.rsi/hud_wanted.png and b/Resources/Textures/Interface/Misc/security_icons.rsi/hud_wanted.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 b0d7991413..3298888769 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 5f97e34921..2472e385b5 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/Mobs/Species/Reptilian/parts.rsi/l_arm.png b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/l_arm.png index a0e2c96fda..c75c624b78 100644 Binary files a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/l_arm.png and b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/l_foot.png b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/l_foot.png index ce0d6b70b9..fc5dcb12d9 100644 Binary files a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/l_foot.png and b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/l_hand.png b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/l_hand.png index bc206249ea..4c72cd3a76 100644 Binary files a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/l_hand.png and b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/l_leg.png b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/l_leg.png index 34cafa2269..29ecbd5a44 100644 Binary files a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/l_leg.png and b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/r_arm.png b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/r_arm.png index de8edc447d..699899588a 100644 Binary files a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/r_arm.png and b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/r_foot.png b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/r_foot.png index d39a9244c0..2b8191668c 100644 Binary files a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/r_foot.png and b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/r_hand.png b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/r_hand.png index 8f292ffe0d..9e10e93c98 100644 Binary files a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/r_hand.png and b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/r_leg.png b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/r_leg.png index e761dd9250..e1993426ba 100644 Binary files a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/r_leg.png and b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/torso_f.png b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/torso_f.png index 2ee27074f8..49f3915507 100644 Binary files a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/torso_f.png and b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/torso_f.png differ diff --git a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/torso_m.png b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/torso_m.png index 4ea867df2a..88608329c3 100644 Binary files a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/torso_m.png and b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/torso_m.png differ diff --git a/Resources/Textures/Nyanotrasen/Structures/Machines/metempsychotic.rsi/pod_1.png b/Resources/Textures/Structures/Machines/metempsychotic.rsi/cloning_active.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Structures/Machines/metempsychotic.rsi/pod_1.png rename to Resources/Textures/Structures/Machines/metempsychotic.rsi/cloning_active.png diff --git a/Resources/Textures/Structures/Machines/metempsychotic.rsi/cloning_failed.png b/Resources/Textures/Structures/Machines/metempsychotic.rsi/cloning_failed.png new file mode 100644 index 0000000000..e85f4b2cba Binary files /dev/null and b/Resources/Textures/Structures/Machines/metempsychotic.rsi/cloning_failed.png differ diff --git a/Resources/Textures/Nyanotrasen/Structures/Machines/metempsychotic.rsi/pod_0.png b/Resources/Textures/Structures/Machines/metempsychotic.rsi/cloning_idle.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Structures/Machines/metempsychotic.rsi/pod_0.png rename to Resources/Textures/Structures/Machines/metempsychotic.rsi/cloning_idle.png diff --git a/Resources/Textures/Nyanotrasen/Structures/Machines/metempsychotic.rsi/meta.json b/Resources/Textures/Structures/Machines/metempsychotic.rsi/meta.json similarity index 54% rename from Resources/Textures/Nyanotrasen/Structures/Machines/metempsychotic.rsi/meta.json rename to Resources/Textures/Structures/Machines/metempsychotic.rsi/meta.json index 7276fde67e..da5034f713 100644 --- a/Resources/Textures/Nyanotrasen/Structures/Machines/metempsychotic.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/metempsychotic.rsi/meta.json @@ -1,18 +1,22 @@ { "version": 1, "license": "CC-BY-4.0", - "copyright": "Created by discord user Four Hydra Heads#2075 (971500282364178512)", + "copyright": "Created by discord user Four Hydra Heads#2075 (971500282364178512), failed state edited by VMSolidus", "size": { "x": 32, "y": 32 }, "states": [ { - "name": "pod_0" + "name": "cloning_idle" }, { - "name": "pod_1", + "name": "cloning_active", "delays": [ [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] ] + }, + { + "name": "cloning_failed", + "delays": [ [ 0.1, 0.1, 0.1, 0.1 ] ] } ] } diff --git a/Resources/Textures/Tiles/glass.rsi/full.png b/Resources/Textures/Tiles/glass.rsi/full.png deleted file mode 100644 index 6682031a7f..0000000000 Binary files a/Resources/Textures/Tiles/glass.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/Tiles/glass.rsi/glass.png b/Resources/Textures/Tiles/glass.rsi/glass.png deleted file mode 100644 index b877e1f80c..0000000000 Binary files a/Resources/Textures/Tiles/glass.rsi/glass.png and /dev/null differ diff --git a/Resources/Textures/Tiles/glass.rsi/glass0.png b/Resources/Textures/Tiles/glass.rsi/glass0.png deleted file mode 100644 index 421ada4dc4..0000000000 Binary files a/Resources/Textures/Tiles/glass.rsi/glass0.png and /dev/null differ diff --git a/Resources/Textures/Tiles/glass.rsi/glass1.png b/Resources/Textures/Tiles/glass.rsi/glass1.png deleted file mode 100644 index e6d4d38dbb..0000000000 Binary files a/Resources/Textures/Tiles/glass.rsi/glass1.png and /dev/null differ diff --git a/Resources/Textures/Tiles/glass.rsi/glass2.png b/Resources/Textures/Tiles/glass.rsi/glass2.png deleted file mode 100644 index f8d8308afd..0000000000 Binary files a/Resources/Textures/Tiles/glass.rsi/glass2.png and /dev/null differ diff --git a/Resources/Textures/Tiles/glass.rsi/glass3.png b/Resources/Textures/Tiles/glass.rsi/glass3.png deleted file mode 100644 index 892bfa9821..0000000000 Binary files a/Resources/Textures/Tiles/glass.rsi/glass3.png and /dev/null differ diff --git a/Resources/Textures/Tiles/glass.rsi/glass4.png b/Resources/Textures/Tiles/glass.rsi/glass4.png deleted file mode 100644 index 17fa67b90e..0000000000 Binary files a/Resources/Textures/Tiles/glass.rsi/glass4.png and /dev/null differ diff --git a/Resources/Textures/Tiles/glass.rsi/glass5.png b/Resources/Textures/Tiles/glass.rsi/glass5.png deleted file mode 100644 index 930ba0db75..0000000000 Binary files a/Resources/Textures/Tiles/glass.rsi/glass5.png and /dev/null differ diff --git a/Resources/Textures/Tiles/glass.rsi/glass6.png b/Resources/Textures/Tiles/glass.rsi/glass6.png deleted file mode 100644 index 17fa67b90e..0000000000 Binary files a/Resources/Textures/Tiles/glass.rsi/glass6.png and /dev/null differ diff --git a/Resources/Textures/Tiles/rglass.png b/Resources/Textures/Tiles/rglass.png index 33f8361b43..9ff972c635 100644 Binary files a/Resources/Textures/Tiles/rglass.png and b/Resources/Textures/Tiles/rglass.png differ diff --git a/Resources/Textures/Tiles/rglass.rsi/full.png b/Resources/Textures/Tiles/rglass.rsi/full.png deleted file mode 100644 index 37dea24747..0000000000 Binary files a/Resources/Textures/Tiles/rglass.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/Tiles/rglass.rsi/rglass.png b/Resources/Textures/Tiles/rglass.rsi/rglass.png deleted file mode 100644 index 9ff972c635..0000000000 Binary files a/Resources/Textures/Tiles/rglass.rsi/rglass.png and /dev/null differ diff --git a/Resources/Textures/Tiles/rglass.rsi/rglass0.png b/Resources/Textures/Tiles/rglass.rsi/rglass0.png deleted file mode 100644 index 421ada4dc4..0000000000 Binary files a/Resources/Textures/Tiles/rglass.rsi/rglass0.png and /dev/null differ diff --git a/Resources/Textures/Tiles/rglass.rsi/rglass1.png b/Resources/Textures/Tiles/rglass.rsi/rglass1.png deleted file mode 100644 index df7ac7cff8..0000000000 Binary files a/Resources/Textures/Tiles/rglass.rsi/rglass1.png and /dev/null differ diff --git a/Resources/Textures/Tiles/rglass.rsi/rglass2.png b/Resources/Textures/Tiles/rglass.rsi/rglass2.png deleted file mode 100644 index 421ada4dc4..0000000000 Binary files a/Resources/Textures/Tiles/rglass.rsi/rglass2.png and /dev/null differ diff --git a/Resources/Textures/Tiles/rglass.rsi/rglass3.png b/Resources/Textures/Tiles/rglass.rsi/rglass3.png deleted file mode 100644 index df7ac7cff8..0000000000 Binary files a/Resources/Textures/Tiles/rglass.rsi/rglass3.png and /dev/null differ diff --git a/Resources/Textures/Tiles/rglass.rsi/rglass4.png b/Resources/Textures/Tiles/rglass.rsi/rglass4.png deleted file mode 100644 index 2cdcc2d7a7..0000000000 Binary files a/Resources/Textures/Tiles/rglass.rsi/rglass4.png and /dev/null differ diff --git a/Resources/Textures/Tiles/rglass.rsi/rglass5.png b/Resources/Textures/Tiles/rglass.rsi/rglass5.png deleted file mode 100644 index 421ada4dc4..0000000000 Binary files a/Resources/Textures/Tiles/rglass.rsi/rglass5.png and /dev/null differ diff --git a/Resources/Textures/Tiles/rglass.rsi/rglass6.png b/Resources/Textures/Tiles/rglass.rsi/rglass6.png deleted file mode 100644 index 2cdcc2d7a7..0000000000 Binary files a/Resources/Textures/Tiles/rglass.rsi/rglass6.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Decals/wheelchair.rsi/meta.json b/Resources/Textures/_LostParadise/Decals/wheelchair.rsi/meta.json index af45c52852..331e12ade9 100644 --- a/Resources/Textures/_LostParadise/Decals/wheelchair.rsi/meta.json +++ b/Resources/Textures/_LostParadise/Decals/wheelchair.rsi/meta.json @@ -1,6 +1,6 @@ { "version": 2, - "license": "CC BY-NC-ND 4.0", + "license": "CC-BY-NC-SA-4.0", "copyright": "Draw by Skilets: https://github.com/Skilets", "size": { "x": 32, diff --git a/Resources/Textures/_LostParadise/Interface/Misc/lpp_job_icons.rsi/Adjutant.png b/Resources/Textures/_LostParadise/Interface/Misc/lpp_job_icons.rsi/Adjutant.png index ab98ac86f4..6253ea7d3c 100644 Binary files a/Resources/Textures/_LostParadise/Interface/Misc/lpp_job_icons.rsi/Adjutant.png and b/Resources/Textures/_LostParadise/Interface/Misc/lpp_job_icons.rsi/Adjutant.png differ diff --git a/Resources/Textures/_LostParadise/Interface/Misc/lpp_job_icons.rsi/Blueshield.png b/Resources/Textures/_LostParadise/Interface/Misc/lpp_job_icons.rsi/Blueshield.png index e6d62d32a1..629ab91615 100644 Binary files a/Resources/Textures/_LostParadise/Interface/Misc/lpp_job_icons.rsi/Blueshield.png and b/Resources/Textures/_LostParadise/Interface/Misc/lpp_job_icons.rsi/Blueshield.png differ diff --git a/Resources/Textures/_LostParadise/Interface/Misc/lpp_job_icons.rsi/Nanotrasen.png b/Resources/Textures/_LostParadise/Interface/Misc/lpp_job_icons.rsi/Nanotrasen.png index f03e86c6b1..7e9b9d4bc0 100644 Binary files a/Resources/Textures/_LostParadise/Interface/Misc/lpp_job_icons.rsi/Nanotrasen.png and b/Resources/Textures/_LostParadise/Interface/Misc/lpp_job_icons.rsi/Nanotrasen.png differ diff --git a/Resources/Textures/_LostParadise/LobbyScreens/attributions.yml b/Resources/Textures/_LostParadise/LobbyScreens/attributions.yml index 430b71abf5..cf1072aa70 100644 --- a/Resources/Textures/_LostParadise/LobbyScreens/attributions.yml +++ b/Resources/Textures/_LostParadise/LobbyScreens/attributions.yml @@ -1,49 +1,44 @@ - files: ["borman.png"] - license: "CC BY-NC-ND 4.0" + license: "CC-BY-NC-SA-4.0" copyright: "Discord - bormann64/1070387950791184535" source: "https://discord.gg/v5mGmMzAdB" - files: ["teftelka.png"] - license: "CC BY-NC-ND 4.0" + license: "CC-BY-NC-SA-4.0" copyright: "Telegram - @push1nkaa" source: "https://discord.gg/v5mGmMzAdB" -- files: ["penisher.png"] - license: "CC BY-NC-ND 4.0" - copyright: "Discord - tongandroch/340929623636574209" - source: "https://discord.gg/v5mGmMzAdB" - - files: ["amina.png"] - license: "CC BY-NC-ND 4.0" + license: "CC-BY-NC-SA-4.0" copyright: "Discord - insulgon/361486758980091916" source: "https://discord.gg/v5mGmMzAdB" - files: ["bigmoon.png"] - license: "CC BY-NC-ND 4.0" + license: "CC-BY-NC-SA-4.0" copyright: "Discord - canceredpussy/626790677845508146" source: "https://discord.gg/v5mGmMzAdB" - files: ["girls.png"] - license: "CC BY-NC-ND 4.0" + license: "CC-BY-NC-SA-4.0" copyright: "Discord - canceredpussy/626790677845508146" source: "https://discord.gg/v5mGmMzAdB" - files: ["clara.png"] - license: "CC BY-NC-ND 4.0" + license: "CC-BY-NC-SA-4.0" copyright: "Discord - the_kira_san/523852516128063519" source: "https://discord.gg/v5mGmMzAdB" - files: ["kirashet.png"] - license: "CC BY-NC-ND 4.0" + license: "CC-BY-NC-SA-4.0" copyright: "Discord - the_kira_san/523852516128063519" source: "https://discord.gg/v5mGmMzAdB" - files: ["darkmoon.png"] - license: "CC BY-NC-ND 4.0" + license: "CC-BY-NC-SA-4.0" copyright: "Discord - darkmoonmilkyway/692645506186215425 Vk - @dark_moon_house" source: "https://discord.gg/v5mGmMzAdB" - files: ["breaddot_nukies.png"] - license: "CC BY-NC-ND 4.0" + license: "CC-BY-NC-SA-4.0" copyright: "Discord - cum_inflation/757254408173125702 TG - breaddotdoodles" source: "https://discord.gg/v5mGmMzAdB" diff --git a/Resources/Textures/_LostParadise/LobbyScreens/penisher.png b/Resources/Textures/_LostParadise/LobbyScreens/penisher.png deleted file mode 100644 index 79c90f3ea2..0000000000 Binary files a/Resources/Textures/_LostParadise/LobbyScreens/penisher.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_antlers.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_antlers.png deleted file mode 100644 index 62645da721..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_antlers.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_crowned.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_crowned.png deleted file mode 100644 index 24ae8892f7..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_crowned.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_cyberhead.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_cyberhead.png deleted file mode 100644 index 533e5191ce..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_cyberhead.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_droneeyes.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_droneeyes.png deleted file mode 100644 index d352f1ffd0..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_droneeyes.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_light.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_light.png deleted file mode 100644 index e2fec60ff5..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_light.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_lightb.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_lightb.png deleted file mode 100644 index 760583d089..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_lightb.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_lizard.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_lizard.png deleted file mode 100644 index 78ad40576b..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_lizard.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_short_lizard.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_short_lizard.png deleted file mode 100644 index e08b85a895..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_short_lizard.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_sidelights.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_sidelights.png deleted file mode 100644 index 873f7412fd..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_sidelights.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_tesla.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_tesla.png deleted file mode 100644 index 1f10bc8b12..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_tesla.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_towers.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_towers.png deleted file mode 100644 index fc1664ee0f..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_towers.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_tv.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_tv.png deleted file mode 100644 index e2626dbbb4..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_tv.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/meta.json b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/meta.json deleted file mode 100644 index 690d15426f..0000000000 --- a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_antenna.rsi/meta.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Draw by Kest", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "ipc_antenna_tv", - "directions": 4 - }, - { - "name": "ipc_antenna_tesla", - "directions": 4, - "delays": [ - [ - 4, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 4, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 4, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 4, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "ipc_antenna_lightb", - "directions": 4, - "delays": [ - [ - 4, - 0.5, - 0.1, - 0.5 - ], - [ - 4, - 0.5, - 0.1, - 0.5 - ], - [ - 4, - 0.5, - 0.1, - 0.5 - ], - [ - 4, - 0.5, - 0.1, - 0.5 - ] - ] - }, - { - "name": "ipc_antenna_light", - "directions": 4 - }, - { - "name": "ipc_antenna_cyberhead", - "directions": 4 - }, - { - "name": "ipc_antenna_sidelights", - "directions": 4 - }, - { - "name": "ipc_antenna_antlers", - "directions": 4 - }, - { - "name": "ipc_antenna_droneeyes", - "directions": 4 - }, - { - "name": "ipc_antenna_crowned", - "directions": 4 - }, - { - "name": "ipc_antenna_short_lizard", - "directions": 4 - }, - { - "name": "ipc_antenna_lizard", - "directions": 4 - }, - { - "name": "ipc_antenna_towers", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/blue_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/blue_s.png deleted file mode 100644 index 4d6b9ee69e..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/blue_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/brb.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/brb.png deleted file mode 100644 index 9112c74f91..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/brb.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/console_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/console_s.png deleted file mode 100644 index aaccec43d2..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/console_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/eight_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/eight_s.png deleted file mode 100644 index 8fd8752252..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/eight_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/exclaim.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/exclaim.png deleted file mode 100644 index 196cea974b..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/exclaim.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/eyes.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/eyes.png deleted file mode 100644 index d50a347fad..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/eyes.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/eyesangry.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/eyesangry.png deleted file mode 100644 index 03a60da668..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/eyesangry.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/eyestall.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/eyestall.png deleted file mode 100644 index 2dfb7dcd6b..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/eyestall.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/glasses.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/glasses.png deleted file mode 100644 index 689773bfb4..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/glasses.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/goggles_hesp_alt_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/goggles_hesp_alt_s.png deleted file mode 100644 index 64e475fc53..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/goggles_hesp_alt_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/goggles_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/goggles_s.png deleted file mode 100644 index 0d214e3567..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/goggles_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/gol_glider_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/gol_glider_s.png deleted file mode 100644 index 516320f0ad..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/gol_glider_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/gol_mime.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/gol_mime.png deleted file mode 100644 index 0910304539..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/gol_mime.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/green_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/green_s.png deleted file mode 100644 index 1d7d50f122..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/green_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/heart_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/heart_s.png deleted file mode 100644 index 99e76d1c1c..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/heart_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/loading.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/loading.png deleted file mode 100644 index ba836fc2a2..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/loading.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/lumi_waiting_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/lumi_waiting_s.png deleted file mode 100644 index ca84fb72b9..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/lumi_waiting_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/lumieyes.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/lumieyes.png deleted file mode 100644 index 0682f5df6e..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/lumieyes.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/melody.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/melody.png deleted file mode 100644 index 405200a575..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/melody.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/meta.json b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/meta.json deleted file mode 100644 index 2adc824413..0000000000 --- a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/meta.json +++ /dev/null @@ -1,1094 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by skilets, update by jay_jacobs, update by Kest", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "blue_s", - "directions": 4, - "delays": [ - [ - 3, - 3, - 3, - 3, - 3, - 3 - ], - [ - 3, - 3, - 3, - 3, - 3, - 3 - ], - [ - 3, - 3, - 3, - 3, - 3, - 3 - ], - [ - 3, - 3, - 3, - 3, - 3, - 3 - ] - ] - }, - { - "name": "console_s", - "directions": 4, - "delays": [ - [ - 0.7, - 0.7 - ], - [ - 0.7, - 0.7 - ], - [ - 0.7, - 0.7 - ], - [ - 0.7, - 0.7 - ] - ] - }, - { - "name": "goggles_s", - "directions": 4, - "delays": [ - [ - 2, - 5 - ], - [ - 2, - 5 - ], - [ - 2, - 5 - ], - [ - 2, - 5 - ] - ] - }, - { - "name": "eight_s", - "directions": 4, - "delays": [ - [ - 2, - 5 - ], - [ - 2, - 5 - ], - [ - 2, - 5 - ], - [ - 2, - 5 - ] - ] - }, - { - "name": "gol_glider_s", - "directions": 4, - "delays": [ - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ] - ] - }, - { - "name": "gol_mime", - "directions": 4, - "delays": [ - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ] - ] - }, - { - "name": "green_s", - "directions": 4, - "delays": [ - [ - 1.5, - 1.5 - ], - [ - 1.5, - 1.5 - ], - [ - 1.5, - 1.5 - ], - [ - 1.5, - 1.5 - ] - ] - }, - { - "name": "heart_s", - "directions": 4, - "delays": [ - [ - 2, - 2 - ], - [ - 2, - 2 - ], - [ - 2, - 2 - ], - [ - 2, - 2 - ] - ] - }, - { - "name": "lumieyes", - "directions": 4, - "delays": [ - [ - 3, - 2, - 2, - 2, - 3, - 8, - 1, - 1, - 2, - 6, - 1, - 6, - 1, - 1 - ], - [ - 3, - 2, - 2, - 2, - 3, - 8, - 1, - 1, - 2, - 6, - 1, - 6, - 1, - 1 - ], - [ - 3, - 2, - 2, - 2, - 3, - 8, - 1, - 1, - 2, - 6, - 1, - 6, - 1, - 1 - ], - [ - 3, - 2, - 2, - 2, - 3, - 8, - 1, - 1, - 2, - 6, - 1, - 6, - 1, - 1 - ] - ] - }, - { - "name": "melody", - "directions": 4, - "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, - 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, - 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, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "lumi_waiting_s", - "directions": 4, - "delays": [ - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ] - ] - }, - { - "name": "monoeye", - "directions": 4, - "delays": [ - [ - 2, - 1, - 1, - 1 - ], - [ - 2, - 1, - 1, - 1 - ], - [ - 2, - 1, - 1, - 1 - ], - [ - 2, - 1, - 1, - 1 - ] - ] - }, - { - "name": "spark", - "directions": 4, - "delays": [ - [ - 7, - 1, - 1, - 1, - 7, - 1, - 1, - 1 - ], - [ - 7, - 1, - 1, - 1, - 7, - 1, - 1, - 1 - ], - [ - 7, - 1, - 1, - 1, - 7, - 1, - 1, - 1 - ], - [ - 7, - 1, - 1, - 1, - 7, - 1, - 1, - 1 - ] - ] - }, - { - "name": "orange_hesp_alt_s", - "directions": 4, - "delays": [ - [ - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1 - ] - ] - }, - { - "name": "orange_s", - "directions": 4, - "delays": [ - [ - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5 - ] - ] - }, - { - "name": "pink_hesp_alt_s", - "directions": 4, - "delays": [ - [ - 2, - 1, - 1, - 1 - ], - [ - 2, - 1, - 1, - 1 - ], - [ - 2, - 1, - 1, - 1 - ], - [ - 2, - 1, - 1, - 1 - ] - ] - }, - { - "name": "pink_s", - "directions": 4, - "delays": [ - [ - 1.5, - 1.5 - ], - [ - 1.5, - 1.5 - ], - [ - 1.5, - 1.5 - ], - [ - 1.5, - 1.5 - ] - ] - }, - { - "name": "rainbow_hesp_alt_s", - "directions": 4, - "delays": [ - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ], - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ], - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ], - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ] - ] - }, - { - "name": "rainbow_s", - "directions": 4, - "delays": [ - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ], - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ], - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ], - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ] - ] - }, - { - "name": "red_s", - "directions": 4, - "delays": [ - [ - 0.5, - 0.5 - ], - [ - 0.5, - 0.5 - ], - [ - 0.5, - 0.5 - ], - [ - 0.5, - 0.5 - ] - ] - }, - { - "name": "rgb_hesp_alt_s", - "directions": 4, - "delays": [ - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ], - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ], - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ], - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ] - ] - }, - { - "name": "scroll_hesp_alt_s", - "directions": 4, - "delays": [ - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ], - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ], - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ], - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ] - ] - }, - { - "name": "scroll_s", - "directions": 4, - "delays": [ - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ], - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ], - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ], - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ] - ] - }, - { - "name": "shower_s", - "directions": 4, - "delays": [ - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ] - ] - }, - { - "name": "smoking_s", - "directions": 4, - "delays": [ - [ - 0.5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 0.5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 0.5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 0.5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ] - ] - }, - { - "name": "static_s", - "directions": 4, - "delays": [ - [ - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5, - 1.5 - ] - ] - }, - { - "name": "eyes", - "directions": 4, - "delays": [ - [ - 3, - 1 - ], - [ - 3, - 1 - ], - [ - 3, - 1 - ], - [ - 3, - 1 - ] - ] - }, - { - "name": "eyestall", - "directions": 4, - "delays": [ - [ - 3, - 1 - ], - [ - 3, - 1 - ], - [ - 3, - 1 - ], - [ - 3, - 1 - ] - ] - }, - { - "name": "loading", - "directions": 4, - "delays": [ - [ - 0.3, - 0.3, - 0.3, - 0.3, - 0.3 - ], - [ - 0.3, - 0.3, - 0.3, - 0.3, - 0.3 - ], - [ - 0.3, - 0.3, - 0.3, - 0.3, - 0.3 - ], - [ - 0.3, - 0.3, - 0.3, - 0.3, - 0.3 - ] - ] - } - ] - } - diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/meta.txt b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/meta.txt deleted file mode 100644 index e35f4a2ec9..0000000000 --- a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/meta.txt +++ /dev/null @@ -1,1055 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by skilets, update by jay_jacobs, update by Kest", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "blue_s", - "directions": 4, - "delays": [ - [ - 12, - 12, - 12, - 12, - 12, - 12 - ], - [ - 12, - 12, - 12, - 12, - 12, - 12 - ], - [ - 12, - 12, - 12, - 12, - 12, - 12 - ], - [ - 12, - 12, - 12, - 12, - 12, - 12 - ] - ] - }, - { - "name": "console_s", - "directions": 4, - "delays": [ - [ - 5, - 5 - ], - [ - 5, - 5 - ], - [ - 5, - 5 - ], - [ - 5, - 5 - ] - ] - }, - { - "name": "goggles_s", - "directions": 4, - "delays": [ - [ - 2, - 20, - 2, - 20 - ], - [ - 2, - 20, - 2, - 20 - ], - [ - 2, - 20, - 2, - 20 - ], - [ - 2, - 20, - 2, - 20 - ] - ] - }, - { - "name": "eight_s", - "directions": 4, - "delays": [ - [ - 2, - 20 - ], - [ - 2, - 20 - ], - [ - 2, - 20 - ], - [ - 2, - 20 - ] - ] - }, - { - "name": "gol_glider_s", - "directions": 4, - "delays": [ - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ] - ] - }, - { - "name": "gol_mime", - "directions": 4, - "delays": [ - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ] - ] - }, - { - "name": "green_s", - "directions": 4, - "delays": [ - [ - 3, - 3 - ], - [ - 3, - 3 - ], - [ - 3, - 3 - ], - [ - 3, - 3 - ] - ] - }, - { - "name": "heart_s", - "directions": 4, - "delays": [ - [ - 4, - 4 - ], - [ - 4, - 4 - ], - [ - 4, - 4 - ], - [ - 4, - 4 - ] - ] - }, - { - "name": "lumieyes", - "directions": 4, - "delays": [ - [ - 3, - 2, - 2, - 2, - 3, - 8, - 1, - 1, - 2, - 6, - 1, - 6, - 1, - 1 - ], - [ - 3, - 2, - 2, - 2, - 3, - 8, - 1, - 1, - 2, - 6, - 1, - 6, - 1, - 1 - ], - [ - 3, - 2, - 2, - 2, - 3, - 8, - 1, - 1, - 2, - 6, - 1, - 6, - 1, - 1 - ], - [ - 3, - 2, - 2, - 2, - 3, - 8, - 1, - 1, - 2, - 6, - 1, - 6, - 1, - 1 - ] - ] - }, - { - "name": "melody", - "directions": 4, - "delays": [ - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ] - ] - }, - { - "name": "lumi_waiting_s", - "directions": 4, - "delays": [ - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ] - ] - }, - { - "name": "monoeye", - "directions": 4, - "delays": [ - [ - 20, - 1, - 1, - 1 - ], - [ - 20, - 1, - 1, - 1 - ], - [ - 20, - 1, - 1, - 1 - ], - [ - 20, - 1, - 1, - 1 - ] - ] - }, - { - "name": "spark", - "directions": 4, - "delays": [ - [ - 50, - 1, - 1, - 1, - 1, - 1, - 50, - 1, - 1, - 1, - 1, - 1 - ], - [ - 50, - 1, - 1, - 1, - 1, - 1, - 50, - 1, - 1, - 1, - 1, - 1 - ], - [ - 50, - 1, - 1, - 1, - 1, - 1, - 50, - 1, - 1, - 1, - 1, - 1 - ], - [ - 50, - 1, - 1, - 1, - 1, - 1, - 50, - 1, - 1, - 1, - 1, - 1 - ] - ] - }, - { - "name": "orange_hesp_alt_s", - "directions": 4, - "delays": [ - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ], - [ - 1.5, - 1.5, - 1.5, - 1.5 - ] - ] - }, - { - "name": "orange_s", - "directions": 4, - "delays": [ - [ - 4, - 4, - 4, - 4, - 4, - 4 - ], - [ - 4, - 4, - 4, - 4, - 4, - 4 - ], - [ - 4, - 4, - 4, - 4, - 4, - 4 - ], - [ - 4, - 4, - 4, - 4, - 4, - 4 - ] - ] - }, - { - "name": "pink_hesp_alt_s", - "directions": 4, - "delays": [ - [ - 20, - 1, - 1, - 1 - ], - [ - 20, - 1, - 1, - 1 - ], - [ - 20, - 1, - 1, - 1 - ], - [ - 20, - 1, - 1, - 1 - ] - ] - }, - { - "name": "pink_s", - "directions": 4, - "delays": [ - [ - 4, - 4 - ], - [ - 4, - 4 - ], - [ - 4, - 4 - ], - [ - 4, - 4 - ] - ] - }, - { - "name": "rainbow_hesp_alt_s", - "directions": 4, - "delays": [ - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ] - ] - }, - { - "name": "rainbow_s", - "directions": 4, - "delays": [ - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ] - ] - }, - { - "name": "red_s", - "directions": 4, - "delays": [ - [ - 4, - 4 - ], - [ - 4, - 4 - ], - [ - 4, - 4 - ], - [ - 4, - 4 - ] - ] - }, - { - "name": "rgb_hesp_alt_s", - "directions": 4, - "delays": [ - [ - 2.5, - 2.5, - 2.5, - 2.5, - 2.5, - 2.5 - ], - [ - 2.5, - 2.5, - 2.5, - 2.5, - 2.5, - 2.5 - ], - [ - 2.5, - 2.5, - 2.5, - 2.5, - 2.5, - 2.5 - ], - [ - 2.5, - 2.5, - 2.5, - 2.5, - 2.5, - 2.5 - ] - ] - }, - { - "name": "scroll_hesp_alt_s", - "directions": 4, - "delays": [ - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ] - ] - }, - { - "name": "scroll_s", - "directions": 4, - "delays": [ - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ] - ] - }, - { - "name": "shower_s", - "directions": 4, - "delays": [ - [ - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4 - ], - [ - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4 - ], - [ - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4 - ], - [ - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4 - ] - ] - }, - { - "name": "smoking_s", - "directions": 4, - "delays": [ - [ - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2 - ], - [ - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2 - ], - [ - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2 - ], - [ - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2 - ] - ] - }, - { - "name": "static_s", - "directions": 4, - "delays": [ - [ - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4 - ], - [ - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4 - ], - [ - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4 - ], - [ - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4 - ] - ] - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/monoeye.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/monoeye.png deleted file mode 100644 index 5168f4ec48..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/monoeye.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/off_hesp_alt_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/off_hesp_alt_s.png deleted file mode 100644 index ce467e3ad3..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/off_hesp_alt_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/orange_hesp_alt_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/orange_hesp_alt_s.png deleted file mode 100644 index 3bb30789a8..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/orange_hesp_alt_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/orange_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/orange_s.png deleted file mode 100644 index aebd77b754..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/orange_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/pink_hesp_alt_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/pink_hesp_alt_s.png deleted file mode 100644 index eee7da905c..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/pink_hesp_alt_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/pink_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/pink_s.png deleted file mode 100644 index 6291d77ca7..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/pink_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/rainbow_hesp_alt_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/rainbow_hesp_alt_s.png deleted file mode 100644 index c4956cad44..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/rainbow_hesp_alt_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/rainbow_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/rainbow_s.png deleted file mode 100644 index 9b6259b85d..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/rainbow_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/red_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/red_s.png deleted file mode 100644 index 07e78a94b7..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/red_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/rgb_hesp_alt_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/rgb_hesp_alt_s.png deleted file mode 100644 index b884b167ff..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/rgb_hesp_alt_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/scroll_hesp_alt_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/scroll_hesp_alt_s.png deleted file mode 100644 index 2b854a58cc..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/scroll_hesp_alt_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/scroll_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/scroll_s.png deleted file mode 100644 index 6a1d63bba0..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/scroll_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/shower_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/shower_s.png deleted file mode 100644 index fa981e2138..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/shower_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/smoking_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/smoking_s.png deleted file mode 100644 index fa693d3382..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/smoking_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/spark.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/spark.png deleted file mode 100644 index 3355e1b02e..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/spark.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/static_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/static_s.png deleted file mode 100644 index b019ba2480..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/static_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/test_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/test_s.png deleted file mode 100644 index 9dc47f59d0..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/test_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/yellow_s.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/yellow_s.png deleted file mode 100644 index c627bfeaa1..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_face.rsi/yellow_s.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/head.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/head.png deleted file mode 100644 index 86081e7e76..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/head.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/l_arm.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/l_arm.png deleted file mode 100644 index 6ddb081287..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/l_arm.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/l_foot.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/l_foot.png deleted file mode 100644 index 5bb3e2100a..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/l_foot.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/l_hand.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/l_hand.png deleted file mode 100644 index 50281e367b..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/l_hand.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/l_leg.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/l_leg.png deleted file mode 100644 index c5f366989e..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/l_leg.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/meta.json b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/meta.json deleted file mode 100644 index e74adc84f7..0000000000 --- a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/meta.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Draw by Hqlle", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "torso_f_alt", - "directions": 4 - }, - { - "name": "torso_f", - "directions": 4 - }, - { - "name": "torso_m", - "directions": 4 - }, - { - "name": "l_arm", - "directions": 4 - }, - { - "name": "r_arm", - "directions": 4 - }, - { - "name": "head", - "directions": 4 - }, - { - "name": "l_foot", - "directions": 4 - }, - { - "name": "l_hand", - "directions": 4 - }, - { - "name": "l_leg", - "directions": 4 - }, - { - "name": "r_foot", - "directions": 4 - }, - { - "name": "r_hand", - "directions": 4 - }, - { - "name": "r_leg", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/r_arm.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/r_arm.png deleted file mode 100644 index aaea75f153..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/r_arm.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/r_foot.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/r_foot.png deleted file mode 100644 index f6d4bd0d7c..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/r_foot.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/r_hand.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/r_hand.png deleted file mode 100644 index 020541b2c3..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/r_hand.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/r_leg.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/r_leg.png deleted file mode 100644 index ec5f7869eb..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/r_leg.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/torso_f.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/torso_f.png deleted file mode 100644 index df7b800e20..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/torso_f.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/torso_f_alt.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/torso_f_alt.png deleted file mode 100644 index fcbf24ac83..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/torso_f_alt.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/torso_m.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/torso_m.png deleted file mode 100644 index 36a3d580ea..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_base_parts.rsi/torso_m.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/Tail-largeLizard.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/Tail-largeLizard.png deleted file mode 100644 index 49ac9af96b..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/Tail-largeLizard.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/TailLizard.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/TailLizard.png deleted file mode 100644 index c8ce0d73cd..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/TailLizard.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/head.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/head.png deleted file mode 100644 index 473ddf04ff..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/head.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/l_arm.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/l_arm.png deleted file mode 100644 index 8cef4f4373..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/l_arm.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/l_foot.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/l_foot.png deleted file mode 100644 index bd8e15e194..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/l_foot.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/l_hand.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/l_hand.png deleted file mode 100644 index c95c1f515c..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/l_hand.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/l_leg.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/l_leg.png deleted file mode 100644 index 9adbad8bd3..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/l_leg.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/meta.json b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/meta.json deleted file mode 100644 index 2f46d5057c..0000000000 --- a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/meta.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Draw by Hqlle", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "torso", - "directions": 4 - }, - { - "name": "l_arm", - "directions": 4 - }, - { - "name": "r_arm", - "directions": 4 - }, - { - "name": "head", - "directions": 4 - }, - { - "name": "l_foot", - "directions": 4 - }, - { - "name": "l_hand", - "directions": 4 - }, - { - "name": "l_leg", - "directions": 4 - }, - { - "name": "r_foot", - "directions": 4 - }, - { - "name": "r_hand", - "directions": 4 - }, - { - "name": "r_leg", - "directions": 4 - }, - { - "name": "TailLizard", - "directions": 4 - }, - { - "name": "Tail-largeLizard", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/r_arm.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/r_arm.png deleted file mode 100644 index 96d3c9c51e..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/r_arm.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/r_foot.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/r_foot.png deleted file mode 100644 index d13fd47188..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/r_foot.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/r_hand.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/r_hand.png deleted file mode 100644 index b0306b8736..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/r_hand.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/r_leg.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/r_leg.png deleted file mode 100644 index e9016efc73..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/r_leg.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/torso.png b/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/torso.png deleted file mode 100644 index 0ad431e259..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Customization/ipc_parts/ipc_lizard_parts.rsi/torso.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Elf/parts.rsi/head_f.png b/Resources/Textures/_LostParadise/Mobs/Species/Elf/parts.rsi/head_f.png deleted file mode 100644 index 1fcf73f2d8..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Elf/parts.rsi/head_f.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Elf/parts.rsi/head_m.png b/Resources/Textures/_LostParadise/Mobs/Species/Elf/parts.rsi/head_m.png deleted file mode 100644 index 1fcf73f2d8..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Elf/parts.rsi/head_m.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Elf/parts.rsi/meta.json b/Resources/Textures/_LostParadise/Mobs/Species/Elf/parts.rsi/meta.json deleted file mode 100644 index c06a70ef13..0000000000 --- a/Resources/Textures/_LostParadise/Mobs/Species/Elf/parts.rsi/meta.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "head_f", - "directions": 4 - }, - { - "name": "head_m", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/brain-inhand-left.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/brain-inhand-left.png deleted file mode 100644 index cf6e4684e9..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/brain-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/brain-inhand-right.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/brain-inhand-right.png deleted file mode 100644 index 978d4f3c5f..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/brain-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/brain.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/brain.png deleted file mode 100644 index f69ff1aa3e..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/brain.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/ears.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/ears.png deleted file mode 100644 index 132015dcb8..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/ears.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/eyeball-l.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/eyeball-l.png deleted file mode 100644 index 870a642142..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/eyeball-l.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/eyeball-r.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/eyeball-r.png deleted file mode 100644 index 5f63da2ea8..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/eyeball-r.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/heart-off.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/heart-off.png deleted file mode 100644 index 9cb735356e..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/heart-off.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/heart-on.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/heart-on.png deleted file mode 100644 index 602a304815..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/heart-on.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/meta.json b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/meta.json deleted file mode 100644 index fbe098a47b..0000000000 --- a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/meta.json +++ /dev/null @@ -1,86 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Draw by Hqlle", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "brain-inhand-left", - "directions": 4 - }, - { - "name": "brain-inhand-right", - "directions": 4 - }, - { - "name": "heart-off" - }, - { - "name": "heart-on", - "delays": [ - [ - 0.6, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "brain", - "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 - ] - ] - }, - { - "name": "eyeball-r" - }, - { - "name": "tongue" - }, - { - "name": "eyeball-l" - }, - { - "name": "microcell", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "ears" - } - ] -} diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/microcell.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/microcell.png deleted file mode 100644 index 741d2a4837..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/microcell.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/tongue.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/tongue.png deleted file mode 100644 index 7e0808b6ed..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/organs.rsi/tongue.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/full.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/full.png deleted file mode 100644 index 1cd8c4158d..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/head_f.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/head_f.png deleted file mode 100644 index 09716bd20b..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/head_f.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/head_m.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/head_m.png deleted file mode 100644 index 09716bd20b..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/head_m.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/ipc_m.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/ipc_m.png deleted file mode 100644 index cfa8cb3424..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/ipc_m.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/l_arm.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/l_arm.png deleted file mode 100644 index 01c394d6e3..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/l_arm.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/l_foot.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/l_foot.png deleted file mode 100644 index 7ed7ed5690..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/l_foot.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/l_hand.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/l_hand.png deleted file mode 100644 index bb9fa7fc4e..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/l_hand.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/l_leg.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/l_leg.png deleted file mode 100644 index 93d300a2fe..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/l_leg.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/meta.json b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/meta.json deleted file mode 100644 index 19d9783efb..0000000000 --- a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/meta.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Draw by Hqlle", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "full" - }, - { - "name": "head_m", - "directions": 4 - }, - { - "name": "head_f", - "directions": 4 - }, - { - "name": "l_arm", - "directions": 4 - }, - { - "name": "l_foot", - "directions": 4 - }, - { - "name": "l_hand", - "directions": 4 - }, - { - "name": "l_leg", - "directions": 4 - }, - { - "name": "r_arm", - "directions": 4 - }, - { - "name": "r_foot", - "directions": 4 - }, - { - "name": "r_hand", - "directions": 4 - }, - { - "name": "r_leg", - "directions": 4 - }, - { - "name": "torso_f", - "directions": 4 - }, - { - "name": "torso_m", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/r_arm.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/r_arm.png deleted file mode 100644 index 255523f154..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/r_arm.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/r_foot.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/r_foot.png deleted file mode 100644 index 9d2e8906fd..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/r_foot.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/r_hand.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/r_hand.png deleted file mode 100644 index 0f383cec3e..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/r_hand.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/r_leg.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/r_leg.png deleted file mode 100644 index 3b0e5fa869..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/r_leg.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/torso_f.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/torso_f.png deleted file mode 100644 index 5b9aa48aba..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/torso_f.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/torso_m.png b/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/torso_m.png deleted file mode 100644 index 5b9aa48aba..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Ipc/parts.rsi/torso_m.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Naga/parts.rsi/full.png b/Resources/Textures/_LostParadise/Mobs/Species/Naga/parts.rsi/full.png deleted file mode 100644 index 821a685abf..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Naga/parts.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Naga/parts.rsi/meta.json b/Resources/Textures/_LostParadise/Mobs/Species/Naga/parts.rsi/meta.json deleted file mode 100644 index c2f23721d5..0000000000 --- a/Resources/Textures/_LostParadise/Mobs/Species/Naga/parts.rsi/meta.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "version": 1, - "license": "Mycelium", - "copyright": "Fungis", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "full", - "directions": 4 - }, - { - "name": "naga_body", - "directions": 4 - }, - { - "name": "naga_tail", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Naga/parts.rsi/naga_body.png b/Resources/Textures/_LostParadise/Mobs/Species/Naga/parts.rsi/naga_body.png deleted file mode 100644 index 1e87741b57..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Naga/parts.rsi/naga_body.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Naga/parts.rsi/naga_tail.png b/Resources/Textures/_LostParadise/Mobs/Species/Naga/parts.rsi/naga_tail.png deleted file mode 100644 index 03d8470e7b..0000000000 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Naga/parts.rsi/naga_tail.png and /dev/null differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/head_f.png b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/head_f.png index f4be10ae70..b32a66f56a 100644 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/head_f.png and b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/head_f.png differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/head_m.png b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/head_m.png index f4be10ae70..0cd4fb7234 100644 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/head_m.png and b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/head_m.png differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/l_arm.png b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/l_arm.png index d5e17d81a8..c75c624b78 100644 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/l_arm.png and b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/l_foot.png b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/l_foot.png index 85d221bab5..502c310282 100644 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/l_foot.png and b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/l_hand.png b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/l_hand.png index f733d0d008..7acc6eeecc 100644 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/l_hand.png and b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/l_leg.png b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/l_leg.png index 81af36c42e..33002c71a2 100644 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/l_leg.png and b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/r_arm.png b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/r_arm.png index 3dd6f82fda..699899588a 100644 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/r_arm.png and b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/r_foot.png b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/r_foot.png index 7f854e224e..6e0b85cf68 100644 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/r_foot.png and b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/r_hand.png b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/r_hand.png index 63f1004e71..53f6859295 100644 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/r_hand.png and b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/r_leg.png b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/r_leg.png index 0e6766a644..1845330486 100644 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/r_leg.png and b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/tail_m.png b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/tail_m.png index cf4d3f85f9..b0a576aedb 100644 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/tail_m.png and b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/tail_m.png differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/torso_f.png b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/torso_f.png index 5b3e770bc3..5a14f1b21e 100644 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/torso_f.png and b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/torso_f.png differ diff --git a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/torso_m.png b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/torso_m.png index e3bea50d02..a6fd5a5636 100644 Binary files a/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/torso_m.png and b/Resources/Textures/_LostParadise/Mobs/Species/Shark/parts.rsi/torso_m.png differ diff --git a/Resources/Textures/_LostParadise/Objects/Fun/toys.rsi/meta.json b/Resources/Textures/_LostParadise/Objects/Fun/toys.rsi/meta.json index 9b8592a075..4bbe9fa5c2 100644 --- a/Resources/Textures/_LostParadise/Objects/Fun/toys.rsi/meta.json +++ b/Resources/Textures/_LostParadise/Objects/Fun/toys.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC BY-NC-ND 4.0", - "copyright": "Taken from BlueMoon github https://github.com/BlueMoon-Labs/SERP-BlueMoon-Station-13", + "license": "CC-BY-NC-SA-4.0", + "copyright": "Taken from BlueMoon github https://github.com/BlueMoon-Labs/SERP-BlueMoon-Station-13 (changed license for no errors)", "size": { "x": 32, "y": 32 @@ -239,5 +239,5 @@ "name": "pebbles-inhand-right", "directions": 4 } - ] + ] } diff --git a/Resources/Textures/_LostParadise/Objects/Weapons/Guns/Battery/soleil.rsi/siabler-inhand-right.png b/Resources/Textures/_LostParadise/Objects/Weapons/Guns/Battery/soleil.rsi/disabler-inhand-right.png similarity index 100% rename from Resources/Textures/_LostParadise/Objects/Weapons/Guns/Battery/soleil.rsi/siabler-inhand-right.png rename to Resources/Textures/_LostParadise/Objects/Weapons/Guns/Battery/soleil.rsi/disabler-inhand-right.png diff --git a/Resources/Textures/_LostParadise/Objects/Weapons/Guns/Battery/soleil.rsi/meta.json b/Resources/Textures/_LostParadise/Objects/Weapons/Guns/Battery/soleil.rsi/meta.json new file mode 100644 index 0000000000..e9792ef9ea --- /dev/null +++ b/Resources/Textures/_LostParadise/Objects/Weapons/Guns/Battery/soleil.rsi/meta.json @@ -0,0 +1,61 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By lost paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "mode-disabler" + }, + { + "name": "mode-lethal" + }, + { + "name": "mode-stun" + }, + { + "name": "mag-unshaded-0" + }, + { + "name": "mag-unshaded-1" + }, + { + "name": "mag-unshaded-2" + }, + { + "name": "mag-unshaded-3" + }, + { + "name": "mag-unshaded-4" + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "disabler-inhand-left", + "directions": 4 + }, + { + "name": "disabler-inhand-right", + "directions": 4 + }, + { + "name": "lethal-inhand-left", + "directions": 4 + }, + { + "name": "lethal-inhand-right", + "directions": 4 + } + ] +} diff --git a/SpaceStation14.sln b/SpaceStation14.sln index e0cb455a6d..bcd013b598 100644 --- a/SpaceStation14.sln +++ b/SpaceStation14.sln @@ -62,7 +62,6 @@ EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{806ED41A-411B-4B3B-BEB6-DEC6DCA4C205}" ProjectSection(SolutionItems) = preProject Tools\generate_hashes.ps1 = Tools\generate_hashes.ps1 - Tools\gen_build_info.py = Tools\gen_build_info.py EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Robust.Shared.Scripting", "RobustToolbox\Robust.Shared.Scripting\Robust.Shared.Scripting.csproj", "{41B450C0-A361-4CD7-8121-7072B8995CFC}" diff --git a/Tools/actions_changelogs_since_last_run.py b/Tools/actions_changelogs_since_last_run.py index a1ddf9bff5..9bf289fd25 100755 --- a/Tools/actions_changelogs_since_last_run.py +++ b/Tools/actions_changelogs_since_last_run.py @@ -21,7 +21,7 @@ DISCORD_SPLIT_LIMIT = 2000 CHANGELOG_DISCORD_WEBHOOK = os.environ.get("CHANGELOG_DISCORD_WEBHOOK") -CHANGELOG_FILES = ["Resources/Changelog/Changelog.yml", "Resources/Changelog/ChangelogLPP.yml"] # Corvax-MultiChangelog +CHANGELOG_FILE = "Resources/Changelog/ChangelogLPP.yml" TYPES_TO_EMOJI = { "Fix": "🐛", @@ -44,16 +44,12 @@ def main(): most_recent = get_most_recent_workflow(session) last_sha = most_recent['head_commit']['id'] print(f"Last successful publish job was {most_recent['id']}: {last_sha}") + last_changelog = yaml.safe_load(get_last_changelog(session, last_sha)) + with open(CHANGELOG_FILE, "r") as f: + cur_changelog = yaml.safe_load(f) - # Corvax-MultiChangelog-Start - for changelog_file in CHANGELOG_FILES: - last_changelog = yaml.safe_load(get_last_changelog(session, last_sha, changelog_file)) - with open(changelog_file, "r") as f: - cur_changelog = yaml.safe_load(f) - - diff = diff_changelog(last_changelog, cur_changelog) - send_to_discord(diff) - # Corvax-MultiChangelog-End + diff = diff_changelog(last_changelog, cur_changelog) + send_to_discord(diff) def get_most_recent_workflow(sess: requests.Session) -> Any: @@ -86,7 +82,7 @@ def get_past_runs(sess: requests.Session, current_run: Any) -> Any: return resp.json() -def get_last_changelog(sess: requests.Session, sha: str, changelog_file: str) -> str: +def get_last_changelog(sess: requests.Session, sha: str) -> str: """ Use GitHub API to get the previous version of the changelog YAML (Actions builds are fetched with a shallow clone) """ @@ -97,7 +93,7 @@ def get_last_changelog(sess: requests.Session, sha: str, changelog_file: str) -> "Accept": "application/vnd.github.raw" } - resp = sess.get(f"{GITHUB_API_URL}/repos/{GITHUB_REPOSITORY}/contents/{changelog_file}", headers=headers, params=params) + resp = sess.get(f"{GITHUB_API_URL}/repos/{GITHUB_REPOSITORY}/contents/{CHANGELOG_FILE}", headers=headers, params=params) resp.raise_for_status() return resp.text @@ -142,28 +138,17 @@ def send_to_discord(entries: Iterable[ChangelogEntry]) -> None: for name, group in itertools.groupby(entries, lambda x: x["author"]): # Need to split text to avoid discord character limit group_content = io.StringIO() - group_content.write(f"**{name}** обновил(а):\n") + group_content.write(f"## {name}:\n") for entry in group: for change in entry["changes"]: emoji = TYPES_TO_EMOJI.get(change['type'], "❓") message = change['message'] url = entry.get("url") - # Corvax-Localization-Start - TRANSLATION_API_URL = os.environ.get("TRANSLATION_API_URL") - if TRANSLATION_API_URL: - resp = requests.post(TRANSLATION_API_URL, json={ - "text": message, - "source_lang": "EN", - "target_lang": "RU" - }) - message = resp.json()['data'] - # Corvax-Localization-End if url and url.strip(): - group_content.write(f"{emoji} [-]({url}) {message}\n") + group_content.write(f"{emoji} - [{message}]({url})\n") else: group_content.write(f"{emoji} - {message}\n") - group_content.write(f"\n") # Corvax: Better formatting group_text = group_content.getvalue() message_text = message_content.getvalue() @@ -172,7 +157,7 @@ def send_to_discord(entries: Iterable[ChangelogEntry]) -> None: # If adding the text would bring it over the group limit then send the message and start a new one if message_length + group_length >= DISCORD_SPLIT_LIMIT: - print("Split changelog and sending to discord") + print("Split changelog and sending to discord") send_discord(message_text) # Reset the message @@ -185,9 +170,7 @@ def send_to_discord(entries: Iterable[ChangelogEntry]) -> None: message_text = message_content.getvalue() if len(message_text) > 0: print("Sending final changelog to discord") - content.seek(0) # Corvax - for chunk in iter(lambda: content.read(2000), ''): # Corvax: Split big changelogs messages - send_discord(chunk) + send_discord(message_text) main() diff --git a/Tools/changelogs/changelog.js b/Tools/changelogs/changelog.js index 07a70f30fb..fae2211f44 100644 --- a/Tools/changelogs/changelog.js +++ b/Tools/changelogs/changelog.js @@ -57,6 +57,7 @@ async function main() { changes: entries, id: getHighestCLNumber() + 1, time: time, + url: `https://github.com/${process.env.GITHUB_REPOSITORY}/pull/${process.env.PR_NUMBER}` }; // Write changelogs @@ -145,7 +146,7 @@ function writeChangelog(entry) { fs.writeFileSync( `../../${process.env.CHANGELOG_DIR}`, "Entries:\n" + - yaml.dump(data.Entries, { indent: 2 }).replace(/^---/, "") + yaml.dump(data.Entries, { indent: 2 }).replace(/^---/, "") ); } diff --git a/Tools/gen_build_info.py b/Tools/gen_build_info.py deleted file mode 100755 index 10574468ee..0000000000 --- a/Tools/gen_build_info.py +++ /dev/null @@ -1,96 +0,0 @@ -#!/usr/bin/env python3 - -# Generates build info and injects it into the server zip files. - -import codecs -import hashlib -import io -import json -import os -import subprocess -from zipfile import ZipFile, ZIP_DEFLATED - -FILE = "SS14.Client.zip" - -SERVER_FILES = [ - "SS14.Server_linux-x64.zip", - "SS14.Server_linux-arm64.zip", - "SS14.Server_win-x64.zip", - "SS14.Server_osx-x64.zip" -] - -VERSION = os.environ['GITHUB_SHA'] -FORK_ID = "delta-v" -BUILD_URL = f"https://builds.delta-v.org/{{FORK_ID}}/builds/{{FORK_VERSION}}/{FILE}" -MANIFEST_URL = f"https://cdn.delta-v.org/version/{{FORK_VERSION}}/manifest" -MANIFEST_DOWNLOAD_URL = f"https://cdn.delta-v.org/version/{{FORK_VERSION}}/download" - -def main() -> None: - client_file = os.path.join("release", FILE) - manifest = generate_build_json(client_file) - - for server in SERVER_FILES: - inject_manifest(os.path.join("release", server), manifest) - - -def inject_manifest(zip_path: str, manifest: str) -> None: - with ZipFile(zip_path, "a", compression=ZIP_DEFLATED) as z: - z.writestr("build.json", manifest) - - -def generate_build_json(file: str) -> str: - # Env variables set by Jenkins. - - hash = sha256_file(file) - engine_version = get_engine_version() - manifest_hash = generate_manifest_hash(file) - - return json.dumps({ - "download": BUILD_URL, - "hash": hash, - "version": VERSION, - "fork_id": FORK_ID, - "engine_version": engine_version, - "manifest_url": MANIFEST_URL, - "manifest_download_url": MANIFEST_DOWNLOAD_URL, - "manifest_hash": manifest_hash - }) - -def generate_manifest_hash(file: str) -> str: - zip = ZipFile(file) - infos = zip.infolist() - infos.sort(key=lambda i: i.filename) - - bytesIO = io.BytesIO() - writer = codecs.getwriter("UTF-8")(bytesIO) - writer.write("Robust Content Manifest 1\n") - - for info in infos: - if info.filename[-1] == "/": - continue - - bytes = zip.read(info) - hash = hashlib.blake2b(bytes, digest_size=32).hexdigest().upper() - writer.write(f"{hash} {info.filename}\n") - - manifestHash = hashlib.blake2b(bytesIO.getbuffer(), digest_size=32) - - return manifestHash.hexdigest().upper() - -def get_engine_version() -> str: - proc = subprocess.run(["git", "describe","--tags", "--abbrev=0"], stdout=subprocess.PIPE, cwd="RobustToolbox", check=True, encoding="UTF-8") - tag = proc.stdout.strip() - assert tag.startswith("v") - return tag[1:] # Cut off v prefix. - - -def sha256_file(path: str) -> str: - with open(path, "rb") as f: - h = hashlib.sha256() - for b in iter(lambda: f.read(4096), b""): - h.update(b) - - return h.hexdigest() - -if __name__ == '__main__': - main() diff --git a/Tools/publish_github_artifact.py b/Tools/publish_github_artifact.py new file mode 100755 index 0000000000..7a05fa124a --- /dev/null +++ b/Tools/publish_github_artifact.py @@ -0,0 +1,56 @@ +#!/usr/bin/env python3 + +import requests +import os +import subprocess + +BOT_TOKEN = os.environ["BOT_TOKEN"] +PUBLISH_TOKEN = os.environ["PUBLISH_TOKEN"] +ARTIFACT_ID = os.environ["ARTIFACT_ID"] +GITHUB_REPOSITORY = os.environ["GITHUB_REPOSITORY"] +VERSION = os.environ['GITHUB_SHA'] + +# +# CONFIGURATION PARAMETERS +# Forks should change these to publish to their own infrastructure. +# +ROBUST_CDN_URL = "https://wiki.lost-paradise.space/cdn/" +FORK_ID = "LPP" + +def main(): + print("Fetching artifact URL from API...") + artifact_url = get_artifact_url() + print(f"Artifact URL is {artifact_url}, publishing to Robust.Cdn") + + data = { + "version": VERSION, + "engineVersion": get_engine_version(), + "archive": artifact_url + } + headers = { + "Authorization": f"Bearer {PUBLISH_TOKEN}", + "Content-Type": "application/json" + } + resp = requests.post(f"{ROBUST_CDN_URL}fork/{FORK_ID}/publish", json=data, headers=headers) + resp.raise_for_status() + print("Publish succeeded!") + +def get_artifact_url() -> str: + headers = { + "Authorization": f"Bearer {BOT_TOKEN}", + "X-GitHub-Api-Version": "2022-11-28" + } + resp = requests.get(f"https://api.github.com/repos/{GITHUB_REPOSITORY}/actions/artifacts/{ARTIFACT_ID}/zip", allow_redirects=False, headers=headers) + resp.raise_for_status() + + return resp.headers["Location"] + +def get_engine_version() -> str: + proc = subprocess.run(["git", "describe","--tags", "--abbrev=0"], stdout=subprocess.PIPE, cwd="RobustToolbox", check=True, encoding="UTF-8") + tag = proc.stdout.strip() + assert tag.startswith("v") + return tag[1:] # Cut off v prefix. + + +if __name__ == '__main__': + main()